/* Auxiliary Pages Styles */

/* Legal Content Styling */
.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

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

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

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

.legal-section p:last-child {
    margin-bottom: 0;
}

/* About Page Specific Styles */
.about-content {
    margin-bottom: 4rem;
}

.content-with-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.content-with-visual.reverse .content-text {
    order: 2;
}

.content-with-visual.reverse .content-visual {
    order: 1;
}

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

.content-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Header Navigation */
.aux-nav {
    display: flex;
    align-items: center;
}

.aux-nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
}

.aux-nav a:hover {
    background-color: var(--light-gray);
    color: var(--teal);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Content */
.aux-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.aux-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 12px;
}

.aux-hero h1 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-block h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* Legal Content */
.legal-content {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.placeholder-text {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border: 2px dashed var(--border-gray);
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .content-with-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .content-with-visual.reverse .content-text,
    .content-with-visual.reverse .content-visual {
        order: unset;
    }
    
    .about-image {
        height: 200px;
    }
    
    .svg-illustration svg {
        width: 250px;
        height: 150px;
    }
    
    .aux-hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .aux-hero h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .aux-nav {
        order: -1;
    }
}