/* Additional styles for auxiliary pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #7C9885 0%, #6A8373 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Page Sections */
.page-section {
    padding: 3rem 0;
}

.page-section.alt {
    background-color: #F9F7F4;
}

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

.content-block h2 {
    color: #2C4A3B;
    margin-bottom: 2rem;
}

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

.content-block .image-placeholder {
    height: 250px;
    margin: 2rem 0;
}

/* Empty content styling for policy pages */
.empty-content {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #F9F7F4;
    border-radius: 12px;
    border: 2px dashed #D9E2DC;
}

.empty-content p {
    color: #7C9885;
    font-style: italic;
    margin-bottom: 1rem;
}

/* About page specific styles */
.about-illustration {
    margin: 2rem 0;
    text-align: center;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(124, 152, 133, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    color: #2C4A3B;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 0 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}