:root {
    --couleur_bleue: #4571A3;
    --couleur_turquoise: #1CA19A;
    --couleur_grise: #8181811f;
    --taille_logo_hero: 470px;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.opensans-bold {
    font-family: 'OpenSans-Bold';
}

.turquoise {
    color: var(--couleur_turquoise);
}

.bleu {
    color: var(--couleur_bleue);
}

body {
    font-family: 'OpenSans-Regular';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-horizontal {
    display: flex;
}

/* Header */
.header {
    background-color: var(--couleur_bleue);
    padding-top: 15px;
    padding-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: var(--taille_logo_hero);
    height: auto;
    transition: all 0.3s ease;
}

.hero-content {
    font-family: 'OpenSans-Regular';
    color: white;
    text-align: center;
    font-size: 27px;
    width: var(--taille_logo_hero);
}


/* Propositions Section - Fond blanc */
.propositions {
    display: grid;
    grid-template-columns: 1fr 50% 1fr;
    gap: 20px;
    align-items: stretch;
    background-color: white;
    text-align: center;
}

.propositions-gauche,
.propositions-droite {
    display: flex;
    align-items: center;
}

.propositions-gauche img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.propositions-droite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.propositions-milieu {
    font-family: 'OpenSans-Regular';
    font-size: 21px;
    padding: 20px;
    margin-bottom: 20px;
}

.propositions-milieu h2 {
    font-family: 'ZillaSlab-Bold';
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.propositions-milieu ul {
    list-style-position: inside;
    padding-bottom: 10px;
}

.propositions-milieu li {
    margin: 15px 0;
}

.cta-button-bleu {
    text-decoration: none;
    background: var(--couleur_bleue);
    font-family: 'Outfit-Regular';
    color: white;
    font-size: 24px;
    border: none;
    padding: 10px;
}

.fleche-bleue-fond-blanc {
    background-color: white;
    border-radius: 50%;
    color: var(--couleur_bleue);
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Services Section - Fond légèrement grisé */
.services {
    background-color: var(--couleur_grise);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.service-card {
    padding: 30px;
}

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

.service-icon img {
    width: 200px;
}

.service-card h3 {
    font-family: 'ZillaSlab-Bold';
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.service-card p {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    text-align: center;
}

/* Section Exemple des thématiques */
.example-section {
    background-color: var(--couleur_bleue);
    color: white;
    padding: 50px 0;
}

.example-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    align-items: center;
}

.example-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.example-text h2 {
    font-family: 'ZillaSlab-Bold';
    font-size: 32px;
    margin-bottom: 40px;
}

.example-text {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
}

.example-text ul {
    list-style: none;
}

.example-text li {
    margin-bottom: 25px;
    position: relative;
    line-height: 1.6;
}

/* Discover Section - Fond blanc */
.discover {
    background-color: var(--couleur_grise);
    padding-top: 30px;
}


/* Why Section */
.why-section {
    background-color: white;
    padding: 50px 0;
    margin-bottom: 120px;
    text-align: center;
}

.why-section h2 {
    font-family: 'ZillaSlab-Bold';
    font-size: 32px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.why-item {
    background: white;
}

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

.why-icon img {
    width: 100px;
}

.why-item h3 {
    margin: 20px 0;
    font-family: 'ZillaSlab-Bold';
    font-size: 24px;
}

.why-item p {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
}

/* Section Chiffres clés */
.stats-section {
    background-color: var(--couleur_grise);
    text-align: center;
    padding-bottom: 50px;
}

.logo-centered {
    margin: 20px 0;
}

.logo-centered img {
    margin-top: -120px;
    height: 200px;
}

.stats-section h2 {
    font-family: 'ZillaSlab-Bold';
    font-size: 32px;
}

.stats-subtitle {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    padding: 30px 0;
    font-family: 'OpenSans-Regular';
    font-size: 21px;
}

/* A decouvrir */
.report-section {
    padding-bottom: 50px;
    background-color: var(--couleur_grise);
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
    background-color: white;
    padding: 30px;
}

.report-image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-image a {
    width: 100%;
    height: 100%;
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.report-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.report-text h2 {
    color: var(--couleur_turquoise);
    font-family: 'ZillaSlab-Bold';
    font-size: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.report-text h3 {
    font-family: 'ZillaSlab-Bold';
    font-size: 24px;
}

.report-text p {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    margin-top: 15px;
}

/* Rapport FNSF */
.rapport-fnsf {
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rapport-fnsf h2 {
    font-family: 'ZillaSlab-Bold';
    font-size: 32px;
    margin-bottom: 15px;
}

.rapport-fnsf p {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    margin: 20px auto;
    width: 80%;
}

.rapport-fnsf a {
    font-family: 'OpenSans-Bold';
    font-size: 16px;
    margin: 20px 0;
}

.rapport-fnsf img {
    width: 150px;
}

/* CTA Section - Bleu uni */
.cta-section {
    background-color: var(--couleur_bleue);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'ZillaSlab-Bold';
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-button-blanc {
    text-decoration: none;
    background: white;
    font-family: 'Outfit-Regular';
    color: black;
    font-size: 24px;
    border: none;
    padding: 10px;
}

.fleche-blanche-fond-bleu {
    background-color: black;
    border-radius: 50%;
    color: white;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-family: 'OpenSans-Regular';
    font-size: 0.9em;
    opacity: 0.8;
}


