/* Additional styles for auxiliary pages */

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

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

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

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

.page-section.alt {
    background: #f8fafc;
}

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

.content-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.effective-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
}

.brand-name {
    text-decoration: none;
    color: #1e3a5f;
}

.brand-name:hover {
    color: #f59e0b;
}

.legal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.effective-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
}

/* About page specific styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.about-content.single-column {
    grid-template-columns: 1fr;
    text-align: center;
}

.content-text h2 {
    text-align: left;
}

.content-text-center h2 {
    text-align: center;
}

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

.content-visual-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 50px 0;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .content-text h2 {
        text-align: center;
    }
    
    .about-image {
        max-width: 100%;
        height: 250px;
    }
}