  /* General Styles */
  body {
    font-family: 'Lato';
    font-size: 22px;
    margin: 0;
    padding: 0;
  }

  .container2 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .header {
    width: 100%;
    padding: 0px;
    padding-bottom: 5px;
    background-color: white;
  }

  .navigation a {
    color: black;
    /* Initial link color */
  }

  .navigation {
    color: black;
  }


  main {
    /*padding: 7.49% 0;*/
    border-radius: 8px;
    background-color: transparent;
    margin-top: -10px;
  }

  .scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    background-color: #2F2B8C;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    animation: bounce 2s infinite;
  }

  .scroll-to-top-btn:hover {
    background-color: #1d1a6d;
  }

  .whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 16px;
    border-radius: 50%;
    font-size: 24px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    animation: pop-in 1s ease-out, bounce 2s infinite;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .whatsapp-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }


  .gradient-line2 {
    border: 0;
    border-top: 3px solid;
    border-image: linear-gradient(to right, #2F2B8C, #04BFBF) 1;
    height: 0;
    width: 90%;
    margin: 20px auto;
  }

  .cart {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
  }

  .cart span:first-child {
    margin-right: 10px;
  }

  .content1 {
    margin: 3% 20%;
    color: #2F2B8C;
  }

  .content1>h1 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(to right, #2F2B8C 30%, #04BFBF);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .content1>h2 {
    font-size: 28px;
  }

  .services-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0px;
    text-align: center;
    margin: 0% 13%;
    margin-bottom: 50px;
  }

  .service img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .service h2 {
    color: #2F2B8C;
    text-align: left;
    font-size: 28px;
    height: 30px;
  }

  .service p {
    text-align: left;
    color: #2F2B8C;
    line-height: 1.6;
  }


  .faq-section p {
    margin: 1%;
    font-size: 18px;
  }

  .faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 5%;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    outline: none;
    font-family: 'Lato';
    color: white;
    font-size: 20px;
  }


  .faq-answer {
    display: none;
    padding: 10px 15px;
    border-radius: 4px;
  }

  button.faq-question {
    background: transparent;
  }

  .faq-section {
    max-width: 85%;
    margin: 4% auto;
    margin-bottom: 60px;
    padding: 10px 100px;
    background: linear-gradient(to left, #04BFBF, #2F2B8C);
    color: white;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .faq-item {
    text-align: left;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddddddb7;
    padding-bottom: 10px;
  }

  .faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 5%;
  }


  /* Responsive styling for smaller screens */
  @media screen and (max-width: 768px) {

    main {
      border-radius: 8px;
      margin-top: -30px;
    }


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

    .service h3 {
      text-align: center;
      font-size: 25px;
      height: auto;
    }

    .services-section {
      gap: 5px;
      padding: 0;
      text-align: center;
      margin: 6% 13%;
    }

    .content1>h2 {
      font-size: 29px;
    }

    .content1>h3 {
      font-size: 20px;
      text-align: center;
    }

    .content1 {
      margin: 5% 12%;
      color: #2F2B8C;
    }

    .faq-section {
      margin: 5% 8% !important;
      padding: 5% 10% !important;
    }

    .faq-section h2 {
      text-align: center;
      font-size: 30px !important;
      margin: 5%;
    }

    .faq-section>h3 {
      font-size: 20px;
      margin: 3% 0;
    }

    .faq-section p {
      font-size: 18px;
      margin: 2% 0;
      margin-bottom: 5%;
    }

    .faq-question {
      font-size: 16px;
      cursor: pointer;
      font-size: 20px;
      padding: 0 10px;
    }

    header.product-header {
      padding-bottom: 20px;
    }

    .scroll-to-top-btn {
      right: 39px;
    }

    .whatsapp-btn {
      right: 38px;
    }
  }

  @media screen and (max-width: 431px) {

    main {
      border-radius: 5px !important;
      /* Slightly reduce border radius for smaller screens */
    }

    .content1>h1 {
      text-align: center;
      font-size: 40px;
      background: linear-gradient(to right, #2F2B8C 30%, #04BFBF);
      background-clip: border-box;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .content1 p {
      font-size: 18px;
      margin-left: 2%;
    }

    .services-section {
      grid-template-columns: 1fr;
      /* Keep single column for better readability */
      gap: 3px;
      /* Reduce gap for tighter layout */
      padding: 0;
      text-align: center;
      margin: 8% 5% 0% 5%;
      /* Adjust margins to fit smaller screens */
      overflow: hidden;
    }

    .service p {
      text-align: left;
      color: #2F2B8C;
      line-height: 1.6;
      font-size: 18px;
      margin-top: auto;
      margin-left: 2%;
    }

    .service h2 {
      color: #2F2B8C;
      text-align: left;
      font-size: 22px;
      height: 30px;
      margin-left: 2%;
    }

    .service h3 {
      text-align: center;
      font-size: 22px;
      /* Reduce font size slightly */
      height: auto;
    }

    .content1>h2 {
      font-size: 24px;
      /* Reduce size for better fit */
      margin-left: 2%;
    }

    .content1>h3 {
      font-size: 18px;
      /* Adjust font size */
      text-align: center;
    }

    .content1 {
      margin: 6% 5%;
      /* Reduce side margins to avoid overflow */
      color: #2F2B8C;
    }

    .faq-section {
      padding: 6% 8% !important;
    }

    .faq-section h2 {
      text-align: center;
      font-size: 26px !important;
      /* Slightly smaller for better fit */
      margin: 6%;
    }

    .faq-section>h3 {
      font-size: 18px;
      margin: 4% 0;
    }

    .faq-section p {
      font-size: 16px;
      margin: 3% 0;
      /*margin-bottom: 6%;*/
    }

    .faq-question {
      font-size: 18px;
      /* Adjust for readability */
      cursor: pointer;
      padding: 0 8px;
    }

    header.product-header {
      padding-bottom: 15px;
      /* Reduce bottom padding */
    }

    .scroll-to-top-btn {
      right: 20px;
      /* Bring button closer */
      bottom: 20px;
      /* Adjust for smaller screens */
    }

    .whatsapp-btn {
      right: 20px;
      /* Align with scroll button */
      bottom: 80px;
    }
  }