/* Additional styles for auxiliary pages */

/* Ensure proper spacing for fixed header */
body {
    padding-top: 80px;
}

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

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

.page-header p {
    font-size: 1.125rem;
    color: #4a5568;
    margin: 0;
}

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

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

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

.section-text h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

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

.section-visual {
    display: flex;
    justify-content: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-placeholder {
    background: #f8fafc;
    border: 2px dashed #a0aec0;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #4a5568;
    font-style: italic;
}

.section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-svg {
    width: 100%;
    height: 300px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: #4C1D95;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.legal-content h3 {
    color: #14B8A6;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content p:first-child {
    margin-top: 0;
}

/* Responsive adjustments for pages */
@media (max-width: 1024px) {
    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .legal-content {
        margin: 20px;
        padding: 30px;
    }
    
    .content-placeholder {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        margin: 10px;
        padding: 20px;
    }
    
    .content-placeholder {
        padding: 30px 15px;
    }
    
    .section-image,
    .section-svg {
        height: 250px;
    }
}