    /* ====== Page-specific styles ====== */
    #quote-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;
    }
    #quote-hero h1 {
      font: normal normal 600 60px/72px Lexend;
      font-size: 3rem;
      margin: 0;
      color: #DEEDF1;
    }
    #quote-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);
    }
    .card-soft {
      background: var(--card-bg);
      border-radius: .4rem;
      padding: 1.25rem 1.25rem;
      box-shadow: 0 4px 12px var(--card-shadow);
    }
    .value-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: #f6fbff;
      border: 1px solid #bfe0ff;
      display: inline-flex; align-items: center; justify-content: center;
      color: #082B6D;
    }
    .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);
    }
    .btn-quote-submit {
      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-quote-submit:hover { opacity: .85; }
    .note { font: normal normal 400 12px/16px Muli; color: #6b7a90; }
    .sticky {
      position: sticky;
      top: 96px;
    }
    @media (max-width: 767.98px) {
      #quote-hero { min-height: 50vh; }
      #quote-hero h1 { font-size: 2rem; line-height: 1.2; }
      .section-head h2 { font-size: 1.6rem; }
    }