.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.solution-tags span {
  background-color: rgba(253, 239, 233, 1);
  color: rgba(236, 93, 36, 1);
  border: 1px solid rgba(236, 93, 36, 0.5);
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}





.faq-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Arial', sans-serif;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.faq-left {
  flex: 1 1 35%;
}

.faq-left h2 {
  font-size: 48px;
  line-height: 1.3;
  color: rgba(81, 37, 32, 1);
  margin-bottom: 20px;
}

.faq-left h2 span {
  color: rgba(236, 93, 36, 1);
}

.faq-left p {
  color:rgba(74, 63, 62, 1);
  font-size: 16px;
}

.faq-right {
  flex: 1 1 50%;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 18px;
  color: rgba(81, 37, 32, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  color: 16px;
  color: rgba(74, 63, 62, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust based on expected content height */
  opacity: 1;
}


.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  font-size: 22px;
}
.faq-toggle{
    font-size: 22px;
}


  .system-components li {
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    color: #f2f2f2;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
  }



  .system-components li img.icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
