/* Additional styles for auxiliary pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 0;
}

/* Header brand link */
.header .brand-name a {
    color: inherit;
    text-decoration: none;
}

.header .brand-name a:hover {
    color: #2563eb;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

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

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

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

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

.content-text h2 {
    margin-bottom: 24px;
    font-size: 2rem;
}

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

.content-image .placeholder-image {
    width: 100%;
    height: 300px;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    min-height: 400px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.legal-document p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.legal-document h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

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

/* About page illustrations */
.about-illustration {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 48px 0;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .content-section {
        padding: 48px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-text h2 {
        font-size: 1.75rem;
    }
    
    .content-image .placeholder-image {
        height: 250px;
    }
    
    .legal-document {
        padding: 32px 24px;
        margin: 0 16px;
    }
}