/* Styles pour la page de présentation */
.presentation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #666;
}

.presentation-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
}

.presentation-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    margin: 30px 0 15px;
}

.presentation-text h3:first-child {
    margin-top: 0;
}

.presentation-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.presentation-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.presentation-text li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.value-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

.presentation-image {
    flex: 1;
    min-width: 300px;
}

.presentation-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.stats-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.stats-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #FF9800;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #666;
}

.cta-section {
    text-align: center;
    background-color: #FF9800;
    color: white;
    padding: 50px 30px;
    border-radius: 8px;
}

.cta-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* il est aussi dans la page contact */
.btn-primary {
    display: inline-block;
    background-color: var(--blanc);
    color: var(--orange);
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

