/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* Navigation */
nav {
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #3498db;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #34495e;
    min-width: 200px;
    top: 100%;
    right: 0;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    border-bottom: 1px solid #2c3e50;
}

.dropdown-content a:hover {
    background: #3498db;
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.container {
    width: 100%;
}

/* Privacy Policy Section */
.privacy-section {
    margin-bottom: 4rem;
}

.privacy-section h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.privacy-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.privacy-content h4 {
    font-size: 1.1rem;
    color: #34495e;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.privacy-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.privacy-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.highlight-box p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Service List */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-item h4 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #27ae60;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Privacy Summary */
.privacy-summary {
    background: #e8f6f3;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border: 2px solid #27ae60;
}

.privacy-summary h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.privacy-summary p {
    color: #2c3e50;
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .privacy-section h1 {
        font-size: 2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content h3 {
        font-size: 1.2rem;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 1rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .privacy-section h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    
    .highlight-box {
        padding: 1rem;
    }
    
    .privacy-summary {
        padding: 1.5rem;
    }
}