/* Modern CSS for Privacy Policy and Terms & Conditions Pages */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F5C542;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #f0f0f0;
    --max-width: 900px;
    --spacing: 20px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: var(--spacing);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: white;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

h1 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95em;
    margin-top: 10px;
}

h2 {
    color: #555;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

li {
    margin-bottom: 10px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4a836;
    text-decoration: underline;
}

.navigation {
    background: #f8f8f8;
    padding: 15px 0;
    margin-bottom: 30px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 8px 16px;
    background: white;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box {
    background: #fff9e6;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-links a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75em;
    }
    
    .container {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    .navigation {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
    }
}

