/* Additional styles for auxiliary pages */

/* About page specific styles */
.about-hero-image {
    margin-top: 2rem;
    text-align: center;
}

.hero-photo {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.content-with-illustration,
.content-with-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

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

.section-photo {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-values {
    text-align: center;
    margin-top: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background-color: #F5F3F0;
    border-radius: 12px;
}

.value-item svg {
    margin-bottom: 1rem;
}

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

.value-item p {
    color: #666;
    font-size: 1rem;
}

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

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E5E5;
}

.page-header h1 {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.page-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    border-left: 4px solid #6B8E5A;
    padding-left: 1rem;
}

.page-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-placeholder {
    background-color: #F5F3F0;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #D4E3D0;
}

.content-placeholder p {
    color: #6B8E5A;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .content-with-illustration,
    .content-with-photo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-photo {
        height: 200px;
    }
    
    .section-photo {
        height: 200px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .page-section {
        margin-bottom: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.75rem;
    }
    
    .content-placeholder {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 2rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.875rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .content-placeholder {
        padding: 2rem 1rem;
    }
    
    .content-placeholder p {
        font-size: 1.1rem;
    }
}