/* Styles sp�cifiques pour la page Sophrologie */

/* Section Qui suis-je */
.section-qui-suis-je {
    padding: 80px 20px;
    background-color: var(--color-bg-white);
}

.section-qui-suis-je .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-qui-suis-je h2 {
    font-family: 'Satoshi-Regular', sans-serif;
    font-size: 56px;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 40px;
}

.section-qui-suis-je .section-description {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #383838;
    text-align: center;
}

.qui-suis-je-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.qui-suis-je-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Vous �tes � la bonne adresse */
.section-bonne-adresse {
    padding: 80px 20px;
    background-color: var(--color-bg-light);
}

.section-bonne-adresse h2 {
    font-family: 'Satoshi-Regular', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-text-dark);
    margin-bottom: 60px;
}

.adressImage {
    width: 100%;
    max-width: 720px;
    height: auto;
    max-height: 300px;
    flex-shrink: 0;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto 40px;
    display: block;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--color-bg-white);
    padding: 49px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(41, 100, 118, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
color: #296476;

text-align: center;
font-family: Satoshi-medium, sans-serif;
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 48px;
    margin-bottom: 40px;
}

.value-card p {
    font-family: 'Satoshi-Regular', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
}

/* Active state for navigation */
.nav-links a.active {
    color: #fff;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-qui-suis-je h2 {
        font-size: 42px;
    }

    .section-bonne-adresse h2 {
        font-size: 38px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .adressImage {
        max-height: 400px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-qui-suis-je {
        padding: 60px 20px;
    }

    .section-qui-suis-je h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .section-qui-suis-je .section-description {
        font-size: 16px;
    }

    .section-bonne-adresse {
        padding: 60px 20px;
    }

    .section-bonne-adresse h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-card h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .value-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .adressImage {
        max-height: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 25px 15px;
    }

    .value-card h3 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .value-card p {
        font-size: 14px;
    }

    .adressImage {
        max-height: 250px;
        border-radius: 15px;
    }

    .section-bonne-adresse h2 {
        font-size: 24px;
    }
}
