    /* ====== Page-specific styles ====== */
    #meeting-hero {
      background: linear-gradient(0deg, rgba(0,16,80,0.75), rgba(0,16,80,0.75)),
                  url('../assets/coding-924920_1280.jpg') center/cover no-repeat;
      color: #DEEDF1;
      min-height: 60vh;
      display: flex;
      align-items: center;
    }
    #meeting-hero h1 {
      font: normal normal 600 60px/72px Lexend;
      font-size: 3rem;
      margin: 0;
      color: #DEEDF1;
    }
    #meeting-main {
      background: #EAF9FF;
      padding: 4rem 0 5rem;
    }
    .section-head {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .section-head h2 {
      margin: 0;
      font: normal normal 500 60px/56px Lexend;
      font-size: 2.25rem;
      color: var(--brand-light-blue);
      white-space: nowrap;
    }
    .section-head .line {
      flex: 1;
      height: 3px;
      background: var(--brand-light-blue);
    }
    .meeting-card {
      background: var(--card-bg);
      border-radius: 0.4rem;
      padding: 1.25rem 1.25rem;
      box-shadow: 0 4px 12px var(--card-shadow);
      height: 100%;
    }
    .meeting-card h5 {
      font: normal normal 600 18px/26px Muli;
      color: #082B6D;
      margin-bottom: .25rem;
    }
    .meeting-card p {
      margin: 0;
      font: normal normal 400 16px/24px Muli;
      color: #1A1A1A;
    }
    .meeting-card-selected {
      border: 2px solid #00a0e5;
    }
    .duration-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      border: 1px solid #bfe0ff;
      border-radius: 999px;
      padding: .4rem .8rem;
      font: normal normal 500 14px/20px Lexend;
      color: #082B6D;
      background: #f6fbff;
    }
    .btn-choose, .btn-schedule {
      background: transparent linear-gradient(90deg, #23C5FF 0%, #0133D0 100%) 0% 0% no-repeat padding-box;
      border: none;
      color: #ffffff;
      font-weight: 600;
      padding: 0.6rem 2.0rem;
      border-radius: 0;
      transition: opacity 0.2s;
      font: normal normal 500 16px/20px Lexend;
    }
    .btn-choose:hover, .btn-schedule:hover { opacity: .85; }
    #scheduler {
      min-height: 420px;
      background: #f6fbff;
      border: 1px dashed #bfe9ff;
      border-radius: .4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7a90;
      text-align: center;
      padding: 1rem;
    }
    .note {
      font: normal normal 400 12px/16px Muli;
      color: #6b7a90;
    }
    .form-label {
      font: normal normal 500 14px/20px Lexend;
      color: #082B6D;
    }
    .form-control, .form-select {
      border-radius: .25rem;
      border: 1px solid #dbe6f4;
      padding: .65rem .75rem;
    }
    .form-control:focus, .form-select:focus {
      border-color: #23C5FF;
      box-shadow: 0 0 0 .25rem rgba(35,197,255,.15);
    }
    @media (max-width: 767.98px) {
      #meeting-hero { min-height: 50vh; }
      #meeting-hero h1 { font-size: 2rem; line-height: 1.2; }
      .section-head h2 { font-size: 1.6rem; }
    }