    :root {
      --main-purple: #4a3b6b;
      --main-purple2: #6b4e7d;
      --main-yellow: #ffc107;
      --main-yellow2: #ffb300;
      --text-dark: #222;
      --bg-light: #f8f9fa;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Arial", sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background: #fff;
      overflow-x: hidden;
    }

    .inscription-visible {
      /* Ici on met "block" ou "none" pour afficher ou non les encadrés jaunes pour les inscriptions. */
      display: none;
    }

    .main-nav {
      width: 100%;
      background: transparent !important;
      box-shadow: none !important;
      margin-top: 40px;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 30;
    }

    .nav-container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      max-width: 100vw;
      margin: 0;
      padding: 0 44px 0 0;
    }

    .nav-logo {
      color: var(--main-yellow);
      font-size: 1.3rem;
      font-weight: bold;
      text-decoration: none;
      padding: 16px 0;
      letter-spacing: 0.5px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 12px;
      background: transparent;
    }

    .nav-menu a {
      color: #fff;
      font-weight: 600;
      font-size: 1.5rem;
      letter-spacing: 0.01em;
      text-decoration: none;
      padding: 13px 16px 9px 16px;
      background: none;
      border-radius: 5px;
      margin: 0 1px;
      text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.63),
        0 0 4px #ffde80cc,
        0 0 2px #000;
      transition: color 0.22s, background 0.17s;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
      color: var(--main-yellow);
      outline: none;
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      padding: 8px;
    }

    @media (min-width: 901px) {
      .mobile-menu-toggle {
        display: none !important;
      }
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 2000;
      background: rgba(0, 0, 0, 0.75);
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
    }

    /* Lightbox général */
    .modal-content {
      background-color: #fff;
      margin: 4% auto;
      padding: 0;
      border-radius: 20px;
      max-width: 950px;
      color: var(--text-dark);
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      animation: fadeIn 0.4s;
      font-family: "Arial", sans-serif;
    }

    .modal-columns {
      display: flex;
      flex-direction: row;
      gap: 0;
      align-items: stretch;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .modal-left {
      flex: 0 0 320px;
      background: linear-gradient(145deg, var(--main-purple), var(--main-purple2));
      color: white;
      padding: 32px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .modal-photo {
      width: 230px;
      height: 230px;
      object-fit: cover;
      border-radius: 100%;
      border: 4px solid var(--main-yellow);
      margin-bottom: 22px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .modal-left h2 {
      font-size: 1.7rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .modal-left h4 {
      font-size: 1rem;
      font-weight: 500;
      color: var(--main-yellow);
      margin-bottom: 0;
    }

    .modal-right {
      flex: 1;
      padding: 36px 30px;
      background: #fff;
      position: relative;
    }

    .modal-right p {
      font-size: 1.08rem;
      line-height: 1.7;
      color: #333;
      white-space: pre-line;
      text-align: justify;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 26px;
      font-size: 2rem;
      font-weight: bold;
      color: #999;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .modal-close:hover {
      color: var(--main-purple);
    }



    /* Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    @media (max-width: 900px) {
      .nav-menu {
        position: fixed;
        top: 56px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: rgba(74, 59, 107, 0.99);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.32s;
      }

      .nav-menu.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
      }

      .nav-menu a {
        padding: 18px 0;
        width: 100vw;
        text-align: center;
      }

      .mobile-menu-toggle {
        display: block;
      }
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: end;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: #4a3b6b;
    }

    /* Slideshow background */
    .hero-bg-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .hero-bg-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(0.6, 0.2, 0.4, 1);
      pointer-events: none;
      background: #4a3b6b;
    }

    .hero-bg-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-nav {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 3;
      pointer-events: none;
    }

    .hero-nav-btn {
      pointer-events: all;
      background: rgba(0, 0, 0, 0.35);
      border: none;
      color: #fff;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      font-size: 1.6rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .hero-nav-btn:hover {
      background: rgba(0, 0, 0, 0.55);
    }

    .hero::before {
      display: none !important;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg,
          rgba(74, 59, 107, 0.62) 0%,
          rgba(107, 78, 125, 0.38) 60%,
          rgba(74, 59, 107, 0.57) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-logo {
      position: absolute;
      top: 30px;
      left: 35px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 35;
      box-shadow: 0 6px 22px rgba(0, 0, 0, 0.17);
      transition: width 0.25s, height 0.25s, top 0.25s, left 0.25s;
    }

    .hero-logo img {
      width: 240px;
      height: 240px;
      object-fit: contain;
      display: block;
      /* Pour les logos à fond transparent : mettez un fond blanc ou rien selon préférence */
      background: none;
    }

    .hero h1,
    .hero-subtitle {
      color: #fff !important;
      text-shadow:
        0 3px 16px #000,
        0 1px 0 #222,
        0 0 2px #fff,
        0 0 24px rgba(0, 0, 0, 0.19);
    }

    .hero h1 {
      font-size: 3.2rem;
      font-weight: 900;
      letter-spacing: 0.01em;
      text-shadow:
        0 3px 16px #000,
        0 1px 0 #222,
        0 0 6px #fff,
        0 0 24px rgba(0, 0, 0, 0.21);
      margin-bottom: 16px;
    }

    .hero-subtitle {
      font-size: 1.23rem;
      font-weight: 500;
      text-shadow:
        0 2px 8px #000,
        0 0 3px #fff,
        0 0 18px rgba(0, 0, 0, 0.16);
      margin-bottom: 32px;
    }

    .cta-button {
      background: linear-gradient(45deg,
          var(--main-yellow),
          var(--main-yellow2));
      color: var(--main-purple);
      padding: 16px 40px;
      border: none;
      border-radius: 50px;
      font-size: 1.16rem;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: box-shadow 0.3s, transform 0.2s;
      opacity: 0;
      animation: slideUp 1s 0.9s forwards;
      margin-top: 14px;
    }

    .cta-button:hover,
    .inscription-cta-button:hover {
      box-shadow: 0 15px 35px rgba(255, 193, 7, 0.36);
      transform: translateY(-2px) scale(1.03);
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scroll {
      0% {
        transform: translateY(0);
        opacity: 1;
      }

      100% {
        transform: translateY(19px);
        opacity: 0;
      }
    }

    .section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section h2 {
      font-size: 2.45rem;
      text-align: center;
      margin-bottom: 3rem;
      color: var(--main-purple);
      position: relative;
    }

    .section h2::after {
      content: "";
      display: block;
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(45deg,
          var(--main-yellow),
          var(--main-yellow2));
      border-radius: 2px;
    }

    .mission-content {
      display: flex;
      align-items: center;
      text-align: justify;
      margin: 36px 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      justify-content: center;
      align-items: stretch;
      margin: 40px 0;
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-card {
      background: #fff;
      padding: 38px 28px 32px 28px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(74, 59, 107, 0.09);
      transition: transform 0.26s, box-shadow 0.26s, border-color 0.24s;
      border: 2px solid #f0f0f0;
      position: relative;
      max-width: 550px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-card:hover {
      transform: translateY(-7px) scale(1.02);
      box-shadow: 0 22px 60px rgba(74, 59, 107, 0.15);
      border-color: var(--main-yellow);
    }

    .feature-icon {
      width: 78px;
      height: 78px;
      background: linear-gradient(45deg,
          var(--main-purple),
          var(--main-purple2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 2rem;
      color: var(--main-yellow);
    }

    .feature-card h3 {
      font-size: 1.22rem;
      margin-bottom: 15px;
      color: var(--main-purple);
    }

    .feature-card p {
      color: #666;
      font-size: 1.02rem;
      line-height: 1.64;
    }

    .program-highlight {
      max-width: 1200px;
      margin: 40px auto;
      border-radius: 28px;
      padding: 50px 28px 38px 28px;
      background: linear-gradient(135deg, #4a3b6b 0%, #6b4e7d 100%);
      color: #fff;
      box-shadow: 0 8px 32px rgba(74, 59, 107, 0.08);
      text-align: center;
    }

    .program-highlight h3 {
      font-size: 2.18rem;
      margin-bottom: 0.7rem;
      color: var(--main-yellow);
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    /* Sous-titre */
    .program-desc {
      margin-bottom: 30px;
      color: #f8f9fa;
      font-size: 1.08rem;
      font-weight: 400;
    }

    /* Images en ligne, bien espacées */
    .program-images-row {
      display: flex;
      flex-direction: row !important;
      /* Toujours en ligne, même sur mobile */
      gap: 38px;
      justify-content: center;
      align-items: center;
      margin: 30px 0 30px 0;
      flex-wrap: nowrap;
      height: 255px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .program-img {
      max-width: 320px;
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 4px 28px rgba(74, 59, 107, 0.17);
      border: 3px solid #ffc10733;
      background: #fff;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      flex: 0 0 240px;
    }

    .program-img:hover {
      transform: scale(1.03) rotate(-1deg);
      box-shadow: 0 12px 40px rgba(255, 193, 7, 0.12);
    }

    .program-box-row {
      display: flex;
      gap: 32px;
      justify-content: center;
      align-items: stretch;
      margin-top: 12px;
      margin-bottom: 0;
    }

    .program-box {
      flex: 1 1 280px;
      background: linear-gradient(100deg, #fffbe6 0%, #ffe082 100%);
      color: #4a3b6b;
      border-radius: 16px;
      box-shadow: 0 2px 18px rgba(74, 59, 107, 0.08);
      padding: 32px 28px 25px 28px;
      border: 1.5px solid #ffc107aa;
      text-align: justify;
      min-width: 240px;
      transition: box-shadow 0.2s, transform 0.2s;
      margin-bottom: 0;
    }

    .program-box h4 {
      margin-bottom: 12px;
      color: #b97c00;
      font-weight: 700;
      font-size: 1.55rem;
      letter-spacing: 0.01em;
    }

    .program-box p {
      color: #4a3b6b;
      font-size: 1.07rem;
      font-weight: 500;
    }

    .program-box strong {
      color: #ce9000;
      font-weight: bold;
    }

    .program-box:hover {
      box-shadow: 0 8px 40px rgba(255, 193, 7, 0.18);
    }

    .highlight-box {
      background: rgba(255, 193, 7, 0.18);
      padding: 21px 15px;
      border-radius: 15px;
      margin: 15px 0 0 0;
      border: 2px solid rgba(255, 193, 7, 0.16);
      color: var(--main-purple);
      font-weight: 500;
      font-size: 1.1rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px;
      margin: 38px 0;
    }

    .team-member {
      background: #fff;
      border-radius: 14px;
      padding: 27px 12px 19px 12px;
      text-align: center;
      box-shadow: 0 5px 18px rgba(0, 0, 0, 0.09);
      border: 1px solid #ce9000;
      min-width: 140px;
    }

    .team-member:hover {
      background: #e8e2ec;
      cursor: pointer;
      box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
    }

    .team-photo {
      width: 135px;
      height: 135px;
      background: var(--main-yellow);
      border-radius: 50%;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--main-purple);
      font-size: 1.15rem;
      font-weight: bold;
      border: 5px solid var(--main-purple);
      text-align: center;
      line-height: 1.2;
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
    }

    .team-member p {
      color: #666;
      font-size: 0.98rem;
    }

    .inscription-section {
      background: linear-gradient(135deg,
          var(--main-yellow) 0%,
          var(--main-yellow2) 100%);
      color: var(--main-purple);
      text-align: center;
      padding: 80px 16px 60px 16px;
      margin: 64px 0 32px 0;
      border-radius: 16px;
      box-shadow: 0 6px 36px rgba(255, 193, 7, 0.07);
    }

    .inscription-section h2 {
      margin-bottom: 1.7rem;
    }

    .date-important {
      font-size: 1.3rem;
      font-weight: bold;
      background: rgba(74, 59, 107, 0.12);
      padding: 18px 12px;
      border-radius: 12px;
      margin: 25px auto 12px auto;
      max-width: 400px;
      border: 2px solid rgba(74, 59, 107, 0.17);
      letter-spacing: 0.01em;
    }

    .inscription-cta-button {
      background: linear-gradient(45deg,
          var(--main-purple),
          var(--main-purple2));
      color: var(--main-yellow);
      padding: 14px 36px;
      border: none;
      border-radius: 50px;
      font-size: 1.15rem;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      margin-top: 17px;
      transition: box-shadow 0.3s, transform 0.2s;
    }

    .contact-card {
      background: #fff;
      border-radius: 13px;
      padding: 36px 15px;
      max-width: 520px;
      margin: 0 auto;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
      border: 2px solid var(--main-yellow);
    }

    .footer {
      background: var(--main-purple);
      color: #fff;
      text-align: center;
      padding: 38px 10px 26px 10px;
      font-size: 1.02rem;
      margin-top: 10px;
    }

    .footer p:last-child {
      opacity: 0.72;
    }

    .top-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(45deg,
          var(--main-yellow),
          var(--main-yellow2));
      color: var(--main-purple);
      padding: 15px 20px 15px 18px;
      font-weight: bold;
      z-index: 1020;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
      animation: slideUp 0.7s;
      align-items: center;
      justify-content: center;
      font-size: 1.07rem;
      gap: 6px;
    }

    .top-banner.hidden {
      display: none;
    }

    .date-highlight {
      background: rgba(74, 59, 107, 0.1);
      padding: 5px 10px;
      border-radius: 8px;
      margin: 0 5px;
      display: inline-block;
    }

    .close-banner {
      position: absolute;
      right: 19px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--main-purple);
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
      padding: 5px;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .close-banner:hover {
      background: rgba(74, 59, 107, 0.07);
    }

    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--main-purple);
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 24px;
      font-weight: bolder;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
      transition: transform 0.2s ease, background-color 0.3s ease;
      z-index: 1015;
      opacity: 0;
      visibility: hidden;
      transform: translateY(22px);
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top.bumped {
      bottom: 90px;
      transition: bottom 0.3s ease;
      /* hauteur du bandeau + marge */
    }

    .back-to-top:hover {
      background-color: var(--main-purple2);
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(74, 59, 107, 0.32);
    }

    #imgLightbox {
      display: none;
      position: fixed;
      z-index: 3000;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(35, 24, 48, 0.95);
      align-items: center;
      justify-content: center;
    }

    #imgLightbox.visible {
      display: flex;
    }

    @media (max-width: 900px) {
      .section {
        padding: 54px 10px;
      }

      .section-title {
        font-size: 2em;
        letter-spacing: 1px;
        font-weight: 700;
        color: var(--main-purple);
      }

      .section h2::after {
        content: "";
        display: block;
        position: absolute;
        bottom: -12px;
        transform: translateX(-50%);
        margin: 20px auto 10px;
        width: 60%;
        height: 4px;
        background: linear-gradient(to right, var(--main-yellow2), var(--main-purple2));
        border-radius: 2px;
      }

      .invisible-mobile {
        display: none;
      }

      .mission-content {
        gap: 14px;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 99vw;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }

      .program-highlight {
        padding: 32px 9px 22px 9px;
      }

      .inscription-section {
        padding: 50px 8px 36px 8px;
      }

      .date-important {
        font-size: 1.1rem;
        padding: 11px 6px;
      }

      .team-member {
        padding: 22px 6px 15px 6px;
      }

      .main-nav {
        font-size: 0.98rem;
      }

      .hero {
        min-height: 75vh;
        padding-top: 38px;
        padding-bottom: 22px;
        /*align-items: center;*/
      }

      .hero-content {
        padding: 0 20px 20px;
      }

      .hero-content h1 {
        margin-bottom: 0px;
      }

      .hero-subtitle {
        margin-bottom: 0px;
        font-size: 1.13rem;
      }

      .program-images-row {
        flex-direction: column;
        gap: 10px;
        height: 140px;
      }

      .program-img {
        max-width: 85vw;
        height: 110px;
        margin: 10px 0 10px 0;
      }

      .program-img:hover {
        transform: scale(1.00) rotate(-1deg);
        box-shadow: 0 12px 40px rgba(255, 193, 7, 0.12);
      }

      .program-box-row {
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;
      }

      .program-box {
        padding: 28px 13px 20px 13px;
        min-width: 0;
      }

      .mobile-menu-toggle {
        display: block !important;
        position: fixed;
        top: 16px;
        right: 20px;
        z-index: 2001;
        background: #4a3b6b;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        padding: 0;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
        transition: background 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.7rem;
      }

      .mobile-menu-toggle:active,
      .mobile-menu-toggle:focus {
        background: #6b4e7d;
      }

      .back-to-top {
        bottom: 90px;
      }

      .back-to-top.bumped {
        bottom: 155px;
        /* ajuste si ton bandeau est plus ou moins haut */
        transition: bottom 0.3s ease;
      }

      @media (max-width: 600px) {
        .hero {
          min-height: 60vh;
          padding-top: 26px;
          padding-bottom: 15px;
        }

        .hero h1 {
          font-size: 2rem;
        }

        .hero-subtitle {
          font-size: 1.01rem;
        }

        .cta-button {
          padding: 8px 20px;
          font-size: 1rem;
          white-space: nowrap;
          margin-top: 20px;
        }

        .main-nav {
          font-size: 0.95rem;
        }

        .program-box {
          padding: 28px 13px 28px 13px;
          min-width: 0;
        }

        .program-images-row {
          gap: 10px;
          margin: 10px 0 10px 0;
          height: 200px;
        }

        .program-img {
          height: 150px;
          max-width: 190px;
          flex: 0 0 200px;
        }

        .modal-columns {
          flex-direction: column;
          align-items: center;
        }

        .modal-left {
          padding: 24px 16px;
          flex: 0 0 auto;
          width: 100%;
          text-align: center;
          border-bottom: 1px solid #eee;
        }

        .modal-photo {
          width: 140px;
          height: 140px;
          object-fit: cover;
          border-radius: 50%;
          border: 4px solid var(--main-yellow);
          margin: 0 auto 16px auto;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .modal-right {
          flex: 1 1 auto;
          width: 100%;
          max-height: 300px;
          padding: 20px 18px;
          overflow-y: auto;
          scrollbar-gutter: stable;
          box-shadow: inset 0 6px 12px -10px rgba(0, 0, 0, 0.15);
        }

        .modal-content {
          margin: 6% auto;
          max-height: 90vh;
          overflow-y: auto;
        }

        #expandBioBtn {
          background: var(--main-purple);
          color: white;
          padding: 8px 18px;
          font-size: 0.95rem;
          border: none;
          border-radius: 24px;
          cursor: pointer;
          margin-top: 12px;
        }

        #expandBioBtn:hover {
          background: var(--main-purple2);
        }
      }
    }
