/* Reset and 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: #2D3748;
    background-color: #FAFAFA;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4F46E5;
    letter-spacing: -0.025em;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.navigation a {
    text-decoration: none;
    color: #4A5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
    color: #4F46E5;
    background: #F8FAFC;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #1A202C;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    color: #718096;
    font-size: 0.875rem;
    margin: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    text-align: center;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.section-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-grid.reverse .content-text {
    order: 2;
}

.section-grid.reverse .content-image {
    order: 1;
}

.content-text h2 {
    color: #1A202C;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-weight: 500;
    border: 2px dashed #A0AEC0;
}

/* Mission Values */
.mission-values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 4px solid #4F46E5;
}

.value-item h4 {
    color: #1A202C;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #4A5568;
    margin: 0;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-content {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
}

.placeholder-content p {
    color: #718096;
    font-style: italic;
    margin: 0;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

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

.policy-section h2 {
    color: #1A202C;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4F46E5;
}

.policy-section p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-details {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4F46E5;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

/* SVG Illustrations */
.illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    background: #FAFAFA;
    padding: 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: #A0AEC0;
    margin: 1rem 0 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #A0AEC0;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding-top: 2rem;
    text-align: center;
    color: #A0AEC0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

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

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .navigation a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .section-grid,
    .section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-grid.reverse .content-text,
    .section-grid.reverse .content-image {
        order: initial;
    }

    .placeholder-image {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .placeholder-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.25rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-section {
        margin-bottom: 3rem;
    }

    .main-content {
        padding: 1rem 0;
    }
}