/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    min-height: 100vh;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    color: #333;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.logo p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.last-updated {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
}

.last-updated span {
    color: #333;
}

/* Main Content Styles */
.main-content {
    padding: 2rem 0;
}

.policy-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 900px;
}

.intro {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5cc 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #ffd700;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro p:last-child {
    margin-bottom: 0;
}

/* Section Styles */
.section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    letter-spacing: -0.3px;
}

.section h3 {
    color: #444;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #ffed4e;
    letter-spacing: -0.2px;
}

.section h4 {
    color: #555;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    letter-spacing: -0.1px;
}

.section p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.section ul {
    margin: 1rem 0 1rem 2rem;
    color: #666;
}

.section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    text-align: justify;
}

.section strong {
    color: #333;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5cc 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.9rem;
    }
    
    .last-updated {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .policy-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 15px;
    }
    
    .intro {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .intro p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.75rem 0;
        padding-left: 0.75rem;
    }
    
    .section h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.75rem 0;
    }
    
    .section p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .section ul {
        margin: 1rem 0 1rem 1.5rem;
    }
    
    .section li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .contact-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .policy-content {
        padding: 1rem;
        margin: 0;
        border-radius: 10px;
    }
    
    .intro {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .section h2 {
        font-size: 1.3rem;
    }
    
    .section h3 {
        font-size: 1.1rem;
        padding-left: 0.5rem;
    }
    
    .section h4 {
        font-size: 1rem;
    }
    
    .section p {
        font-size: 0.9rem;
    }
    
    .section ul {
        margin-left: 1rem;
    }
    
    .section li {
        font-size: 0.9rem;
    }
    
    .contact-section {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .contact-info {
        padding: 0.75rem;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .last-updated {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .header {
        background: white !important;
        box-shadow: none !important;
        position: static !important;
    }
    
    .policy-content {
        box-shadow: none !important;
        background: white !important;
        border-radius: 0 !important;
        padding: 1rem !important;
    }
    
    .intro, .contact-section {
        background: #f9f9f9 !important;
        border-radius: 0 !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .footer {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .section h2 {
        border-bottom-color: #000;
    }
    
    .section h3 {
        border-left-color: #000;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Better Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

p, li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Link Styles */
a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

/* List Styles */
ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Emphasis */
strong, b {
    font-weight: 600;
    color: #333;
}

em, i {
    font-style: italic;
    color: #555;
} 