    * {
      box-sizing: border-box;
    }

    /* body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
      color: #f5f5f5;
      padding: 0 15px;
    } */

    body {
      margin: 0;
      /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to bottom right, #1a3a4a, #2e5a6b, #3b7890);
      color: #f5f5f5;
      padding: 0 15px;
    }

    /* .form-container {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
      width: 100%;
      max-width: 600px;
      margin: 60px auto 20px;
      animation: fadeInUp 0.8s ease-out;
    } */

    h1 {
      text-align: center;
      font-size: 2.1rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #00e5ff;
      /* slightly brighter than h2 */
      letter-spacing: 0.3px;
    }

    h2 {
      font-size: 1.4rem;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .g-recaptcha {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 20px;
      filter: brightness(1.1);
      /* makes it pop on dark bg */
    }

    .captcha-box {
      background: rgba(255, 255, 255, 0.06);
      padding: 10px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
    }

    .form-container {
      background: rgba(255, 255, 255, 0.1);
      /* Increased opacity slightly */
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
      width: 100%;
      max-width: 600px;
      margin: 60px auto 20px;
      animation: fadeInUp 0.8s ease-out;
    }

    .form-container h1 {
      margin-bottom: 6px;
    }

    .form-container h2 {
      margin-top: 0;
      opacity: 0.9;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }

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

    h2,
    h3,
    a {
      text-align: center;
      color: #00bcd4;
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-top: 20px;
      font-weight: 500;
      color: #e0e0e0;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
    }

    input,
    select {
      width: 100%;
      padding: 14px;
      margin-top: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: #e0e0e0;
      /* font-size: 16px; */
      font-size: 0.95rem;
      backdrop-filter: blur(4px);
      transition: border 0.3s, background 0.3s;
    }

    input::placeholder,
    select::placeholder {
      color: #bbb;
    }

    input:focus,
    select:focus {
      border-color: #00bcd4;
      outline: none;
      background: rgba(255, 255, 255, 0.12);
    }

    select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      padding-right: 40px;
      cursor: pointer;
    }

    select option {
      background: #1f2a36;
      color: #fff;
      padding: 10px;
    }

    button {
      margin-top: 30px;
      width: 100%;
      background: linear-gradient(135deg, #00bcd4, #009688);
      border: none;
      color: white;
      padding: 14px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
    }

    button:hover {
      background: linear-gradient(135deg, #009688, #00bcd4);
      transform: scale(1.03);
    }

    .logo {
      text-align: center;
      margin-bottom: 20px;
    }

    .logo img {
      width: 140px;
      filter: brightness(150%);
    }

    .error {
      color: #ff4444;
      text-align: center;
    }

    .section {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 15px;
      font-size: 0.95em;
      opacity: 0.85;
    }

    .section h3 {
      text-align: center;
      color: #00bcd4;
      margin-bottom: 15px;
    }

    .section ul,
    .section p {
      margin: 0 auto;
      padding: 0;
      list-style: none;
      text-align: center;
    }

    .section ul {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
    }

    .section li {
      background: rgba(255, 255, 255, 0.04);
      padding: 15px;
      border-radius: 8px;
      border: 1px solid #333;
    }

    .testimonials {
      max-width: 900px;
      margin: 60px auto 20px;
      text-align: center;
      overflow: hidden;
    }

    .carousel {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial {
      min-width: 100%;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      border: 1px solid #333;
    }

    .testimonial p {
      font-style: italic;
    }

    .testimonial strong {
      display: block;
      margin-top: 10px;
    }

    .clients {
      max-width: 900px;
      margin: 60px auto;
      text-align: center;
    }

    .clients img {
      max-height: 60px;
      margin: 15px;
      filter: brightness(1.3);
      transition: transform 0.2s;
    }

    .clients img:hover {
      transform: scale(1.1);
    }

    .footer {
      text-align: center;
      font-size: 0.8em;
      margin-top: 40px;
      color: #aaa;
    }

    .footer a {
      color: #00bcd4;
      text-decoration: none;
    }

    .product-select {
      position: relative;
    }

    .product-select select {
      padding-left: 40px;
      background-image: url('data:image/svg+xml;utf8,<svg fill="%23e0e0e0" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px 16px;
    }

    .product-select::before {
      content: "🛒";
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      font-size: 18px;
      opacity: 0.7;
    }

    @media (max-width: 600px) {
      .form-container {
        padding: 30px 20px;
        margin-top: 30px;
      }

      .section {
        font-size: 0.85em;
        opacity: 0.6;
      }

      .section ul {
        grid-template-columns: 1fr;
      }
    }

    /* SEO section */

    .seo-content {
      max-width: 900px;
      margin: 50px auto 30px;
      padding: 30px 25px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      backdrop-filter: blur(8px);
      text-align: center;
    }

    .seo-content h2 {
      color: #00bcd4;
      margin-bottom: 15px;
      font-size: 1.6rem;
    }

    .seo-content p {
      color: #d6e4ea;
      font-size: 0.98rem;
      line-height: 1.7;
      margin-bottom: 12px;
    }