@import url("../sections/process.1ac5e75a5f81.css");
@import url("../../includes/contactnow.687382cc432e.css");

section {
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.main-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
}

.breadcrum {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #666;
}

.breadcrum a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrum a:hover {
  color: var(--secondary-color-hover);
  text-decoration: underline;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
}

.intro-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.intro-text a:hover {
  color: var(--secondary-color-hover);
  text-decoration: underline;
}

.faq-main {
  padding: 3rem 0;
}

.faq-intro {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-categories {
  margin-bottom: 3rem;
}

.section-title {
  position: relative;
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
}

.section-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.category-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #f5f6f7;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-link:hover {
  background-color: var(--secondary-color);
  color: white;
}

.faq-category-section {
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.faq-category-section:target {
  scroll-margin-top: 100px;
}

.faq-list {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin: 0;
  padding: 1.2rem;
  background-color: #f8f9fa;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-item h3:hover {
  background-color: #f0f2f5;
}

/* SVG Arrow */
.faq-item h3:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E4F83' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.faq-item.active h3 {
  border-bottom: 1px solid #d0e5f5;
  background-color: #e8f4fd;
}

.faq-item.active h3:after {
  transform: rotate(180deg);
}

.faq-item .acceptedAnswer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background-color: white;
}

.faq-item.active .acceptedAnswer {
  max-height: 1000px;
  padding: 1.2rem;
}

.faq-item .text p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .faq-item h3 {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-item.active .acceptedAnswer {
    padding: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .categories-nav {
    flex-direction: column;
  }

  .category-link {
    width: 100%;
    text-align: center;
  }
}
