/* Auxiliary Pages Styles */

/* About Page Specific Styles */
.about-section.centered {
    text-align: center;
}

.about-section.centered .about-content {
    text-align: center;
}

.about-section.centered .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

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

.about-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(46, 58, 89, 0.1);
}

.about-image-placeholder {
    background: rgba(74, 91, 58, 0.1);
    border: 2px dashed rgba(74, 91, 58, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A5B3A;
    font-style: italic;
    min-height: 250px;
    max-width: 400px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(46, 58, 89, 0.1);
    object-fit: cover;
    margin: 0 auto;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(74, 91, 58, 0.2);
}

.page-header h2 {
    color: #2E3A59;
    margin-bottom: 0.5rem;
}

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

/* About Page Sections */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.about-section:not(:last-child) {
    border-bottom: 1px solid rgba(74, 91, 58, 0.1);
}

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

.about-content h3 {
    color: #2E3A59;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.75rem;
}

.about-content p {
    color: #4A5B3A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

/* Policy Pages */
.policy-section {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(46, 58, 89, 0.08);
    border: 1px solid rgba(74, 91, 58, 0.1);
}

.policy-content h3 {
    color: #2E3A59;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #4A5B3A;
    padding-bottom: 0.5rem;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #4A5B3A;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    color: #4A5B3A;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-content strong {
    color: #2E3A59;
    font-weight: 600;
}

/* Responsive for Auxiliary Pages */
@media (max-width: 768px) {
    .page-main {
        padding: 1rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .page-header h2 {
        font-size: 2rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-section.centered .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-illustration {
        max-width: 280px;
    }
    
    .about-image-placeholder {
        min-height: 200px;
        max-width: 100%;
    }
    
    .about-image {
        max-width: 100%;
        height: 200px;
    }
    
    .policy-section {
        margin: 0 1rem;
    }
    
    .policy-content {
        padding: 2rem 1rem;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-header h2 {
        font-size: 1.75rem;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .about-illustration {
        max-width: 250px;
    }
    
    .about-image {
        height: 180px;
    }
    
    .policy-section {
        margin: 0 0.5rem;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}