/* Auxiliary Pages Styles */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 3rem 0;
}

.main-content h1 {
    text-align: center;
    color: #2563eb;
    margin-bottom: 3rem;
    border-bottom: 3px solid #f59e0b;
    display: inline-block;
    padding-bottom: 0.5rem;
    width: 100%;
}

.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2rem;
}

.about-section .image-placeholder {
    margin-top: 2rem;
    min-height: 250px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.content-placeholder {
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Policy sections */
.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #f59e0b;
    padding-bottom: 0.5rem;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #475569;
}

.policy-section strong {
    color: #2563eb;
    font-weight: 600;
}

.policy-section a {
    color: #2563eb;
    text-decoration: underline;
}

.policy-section a:hover {
    color: #1d4ed8;
}

/* Centered sections for about page */
.about-section.centered {
    text-align: center;
}

.about-section.centered .image-placeholder {
    margin: 2rem auto;
    max-width: 400px;
}

/* SVG illustrations */
.svg-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.svg-illustration svg {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .main-content {
        padding: 2rem 0;
    }

    .about-section, .policy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-section h2, .policy-section h2 {
        font-size: 1.5rem;
    }

    .content-placeholder {
        padding: 2rem 1rem;
    }

    .svg-illustration svg {
        width: 150px;
        height: auto;
    }
}