
  body {
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  /* FAQ Section Styles */
  .faq-section {
    background: linear-gradient(135deg, #5f47eb 0%, #30a7e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  /* Main content area with two columns */
  .faq-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  /* Left Column Styles */
  .faq-left {
    flex: 1 1 300px;
  }

  .faq-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
  }

  .faq-left p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .contact-btn:hover {
    background-color: linear-gradient(135deg, #5f47eb 0%, #30a7e8 100%);
    transform: translateY(-2px);
  }

  .whatsapp-icon {
    margin-right: 10px;
  }

  /* Right Column Styles */
  .faq-right {
    flex: 1 1 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  .faq-question {
    padding: 20px 25px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 25px;
    opacity: 0;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
    opacity: 1;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .faq-section {
      padding: 60px 0;
    }

    .faq-content {
      flex-direction: column;
    }

    .faq-left h2 {
      font-size: 32px;
    }

    .faq-left {
      margin-bottom: 20px;
    }

    .faq-right {
      width: 100%;
    }

    .faq-question {
      padding: 15px 20px;
    }
  }