body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-header {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.privacy-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.privacy-logo img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: white;
    padding: 10px;
}

.privacy-logo h1 {
    color: #2c5aa0;
    font-size: 2rem;
    margin: 0;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.intro {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid #2196F3;
}

.section {
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.section:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section h2 {
    color: #2c5aa0;
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2196F3;
    display: flex;
    align-items: center;
}

.section-number {
    background: #2196F3;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
}

.section p, .section ul {
    color: #555;
    text-align: justify;
    line-height: 1.7;
}

.section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.section li {
    margin-bottom: 5px;
}

.contact-info {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.privacy-footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    color: #666;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #1976D2;
    text-decoration: none;
    color: white;
}
