body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f5f5f5;
      color: #333;
    }

    .top-header {
      background-color: #3c1650;
      color: white;
      padding: 20px 20px 40px;
      position: relative;
    }

    .top-header .logo {
      font-size: 90px;
      font-weight: bold;
    }

    .top-header .faq-tab {
      position: absolute;
      top: 25px;
      right: 20px;
      font-size: 14px;
    }

    .top-header .faq-tab a {
      color: #CA8A1C;
      text-decoration: none;
      font-weight: 400;
    }

    .floating-header {
      background-color: #ffffff;
      padding: 10px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      gap: 40px;
      justify-content: flex-end;
      align-items: center;
      position: absolute;
      top: 60px;
      right: 20px;
    }

    .floating-header a {
      color: black;
      text-decoration: none;
      font-weight: 500;
      font-size: 22px;
      position: relative;
      transition: all 0.3s ease;
    }

    .floating-header a:hover {
      color: #CA8A1C;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      padding: 10px 0;
      border-radius: 8px;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 20px;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu a:hover {
      background-color: #f5f5f5;
    }

/* Hamburger Menu */
    .hamburger-menu {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background-color: #f0f0f0;
      border-radius: 50%;
      cursor: pointer;
      position: absolute;
      top: 66px;
      left: 90%;
      transform: translateX(-50%);
      z-index: 1002;
      transition: background 0.3s;
    }

    .hamburger-menu:hover {
      background-color: #a97016;
    }

    .hamburger-menu div {
      width: 25px;
      height: 3px;
      background-color: #3c1650;
      margin: 4px 0;
      transition: 0.4s;
    }

    .hamburger-menu.active .bar1 {
      transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger-menu.active .bar2 {
      opacity: 0;
    }

    .hamburger-menu.active .bar3 {
      transform: rotate(45deg) translate(-6px, -6px);
    }

    @media (max-width: 900px) {
      .floating-header {
        flex-direction: column;
        align-items: center;
        top: 140px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        width: 90%;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
      }

      .floating-header.show {
        display: flex;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }

      .hamburger-menu {
        display: flex;
      }
    }

  

    .section-divider {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-block {
      flex: 1;
      text-align: center;
    }

    .section-block img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }

    .section-block h3 {
      color: #3c1650;
      font-size: 30px;
      margin-bottom: 10px;
    }

    .section-block p {
      font-size: 20px;
      line-height: 1.6;
    }

    .vertical-line {
      width: 2px;
      background-color: #ccc;
      height: auto;
    }

    .info-section {
      background-color: #3c1650;
      color: white;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }
    .info-section .footer-logo img {
      height: 70px;
      margin-bottom: 20px;
    }
    .info-section .footer-text {
      max-width: 300px;
      font-size: 14px;
      line-height: 1.6;
    }
    .info-section .footer-links ul {
      list-style: none;
      padding: 0;
    }
    .info-section .footer-links li {
      margin-bottom: 10px;
    }
    .info-section .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }
    .info-section .footer-social {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .info-section .footer-social a {
      color: white;
      font-size: 22px;
      text-decoration: none;
      transition: transform 0.2s;
    }
    .info-section .footer-social a:hover {
      transform: scale(1.2);
      color: #CA8A1C;
    }
    .info-section .newsletter {
      display: flex;
      gap: 10px;
    }
    .info-section .newsletter input {
      padding: 10px;
      border-radius: 4px;
      border: none;
    }
    .info-section .newsletter button {
      background-color: #CA8A1C;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      cursor: pointer;
    }

    .copyright {
      background-color: white;
      color: #3c1650;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }

      @media (max-width: 768px) {
  .section-divider {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .vertical-line {
    display: none;
  }

  .section-block {
    max-width: 100%;
  }

  .info-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .info-section .footer-text {
    max-width: 100%;
    font-size: 13px;
  }

  .info-section .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .info-section .footer-links li {
    margin: 0;
  }

  .info-section .newsletter {
    flex-direction: column;
    width: 100%;
  }

  .info-section .newsletter input {
    width: 100%;
  }

  .info-section .newsletter button {
    width: 111%;
  }

  .footer-social {
    justify-content: center;
  }
}