/* À Propos CSS */

.accueil {
    background: #000;
    background-size: cover;
    background-position: center;
    height: 40vh;
    width: 100%;
    margin-top: 90px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

h1{
    font-size: 2.8rem;
}

.accueil img{
    height: 40vh;
    border-radius: 20px;
}
.accueil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.accueil .global-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.global-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 20px;
    width: 100%;
}

.content-section {
    padding: 80px 0;
    background: #ffffff;
}

.content-section .global-container {
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section,
.expertise-section,
.founder-section,
.team-section,
.commitment-section {
    margin-bottom: 4rem;
}

.intro-section h2,
.expertise-section h2,
.founder-section h2,
.team-section h2,
.commitment-section h2 {
    font-size: 2.2rem;
    color: var(--green) !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.intro-section h2::after,
.expertise-section h2::after,
.founder-section h2::after,
.team-section h2::after,
.commitment-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin: 0.5rem 0;
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 500;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--green);
    margin-bottom: 2rem;
}

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

.founder-content {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.founder-text p strong {
    color: var(--green);
    font-weight: 600;
}

.highlight {
    background: linear-gradient(120deg, var(--green) 0%, rgba(var(--green-rgb), 0.3) 100%);
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding: 2px 4px;
    font-weight: 600;
    color: #2d3748;
}

.commitment-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2d3748;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--green);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #4a5568;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accueil h1 {
        font-size: 2.5rem;
    }
    .accueil img{
        display: none;
    }
    .accueil {
        height: 35vh;
        margin-top: 70px;
    }
    
    .global-container {
        margin: 3rem auto;
        padding: 0 15px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .intro-section h2,
    .expertise-section h2,
    .founder-section h2,
    .team-section h2,
    .commitment-section h2 {
        font-size: 1.8rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .founder-content {
        padding: 2rem;
    }
    
    .commitment-text {
        font-size: 1.1rem;
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .accueil h1 {
        font-size: 2rem;
    }
    
    .accueil {
        height: 30vh;
    }
    
    .global-container {
        margin: 2rem auto;
        padding: 0 10px;
    }
    
    .highlight-text {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .founder-content {
        padding: 1.5rem;
    }
    
    .commitment-text {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
}