  body {
      font-family: 'Poppins', sans-serif;
      background: #1d2b4a;
      color: #fff;
  }

  section {
      padding: 27px 0;
  }


  /* =========================
   MOBILE
========================= */
  @media(max-width:768px) {
      section {
          padding: 70px 0;
      }
  }

  /* HERO SECTION */
  .contact-hero {
      height: 350px;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
          url('images/product-hero.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

  /* TEXT STYLE */
  .hero-title {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .hero-subtitle {
      font-size: 18px;
      opacity: 0.9;
  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
      .contact-hero {
          height: 300px;
      }

      .hero-title {
          font-size: 32px;
      }

      .hero-subtitle {
          font-size: 14px;
      }
  }

  /* BUTTONS */
  .btn {
      display: inline-block;
      padding: 12px 22px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      margin: 10px 5px;
  }

  .btn-primary {
      background: #fff;
      color: #1e3a8a;
  }

  .btn-outline {
      border: 2px solid #fff;
      color: #fff;
  }

  /* CONTAINER */
  .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
  }

  /* PRODUCT OVERVIEW */
  .product {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
  }

  .product img {
      width: 100%;
      border-radius: 12px;
      height: 340px;
  }

  .product h2 {
      font-size: 30px;
      margin-bottom: 15px;
  }

  /* FEATURES */
  .section-title {
      text-align: center;
      font-size: 30px;
      margin-bottom: 40px;
  }

  .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
  }

  .card {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);

      padding: 25px;
      border-radius: 16px;

      border: 1px solid rgba(255, 255, 255, 0.25);

      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

      color: #fff;

      transition: all 0.3s ease;
  }


  .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .card i {
      font-size: 28px;
      color: #1da5e9;
      margin-bottom: 10px;
  }

  .details-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 20px;
  }

  /* CARD STYLE */
  .detail-card {
      background: #ffffff;
      padding: 20px;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: 0.3s ease;
      border-left: 5px solid #3a6ea5;
  }

  .detail-card:hover {
      transform: translateY(-6px);
  }

  .detail-card h4 {
      font-size: 16px;
      color: #3a6ea5;
      margin-bottom: 8px;
  }

  .detail-card p {
      font-size: 15px;
      color: #444;
      margin: 0;
  }


  /* RESPONSIVE */
  @media(max-width:900px) {
      .product {
          grid-template-columns: 1fr;
          text-align: center;
      }
  }

  /* ========================= FAQ SECTION ========================= */
  .faq-wrapper {
      max-width: 900px;
      margin: auto;
  }

  .faq-question {
      width: 50%;
      margin-left: 25%;
      background: #fff;
      border: none;
      padding: 22px 25px;
      border-radius: 16px;
      font-size: 18px;
      font-weight: 600;
      color: #1d2b4a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }

  .faq-question:focus {
      background: hwb(216 4% 58%);
      ;
      color: #fff;
      border-radius: 16px 16px 0 0;
      transform: translateY(-4px);
  }

  .faq-question:hover {
      background: hwb(216 4% 58%);
      color: #fff;
      transform: translateY(-4px);

  }

  .faq-question i {
      transition: 0.3s;
  }

  .faq-question:hover i {
      transform: rotate(180deg);
  }

  .faq-answer {
      background: #fff;
      padding: 0 25px;
      width: 50%;
      margin-left: 25%;
      border-radius: 0 0 16px 16px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }


  .faq-answer p {
      padding: 20px 0;
      margin: 0;
      color: #555;
      line-height: 1.8;
      font-size: 16px;
  }

  /* ========================= RESPONSIVE ========================= */
  @media (max-width:768px) {
      .faq-question {
          font-size: 14px;
          padding: 18px 20px;
          width: 100%;
          margin-left: 0;
      }

      .faq-answer {
          padding: 0 20px;
          margin-left: 0;
          width: 100%;
      }

      .faq-answer p {
          font-size: 13px;
      }
  }

  /* ===========================  contact =========================== */
  .contact-header {
      background: rgba(15, 23, 42, 0.9);
      text-align: center;
      padding: 80px 20px;
  }

  .contact-header h1 {
      font-size: 40px;
      font-weight: 700;
  }

  .contact-box {
      background: rgba(255, 255, 255, 0.05);
      padding: 5px;
      border-radius: 15px;
      text-align: center;
      transition: 0.4s;
      height: 100%;
  }

  .contact-box i {
      font-size: 22px;
      margin-bottom: 15px;
      color: #8b5cf6;
  }

  .contact-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  /* =========================
   FORM
========================= */
  .contact-form {
      background: #1e293b;
      padding: 30px;
      border-radius: 15px;
  }

  .form-control {
      background: #eef0f5;
      border: 1px solid #334155;
      color: #fff;
      padding: 5px;
  }

  .form-control:focus {
      border-color: #8b5cf6;
      box-shadow: none;
  }

  .btn-submit {
      background: linear-gradient(45deg, #6366f1, #8b5cf6);
      border: none;
      padding: 5px;
      width: 100%;
      color: #fff;
      border-radius: 30px;
      transition: 0.3s;
  }

  .btn-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
  }

  /* =========================
   MAP
========================= */
  .map {
      border-radius: 15px;
      overflow: hidden;
  }

  /* =========================
   MOBILE
========================= */
  @media(max-width:768px) {
      section {
          padding: 70px 0;
      }
  }

  /* HERO SECTION */
  .contact-hero {
      height: 350px;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
          url('images/banner4.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

  /* TEXT STYLE */
  .hero-title {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .hero-subtitle {
      font-size: 18px;
      opacity: 0.9;
  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
      .contact-hero {
          height: 300px;
      }

      .hero-title {
          font-size: 32px;
      }

      .hero-subtitle {
          font-size: 14px;
      }
  }