

    /* ================ accordion style ==================== */
       .accordion {
      width: 100%;
      /* max-width: 600px; */
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin-bottom: 60px;
    }

    .accordion-item {
      border-bottom: 1px solid #eee;
    }

    .accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      padding: 18px 22px;
      font-size: 17px;
      font-weight: 600;
      color: #2c3e50;
      background: #fff;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .accordion-header:hover {
      background: #f0f4ff;
      color: #3b2f04;
    }

    .accordion-header span.num {
      background: linear-gradient(135deg, #975830, #3b2f04);
      color: #fff;
      font-weight: bold;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 12px;
      font-size: 14px;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    }

    .accordion-header .title {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .accordion-header .arrow {
      font-size: 14px;
      transition: transform 0.3s ease;
      color: #666;
    }

    .accordion-header.active .arrow {
      transform: rotate(90deg);
      color: #3b2f04;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 22px 0 60px;
      background: #fafafa;
      color: #555;
      font-size: 15px;
      line-height: 1.6;
      transition: max-height 0.5s ease, padding 0.3s ease;
    }

    .accordion-content.open {
      padding: 15px 22px 15px 60px;
      max-height: max-content;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .accordion-header {
        font-size: 15px;
        padding: 15px 18px;
      }
      .accordion-content {
        font-size: 14px;
      }
    }

    .accordion-header.active {
  background: #fdf6f0;   /* light brown background (optional) */
  color: #975830;        /* brown text */
}


.number-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* vertical center */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background: #3b2f04;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  font-size: 0.9rem;
}
.faq-icon p {
    position: relative;
    padding-left: 40px !important;
}
.faq-icon p i {
    position: absolute;
    top: 6px;
    left: 10px !important;
    color: #6d5809;
}

/* ================ whatsapp ============= */
 .whatsapp-section-highlight {
    text-align: center;
    padding: 30px 20px;
  }

  /* Highlighted animated text with custom palette */
  .highlight-text-1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg,
        #975830,
        #ceaa3a,
        #211b01,
        #975830);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    margin-bottom: 30px;
    display: inline-block;
    line-height: 1.1
  }

  @keyframes shine {
    0% {
      background-position: 0% 50%;
    }

    100% {
      background-position: 300% 50%;
    }
  }

  /* WhatsApp button */
  .whatsapp-btn-highlight {
    display: block;
    /* width: 40%; */
    width: max-content;
    min-width: 320px;
    background-color: #25D366;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin: auto;
    text-transform: none;
  }

  .whatsapp-btn-highlight:hover {
    background-color: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    text-transform: none;
  }

  a.whatsapp-btn-highlight:hover {
    background-color: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    text-transform: none;
  }