  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      list-style-type: none;
  }

  body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      scroll-behavior: smooth;
      font-family: 'Segoe UI', sans-serif;
  }

  .c-container {
      max-width: 1420px;
      margin: 0 auto;
  }

  .navbar.navbar-expand-lg.navbar-light.fixed-top.shadow-sm {
      background: #81D8E1;
      background: linear-gradient(90deg, rgba(129, 216, 225, 1) 0%, rgba(161, 233, 208, 1) 100%);
  }

  /* Hero Section */
  .hero {
      background: #81D8E1;
      background: linear-gradient(90deg, rgba(129, 216, 225, 1) 0%, rgba(161, 233, 208, 1) 100%);
      padding: 130px 0 50px 0;
  }

  .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      color: #393939;
      text-transform: uppercase;
  }

  .hero p {
      font-size: 1.2rem;
      margin: 20px 0 30px;
      color: #393939;
  }

  .banner-right-img {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .btn.btn-dark {
      background: #FF9A02;
      border: #FF9A02;
  }

  .btn.btn-dark:hover {
      background: #ffbe5c;
      border: #FF9A02;
      color: #393939;
  }

  section {
      padding: 150px 0 80px 0;
  }

  h2 {
      color: #393939;
      font-size: 2rem;
      font-weight: bold;
  }

  #features {
      background: #F8F8F8;
  }

  .feature-icon {
      font-size: 3rem;
      color: #ff6600;
      margin-bottom: 20px;
  }

  .steps-number {
      font-size: 2rem;
      font-weight: bold;
      color: #fff;
      background: #81D8E1;
      background: linear-gradient(90deg, rgba(129, 216, 225, 1) 0%, rgba(161, 233, 208, 1) 100%);
      width: 50px;
      height: 50px;
      border-radius: 50px;
      margin: 0 auto;
  }

  footer {
      background: #333;
      color: white;
      padding: 40px 0;
  }

  footer a {
      color: #ff6600;
      text-decoration: none;
  }

  .ge-link-form {
      max-width: 600px;
      margin: 0 auto;
      padding: 30px;
      border: 1px solid #fff;
      border-radius: 10px;
  }

  /* Get Link Form */
  .form-group {
      margin-bottom: 15px;
  }

  .form-control {
      border-radius: 5px;
      height: 45px;
      font-size: 16px;
  }

  textarea {
      height: 100px !important;
      resize: unset;
  }

  #get-link {
      background-size: cover !important;
  }

  .h-left-img {
      border-radius: 10px;
      overflow: hidden;
  }

  .h-left-img img {
      width: 100%;
  }

  @media screen and (max-width:992px) {
      .hero {
          text-align: center;
      }

      .banner-right-img {
          margin-top: 55px;
      }

      .d-flex.gap-4.align-items-center.mb-5 {
          flex-direction: column;
          text-align: center;
      }

      .h-left-img {
          margin-bottom: 30px;
      }
  }

  @media screen and (max-width:575px) {
      .btn.btn-dark.btn-lg.me-0.me-sm-3 {
          margin-bottom: 10px;
      }
  }