    /* Base styles and utilities */
    .hero-section {
      padding: 10px 0px;
      background: linear-gradient(85deg, #fff 0.02%, #dde8ff 99.98%);
      position: relative;
      z-index: 1;

    }


    /* Shared button styles */
    .btn-doctor,
    .btn-whatsapp {
      border-radius: 8px;
      padding: 12px 28px !important;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .btn-doctor {
      background-color: #00A8E0;
      border-color: #00A8E0;
      color: #fff;
      font-weight: 700;
    }

    .btn-doctor:hover {
      background-color: #0090c0;
      border-color: #0090c0;
      text-decoration: none;
      color: #fff;
    }

    .btn-whatsapp {
      background-color: transparent;
      color: #0fb200;
      border: 1px solid #0fb200;
    }

    .btn-whatsapp:hover {
      text-decoration: none;
      color: #0fb200;
      border: 1px solid #0fb200;
    }

    /* Trust badge */
    .trust-tag {
      background-color: #ffffff;
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 14px;
      color: #008fd6;
      box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
      margin: 15px 0 20px 0;
    }

    .trust-tag i {
      margin-right: 8px;
      color: #008fd6;
    }

    /* Hero content */
    .hero-title {
      font-size: 44px;
      font-weight: 700;
      color: #064200;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .hero-title span {
      color: #00A8E0;
    }

    .hero-subtitle {
      font-size: 18px;
      color: #0c0c0c;
      font-weight: 600;
      margin-bottom: 20px;
      max-width: 540px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }

    /* Slider dots */
    .slider-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
      gap: 8px;
      position: relative;
      z-index: 5;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #ddd;
      display: block;
    }

    .dot.active {
      width: 12px;
      height: 12px;
      background-color: #0fb200;
    }

    /* Second opinion section */
    .second-opinion-container {
      position: relative;
      z-index: 10;
      padding: 0 15px;
      margin: -80px auto 40px;
    }

    .second-opinion-section {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
      padding: 20px 25px;
      max-width: 1140px;
      margin: 0 auto;
      overflow: hidden;
    }

    .second-opinion-title {
      font-size: 16px;
      font-weight: 600;
      color: #064200;
      margin-bottom: 20px;
      line-height: 1.4;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .second-opinion-subtitle {
      font-size: 14px;
      color: #747474 !important;
      font-weight: 500;
      margin-left: 10px;
    }

    .second-opinion-form {
      display: flex;
      gap: 15px;
      align-items: center;
      padding-right: 5px;
    }

    .form-group {
      flex: 1;
      position: relative;
    }

    .input-with-icon {
      position: relative;
      display: flex;
      align-items: center;
    }

    /* Shared form icon styles */
    .form-icon,
    .form-dropdown-icon {
      position: absolute;
      display: flex;
      align-items: center;
    }

    .form-icon {
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
    }

    .form-dropdown-icon {
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      pointer-events: auto;
      cursor: pointer;
    }


    /* Custom placeholder styling */
    .form-control::placeholder {
      color: #747474;
      text-align: left;
    }

    /* Override browser default date format display */
    .form-control[type="date"]:invalid {
      color: #747474;
    }

    .form-control[type="date"]:invalid::-webkit-datetime-edit {
      color: #747474;
    }


    .form-icon img,
    .form-dropdown-icon img {
      width: 20px;
      height: 20px;
    }

    .form-control {
      width: 100%;
      padding: 14px 40px;
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      font-size: 15px;
      color: #747474;
      background-color: #fff !important;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      height: 40px;
    }

    .form-control:focus {
      border-color: #00A8E0;
      box-shadow: 0 0 0 2px rgba(0, 168, 224, 0.1);
      outline: none;
    }

    .btn-search {
      background-color: #00A8E0;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 0 30px;
      height: 40px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      white-space: nowrap;
      min-width: 140px;
      flex-shrink: 0;
      margin-top: -18px;
    }

    .btn-search:hover {
      background-color: #0090c0;
    }

    .search-icon img {
      width: 16px;
      height: 16px;
    }

    /* Responsive design */
    @media (max-width: 991px) {
      .hero-section .col-lg-6 {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .trust-tag {
        margin: 15px auto 20px !important;
        justify-content: center;
      }

      .hero-title,
      .hero-subtitle,
      .hero-buttons {
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .hero-title {
        font-size: 26px;
        line-height: 1.3;
      }

      .hero-subtitle {
        max-width: 90%;
        font-size: 16px;
        line-height: 1.5;
      }

      .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
      }

      .btn-base {
        min-width: 140px;
        justify-content: center;
      }

      .second-opinion-form {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
      }

      .second-opinion-form .form-group,
      .second-opinion-form .btn-search {
        width: 100% !important;
        margin-bottom: 0;
      }

      .second-opinion-form .btn-search {
        height: 48px;
        font-size: 15px;
        justify-content: center;
        margin-top: 0;
      }

    }


    @media (max-width: 767px) {

      .second-opinion-container {
        margin-top: -40px;
        padding: 0 10px;
      }

      .hero-title {
        font-size: 28px;
      }

      .btn-primary,
      .btn-outline-primary {
        padding: 10px;
        font-size: 14px;
      }

      .hero-buttons {
        align-items: flex-start;
        padding: 2px;
      }

      .second-opinion-title {
        font-size: 14px;
      }

      .second-opinion-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 5px;
      }
    }