/* ABOUT HERO SECTION */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 8%;
  min-height: 10vh;
  background: linear-gradient(180deg, #4a2ccf 0%, #1b0b75 100%);
  color: #fff;
  border-radius: 0 0 80px 80px;
}

.about-hero-content {
  max-width: 700px;
}

.about-hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.breadcrumb {
  font-size: 0.95rem;
  color: #dcdcdc;
  margin-top: 8px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffd700;
}

.breadcrumb span {
  margin: 0 6px;
  color: #b3b3b3;
}

/* ABOUT CONTENT */
.about-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px 80px;
  font-family: "Rubik", Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.about-container h2,
.about-container h3 {
  color: var(--main-color);
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-container p,
.about-container li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.about-container ul {
  margin-left: 20px;
}

/* ABOUT CALL-TO-ACTION SECTION */
.about-cta {
  background: #f9f9ff;
  border-left: 5px solid var(--main-color);
  padding: 25px 20px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.about-cta h3 {
  color: var(--main-color);
  margin-bottom: 10px;
  font-weight: 700;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 2rem;
  }
  .about-hero {
    padding: 20px 6%;
  }
}

@media (max-width: 600px) {
  .about-hero-title {
    font-size: 1.5rem;
  }
  .breadcrumb {
    font-size: 0.8rem;
  }
}


    /*---faq section---*/
            .faq-section {
      max-width: 900px;
      margin: 20px auto;
      padding: 0 20px;
    }
    .faq-section h3{
      font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: var(--main-color);
    margin-bottom: 10px;
    text-align: center;
    }
    .faq-section h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
    }

    .faq-item {
      border-top: 1px solid #ddd;
      padding: 20px 0;
    }

    .faq-item:last-child {
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-size: 1.2rem;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: var(--main-color);
    }

    .faq-icon {
      font-size: 1.4rem;
      font-weight: 600;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .faq-answer p {
      padding-top: 10px;
      color: #555;
      font-size: 0.95rem;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* Responsive */
    @media (max-width: 600px) {
      .faq-section {
        margin: 10px auto;
      }
      .faq-section h2 {
        font-size: 1.5rem
      }
      .faq-question {
        font-size: 1rem;
      }
      .faq-answer p{
        font-size: 0.9rem;
      }
    }




    /*  terms and codition code */
      :root {
      --main-color: #1c2ac4;
    }

 /* TERMS HERO SECTION */
    .terms-hero {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 30px 8%;
      min-height: 10vh;
      background: linear-gradient(180deg, #4a2ccf 0%, #1b0b75 100%);
      color: #fff;
      border-radius: 0 0 80px 80px;
    }

    .terms-hero-content {
      max-width: 700px;
    }

    .terms-hero-title {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .breadcrumb {
      font-size: 0.95rem;
      color: #dcdcdc;
      margin-top: 8px;
    }

    .breadcrumb a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
      color: #ffd700;
    }

    .breadcrumb span {
      margin: 0 6px;
      color: #b3b3b3;
    }

    /* TERMS CONTENT */
    .terms-container {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px 80px;
      line-height: 1.6;
      color: #333;
      background-color: #fff;
    }

    .terms-container h2,
    .terms-container h3 {
      color: var(--main-color);
      margin-top: 30px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .terms-container p,
    .terms-container li {
      margin-bottom: 12px;
      font-size: 1rem;
    }

    .terms-container ul {
      margin-left: 20px;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 992px) {
      .terms-hero-title {
        font-size: 2rem;
      }
      .terms-hero {
        /* min-height: 60vh; */
        padding: 20px 6%;
      }
    }

    @media (max-width: 600px) {
      .terms-hero-title {
        font-size: 1.5rem;
      }
      .breadcrumb {
      font-size: 0.80rem;
      
    }
    }