/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.industry-title-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.faq-containers {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.faq-wrapper {
  width: 100%;
  border-radius: 10px;
}
.faq-container {
  overflow-x: hidden;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

/* Accordion Item Styles */
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  overflow: hidden;
  border-radius: 0px;
  /* border-bottom: 1.5px solid rgba(126, 126, 126, 0.057); */
}

/* The Clickable Button */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-trigger:hover {
  background-color: #f9f9f9;
}

.faq-trigger.active {
  background-color: #f8f9fa;
  color: var(--secondary-color); /* Turns text blue when active */
}

/* Icon Animation */
.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

/* Rotate the arrow 180 degrees when active */
.faq-trigger.active .faq-icon {
  transform: rotate(180deg);
}

/* The Content Area (Hidden by default) */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: #fff;
}

.faq-text {
  padding: 20px 20px 20px 20px;
  color: #666;
  line-height: 1.6;
}

.faq-bottom {
  /* padding: 10px; */
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 700px) {
  .faq-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .faq-bottom-button {
    margin: 0 auto;
  }
}
