/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles removed for standalone pages */

/* Main content */
.main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 0 2rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

.update-date {
    color: #1e40af;
    font-weight: 600;
}

/* Content */
.content {
    padding-bottom: 4rem;
}

.section {
    background: white;
    margin: 2rem 0;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #1e40af;
    display: inline-block;
}

.subsection {
    margin-bottom: 2.5rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.subsection h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 2px;
}

.subsection h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #4b5563;
    margin: 1.5rem 0 0.75rem 0;
}

.subsection p {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

.subsection ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.subsection li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.subsection li::marker {
    color: #1e40af;
}

/* Contact section */
.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-details {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.contact-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.contact-item strong {
    color: #374151;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {

    .hero-title {
        font-size: 2rem;
    }

    .main {
        padding: 0 1rem;
    }

    .section {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .subsection h3 {
        font-size: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section {
        padding: 1rem;
    }

}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
}

/* Focus styles for better accessibility */
.footer-link:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    .footer {
        display: none;
    }
    
    .main {
        max-width: none;
        padding: 0;
    }
    
    .section {
        box-shadow: none;
        border: 1px solid #000;
        break-inside: avoid;
    }
    
    .hero {
        break-after: page;
    }
}
