/* Style du bouton */
.phone-button {
    display: inline-block;
    background-color: #007B33;  /* Couleur plus sérieuse */
    color: white;
    padding: 12px 24px;
    font-size: 18px;  /* Taille de police légèrement plus grande */
    border-radius: 6px;  /* Coins plus arrondis pour un look plus propre */
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);  /* Ombre subtile */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Icône du téléphone avant le numéro */
.phone-button::before {
    content: "\260E";  /* Unicode pour l'icône téléphone */
    margin-right: 8px;
    font-size: 20px;  /* Taille légèrement plus grande pour l'icône */
}

/* Effet de survol */
.phone-button:hover {
    background-color: #005f26;  /* Couleur plus sombre au survol */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);  /* Ombre plus marquée au survol */
}

/* Animation de clignotement réduite */
@keyframes blink {
    0% {
        opacity: 1;
    }
    30% {
        opacity: 0.9;
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.phone-button {
    animation: blink 5s ease-in-out infinite; /* Clignotement plus lent */
align-content
	.aid2027-page {
      --green: #082c22;
      --green-soft: #123f31;
      --gold: #d6b46d;
      --cream: #f7f0e5;
      --paper: #fffaf1;
      --ink: #181713;
      --muted: #70695d;
      --line: #e3d6bf;
      --alert: #9e291e;
    }

    .aid2027-page, .aid2027-page * { box-sizing: border-box; }

    .aid2027-page { scroll-behavior: smooth; }

    .aid2027-page {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      overflow-x: hidden;
      margin-top: 0;
      margin-bottom: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .aid2027-page a { color: inherit; }

    .aid2027-page .topbar {
      background: var(--green);
      color: #fff4dd;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 28px;
      font-size: 14px;
      font-weight: 600;
    }

    .aid2027-page .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(247, 240, 229, 0.96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

    .aid2027-page .nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .aid2027-page .brand {
      color: var(--green);
      line-height: 1;
      font-weight: 800;
      text-transform: uppercase;
    }

    .aid2027-page .brand small {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 12px;
      text-transform: none;
      font-weight: 700;
    }

    .aid2027-page .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      font-weight: 700;
    }

    .aid2027-page .nav-links a {
      text-decoration: none;
      color: var(--green);
    }

    .aid2027-page .btn {
      min-height: 48px;
      padding: 13px 18px;
      border-radius: 8px;
      border: 1px solid transparent;
      background: var(--green);
      color: white;
      font-weight: 800;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .aid2027-page .btn.light {
      background: white;
      color: var(--green);
      border-color: var(--line);
    }

    .aid2027-page .hero {
      background:
        linear-gradient(90deg, rgba(8,44,34,0.96) 0%, rgba(8,44,34,0.86) 45%, rgba(247,240,229,0.08) 78%),
        url("https://i0.wp.com/aid-el-kebir.fr/wp-content/uploads/2026/03/ChatGPT-Image-13-mars-2026-10_41_28.png?w=1536&ssl=1");
      background-color: #f3eadb;
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
      color: white;
    }

    .aid2027-page .hero-inner {
      max-width: 1180px;
      min-height: 610px;
      margin: 0 auto;
      padding: 78px 24px 130px;
      display: flex;
      align-items: center;
    }

    .aid2027-page .hero-copy {
      max-width: 680px;
    }

    .aid2027-page .eyebrow {
      color: var(--gold);
      font-weight: 750;
      text-transform: uppercase;
      font-size: 13px;
      margin-bottom: 18px;
    }

    .aid2027-page h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 62px;
      font-weight: 500;
      line-height: 0.95;
      letter-spacing: 0;
      max-width: 720px;
    }

    .aid2027-page .lead {
      margin: 24px 0 0;
      max-width: 620px;
      color: #f4ead7;
      font-size: 20px;
      line-height: 1.55;
    }

    .aid2027-page .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .aid2027-page .trust-strip {
      max-width: 1040px;
      margin: -76px auto 0;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .aid2027-page .trust-grid {
      background: rgba(255,250,241,0.97);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 24px 60px rgba(39,28,10,0.16);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      overflow: hidden;
    }

    .aid2027-page .trust-item {
      padding: 22px;
      border-right: 1px solid var(--line);
    }

    .aid2027-page .trust-item:last-child { border-right: 0; }

    .aid2027-page .trust-item strong {
      display: block;
      color: var(--green);
      margin-bottom: 6px;
    }

    .aid2027-page .trust-item span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 600;
    }

    main {
      max-width: 1180px;
      margin: 58px auto 90px;
      padding: 0 24px;
    }

    .aid2027-page .section-title {
      text-align: center;
      margin: 0 auto 30px;
      max-width: 720px;
    }

    .aid2027-page .section-title p {
      margin: 0 0 10px;
      color: var(--gold);
      font-size: 13px;
      text-transform: uppercase;
      font-weight: 750;
    }

    .aid2027-page h2 {
      color: var(--green);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 40px;
      font-weight: 500;
      line-height: 1.08;
    }

    .aid2027-page .booking-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .aid2027-page .steps {
      display: grid;
      gap: 16px;
    }

    .aid2027-page .step-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
      box-shadow: 0 12px 32px rgba(44,32,12,0.06);
    }

    .aid2027-page .step-head {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .aid2027-page .step-number {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--green);
      color: white;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      font-weight: 750;
    }

    .aid2027-page .step-head h3 {
      margin: 0;
      color: var(--green);
      font-size: 22px;
      line-height: 1.2;
    }

    .aid2027-page .step-head p {
      margin: 5px 0 0;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.42;
    }

    .aid2027-page .choice-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .aid2027-page .choice-grid.three {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .aid2027-page .choice-grid.slots {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .aid2027-page .choice {
      background: white;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 16px;
      min-height: 96px;
    }

    .aid2027-page .choice.selected {
      border-color: var(--green);
      box-shadow: inset 0 0 0 2px var(--green);
    }

    .aid2027-page .choice strong {
      display: block;
      color: var(--green);
      font-size: 18px;
      margin-bottom: 6px;
    }

    .aid2027-page .choice span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 600;
    }

    .aid2027-page .slot {
      min-height: 54px;
      padding: 13px 8px;
      text-align: center;
      font-weight: 750;
      color: var(--green);
    }

    .aid2027-page .slot.selected {
      background: var(--green);
      color: white;
      border-color: var(--green);
      box-shadow: none;
    }

    .aid2027-page .price {
      font-size: 28px;
      color: var(--ink);
      font-weight: 800;
      margin-top: 10px;
    }

    .aid2027-page .notice {
      border-left: 4px solid var(--gold);
      background: #fff6df;
      padding: 14px 16px;
      border-radius: 8px;
      color: #5f4711;
      font-weight: 650;
      line-height: 1.45;
    }

    .aid2027-page .check-row {
      display: grid;
      gap: 10px;
    }

    .aid2027-page .check-card {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 16px;
      background: white;
      border: 1px solid var(--line);
      border-radius: 8px;
      font-weight: 650;
      line-height: 1.45;
    }

    .aid2027-page .box {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      border: 2px solid var(--green);
      flex: 0 0 auto;
      margin-top: 1px;
    }

    .aid2027-page .summary {
      position: sticky;
      top: 94px;
      background: var(--green);
      color: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(12,39,29,0.22);
    }

    .aid2027-page .summary h3 {
      margin: 0;
      padding: 24px 22px 10px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 30px;
    }

    .aid2027-page .summary p {
      margin: 0;
      padding: 0 22px 20px;
      color: #eadfc8;
      font-weight: 600;
      line-height: 1.4;
    }

    .aid2027-page .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 15px 22px;
      border-top: 1px solid rgba(255,255,255,0.14);
      font-weight: 700;
    }

    .aid2027-page .summary-row span:first-child {
      color: #d8ccb4;
    }

    .aid2027-page .total {
      background: #061f18;
      font-size: 22px;
    }

    .aid2027-page .summary .btn {
      width: calc(100% - 44px);
      margin: 20px 22px 22px;
      background: var(--gold);
      color: #1d170b;
    }

    .aid2027-page .how {
      margin-top: 54px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .aid2027-page .how-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
    }

    .aid2027-page .how-card b {
      color: var(--gold);
      display: block;
      margin-bottom: 18px;
      font-size: 22px;
    }

    .aid2027-page .how-card strong {
      color: var(--green);
      display: block;
      margin-bottom: 8px;
    }

    .aid2027-page .how-card span {
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
      line-height: 1.42;
    }

    .aid2027-page .content-section {
      margin-top: 64px;
    }

    .aid2027-page .info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .aid2027-page .info-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
    }

    .aid2027-page .info-card strong {
      display: block;
      color: var(--green);
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 650;
    }

    .aid2027-page .info-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
      font-weight: 550;
    }

    .aid2027-page .split-section {
      margin-top: 64px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .aid2027-page .dark-panel {
      background: var(--green);
      color: white;
      border-radius: 8px;
      padding: 34px;
      min-height: 100%;
    }

    .aid2027-page .dark-panel h2 {
      color: white;
    }

    .aid2027-page .dark-panel p {
      color: #eadfc8;
      line-height: 1.55;
      font-weight: 550;
    }

    .aid2027-page .list-panel {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 28px;
    }

    .aid2027-page .clean-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .aid2027-page .clean-list li {
      display: flex;
      gap: 12px;
      color: var(--muted);
      line-height: 1.45;
      font-weight: 600;
    }

    .aid2027-page .clean-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      flex: 0 0 auto;
      margin-top: 7px;
    }

    .aid2027-page .faq {
      margin-top: 64px;
      display: grid;
      gap: 10px;
    }

    .aid2027-page .faq-item {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 20px 22px;
    }

    .aid2027-page .faq-item strong {
      display: block;
      color: var(--green);
      margin-bottom: 8px;
      font-size: 18px;
      font-weight: 650;
    }

    .aid2027-page .faq-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
      font-weight: 550;
    }

    @media (max-width: 980px) {
      .aid2027-page .topbar { flex-direction: column; }
      .aid2027-page .nav-links { display: none; }
      .aid2027-page h1 { font-size: 46px; }
      .aid2027-page .hero-inner { min-height: 560px; padding-top: 54px; }
      .aid2027-page .trust-grid { grid-template-columns: 1fr 1fr; }
      .aid2027-page .trust-item:nth-child(2) { border-right: 0; }
      .aid2027-page .booking-layout { grid-template-columns: 1fr; }
      .aid2027-page .summary { position: static; }
      .aid2027-page .choice-grid, .choice-grid.three, .choice-grid.slots, .how, .info-grid, .split-section { grid-template-columns: 1fr; }
    }

    @media (max-width: 560px) {
      .aid2027-page .topbar, .nav { padding-left: 18px; padding-right: 18px; }
      .aid2027-page .hero-inner, main, .trust-strip { padding-left: 18px; padding-right: 18px; }
      .aid2027-page .hero { background-position: 62% center; }
      .aid2027-page h1 { font-size: 40px; }
      .aid2027-page .lead { font-size: 17px; }
      .aid2027-page .trust-grid { grid-template-columns: 1fr; }
      .aid2027-page .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
      .aid2027-page .trust-item:last-child { border-bottom: 0; }
      .aid2027-page h2 { font-size: 34px; }
      .aid2027-page .step-card { padding: 18px; }
    }
	