/* Additional styles for auxiliary pages */

.page-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.page-nav a {
    color: #0C1B2E;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-nav a:hover {
    color: #00E5CC;
}

.page-hero {
    background: linear-gradient(135deg, #0C1B2E 0%, #1A2B3D 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.content-section.alt-bg {
    background: #F5F1E8;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0C1B2E;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 20px;
}

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

.content-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(12, 27, 46, 0.1);
}
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #4A5568;
}

.legal-text h2 {
    color: #0C1B2E;
    font-weight: 600;
    margin: 40px 0 20px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: #0C1B2E;
    font-weight: 600;
    margin: 30px 0 15px;
}

.legal-text p {
    margin-bottom: 20px;
}

.legal-text ul, .legal-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
}

.placeholder-text {
    background: #F5F1E8;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: #4A5568;
    font-style: italic;
    border: 2px dashed #00E5CC;
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .page-nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 60px 0;
    }
}