/* Additional styles for auxiliary pages */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A4A73 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.page-header p {
    color: #E2E8F0;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-block {
    padding: 4rem 0;
    background: white;
}

.content-block.alt {
    background: var(--light-indigo);
}

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

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

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

.content-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-image {
    height: 300px;
    background: var(--light-indigo);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.content-block.alt .content-image {
    background: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-indigo);
}

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

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Responsive for auxiliary pages */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-image {
        height: 200px;
    }
    
    .legal-placeholder {
        padding: 2rem;
    }
}