.hero {
    /* position: relative; */
    background-image: url('../img/bg_orange.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.container .menu a.accompagnementCouleur {
  color: #c5c5c5;
}

.box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    border-radius: 8px;
    max-width: 520px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-size: 1.25rem;
    line-height: 1.7;
}

.box ul {
    list-style: none;
    padding: 0;
}

.box li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.box li::before {
    content: '\2022';
    color: #1a73e8;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* pricing */
section.pricing {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 50px;
}

.card {
    background-color: #b6d75f;
    color: #333;
    padding: 40px;
    width: 28%;
    text-align: center;
    border-radius: 6px;
    box-sizing: border-box;
    min-width: 300px;
}

.mid {
    background-color: #c9c8ca;
}

.card h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-top: 0;
}

.price {
    font-size: 34px;
    font-weight: bold;
    margin: 20px 0;
}

section.pricing p.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
    font-size: 18px;
}

ul li::before {
    content: "✓ ";
    color: #2f4f2f;
    font-weight: bold;
}

/* bouton RDV */
.cta-container {
  text-align: center;
  margin-top: 60px;
}

.cta-button {
  background: #2e6842;
  color: white;
  padding: 28px 70px;
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Georgia", serif;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 0.2rem;
  transition: 0.3s;
}

.cta-button:hover {
  background: #245735;
}

/* citation */
.quote-block {
  background: #aecd37;
  padding: 40px 30px;
  text-align: center;
  max-width: 650px;
  margin: 50px auto 0;
  border-radius: 3px;
}

.quote-block .quote {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: white;
  font-family: "Georgia", serif;
}

.quote-block .author {
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
  font-family: "Georgia", serif;
}

section.bottom{
    background: linear-gradient(135deg, #cfdcd7, #d4f7e8, #bfd566);
    padding: 20px 0;
}


/* responsive */
@media (max-width: 1000px) {

    .box {
        padding: 20px 25px;
        font-size: 1rem;
    }
    .hero {
        padding: 40px 15px;
        min-height: 300px;
    }

    section.pricing{
        flex-direction: column;
        align-items: center;
    }

    .quote-block .quote {
        font-size: 25px;
    }

    .quote-block .author{
        font-size: 20px;
    }

    .card h2{
        font-size: 23px;
    }
}