  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
      ul{
    list-style-type: none
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #f8fafc;
    }

    /* FAQ Section */
    .faq-section {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      padding: 3rem 2rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 3rem;
      text-align: center;
      color: #1e1b4b;
      margin-bottom: 1.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #1e1b4b 0%, #10b981 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: #64748b;
      padding-bottom: 15px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-wrapper {
      max-width: 1000px;
      margin: 0 auto;
    }

    .faq-item {
      background: #ffffff;
      border-radius: 16px;
      margin-bottom: 1.5rem;
      overflow: hidden;
      border: 2px solid #e2e8f0;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .faq-item:hover {
      border-color: #10b981;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .faq-item.active {
      border-color: #10b981;
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    }

    .faq-header {
      width: 100%;
      background: transparent;
      border: none;
      outline: none;
      padding: 2rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      gap: 2rem;
    }

    .faq-header:hover {
      background: #f8fafc;
    }

    .faq-item.active .faq-header {
      background: #f0f9ff;
    }

    .faq-question {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1e1b4b;
      text-align: left;
      flex: 1;
      transition: color 0.3s ease;
    }

    .faq-item.active .faq-question {
      color: #10b981;
    }

    .faq-icon {
      width: 40px;
      height: 40px;
      background: #e0f2fe;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      color: #10b981;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: #10b981;
      color: #ffffff;
    }

    .faq-content {
      background: #f8fafc;
      padding: 0 2.5rem;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .faq-item.active .faq-content {
      max-height: 500px;
      padding: 2rem 2.5rem;
      border-top: 1px solid #e2e8f0;
    }

    .faq-content p {
      font-size: 1.05rem;
      color: #475569;
      line-height: 1.9;
      margin: 0;
    }
    .question_body{
      font-size: 15px;
      font-weight: normal;
    }
    .insurance_detals{
      margin-top: 30px;
    }

    .buybutton a {
      display: inline-block;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #ffffff;
      text-decoration: none;
      padding: 1.2rem 3rem;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
      border: 2px solid transparent;
    }

    .buybutton a:hover {
      background: linear-gradient(135deg, #059669 0%, #047857 100%);
      box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
      transform: translateY(-2px);
    }

    .buybutton a:active {
      transform: translateY(0);
      box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    }
    .product-details {
      padding: 0 !important;
    }
  .product-details > .container > p {
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0 !important;
  }
  .travel_banner_main{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .travel_text{
  width: 100%;
  max-width: 650px;
  }
  .travel_text_p{
    font-size: 15px;
    color: #1f1f28;
    text-align: center;
   
  }
  .insurance_detals {
	margin-bottom: 0;
  text-align: center;
  }

  .travel_images {
  width: 100%;
  max-width: 650px;
  height: 624px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  padding: 10px;
  border-radius: 20px;
  box-sizing: border-box;
}

.travel_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  display: block;
}

    /* Responsive */
    @media (max-width: 768px) {
      .faq-section {
        padding: 5rem 1.5rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .section-subtitle {
        font-size: 1.05rem;
      }

      .faq-header {
        padding: 1.5rem;
      }

      .faq-question {
        font-size: 1.05rem;
      }

      .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
      }

      .faq-content {
        padding: 0 1.5rem;
      }

      .faq-item.active .faq-content {
        padding: 1.5rem;
      }
     .buybutton a {
      padding: 1rem 2.5rem;
      font-size: 1rem;
      width: 100%;
      max-width: 400px;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 1.75rem;
      }

      .faq-question {
        font-size: 1rem;
      }
      .buybutton a {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
      }
    }