/* Auxiliary Pages Styles */
.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--primary-orange);
    background: rgba(255, 140, 66, 0.1);
}

.nav a.active {
    color: var(--primary-orange);
    background: rgba(255, 140, 66, 0.1);
    font-weight: 600;
}

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

.main-content {
    min-height: calc(100vh - 200px);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a3441 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    color: #9ca3af;
    font-size: 1rem;
    font-style: italic;
}

.content-section {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    color: var(--primary-navy);
    margin-bottom: 24px;
    font-size: 2rem;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.placeholder-text {
    color: var(--text-lighter);
    font-style: italic;
    text-align: center;
    padding: 60px 0;
    font-size: 1.1rem;
    background: var(--background-light);
    border-radius: var(--border-radius-sm);
    border: 2px dashed var(--border-light);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

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

.policy-section h2 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

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

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.content-svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .content-image img {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 24px;
        margin: 0 16px;
    }
    
    .content-image img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav {
        gap: 16px;
    }
    
    .nav a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .content-with-svg {
        grid-template-columns: 1fr;
    }
}