h1 {
    color: #000000;
}

a {
    text-decoration: none;
}

.full-photo-section {
    position: relative;
    width: 100%;
    height: auto;               /* ← Important : auto pour que la hauteur s’adapte */
    padding-bottom: 260px;      /* ← Ajoute la place pour la carte jaune */
}

.full-photo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

/* Carte jaune repositionnée proprement */
.card-coaching-domicile {
    position: absolute;        /* ← On l’ancre sur l'image */
    left: 30%;
    bottom: 30px;            /* ← Elle descend sous l’image */
    transform: translateX(-50%);
    width: 90%;
    max-width: 550px;
    z-index: 10;
}


.card-coaching {
    border-radius: 16px;
    width: 66%;
    color: #7A4B00;
}

.card-coaching:hover {
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
}

.card-coaching::marker, .card-coaching ul li::marker {
    content: "✓ ";
    color: #3a2d00;
}