.faq-contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.combined-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* FAQ Стили (Темные) */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 8px;
  border-left: 4px solid rgba(255, 255, 255, 0.05);

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.05);
  border-left-color: var(--brand-color);
  box-shadow: -5px 0 20px rgba(255, 204, 0, 0.1);
  background: #1a1a1a;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text-main);
  transition: 0.3s;
}

.faq-plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background-color: var(--text-main);
  transition: 0.3s;
}
.faq-plus::before {
  width: 100%;
  height: 2px;
  top: 6px;
  left: 0;
}
.faq-plus::after {
  width: 2px;
  height: 100%;
  left: 6px;
  top: 0;
}

.faq-item:hover {
  border-color: var(--brand-color);
}

.faq-item.active .faq-question {
  color: var(--brand-color);
}
.faq-item.active .faq-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.active .faq-plus::before {
  background-color: var(--brand-color);
}

/* faq.css */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 25px 20px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.faq-answer-content p {
  margin: 0;
  padding-bottom: 10px; 
}

.faq-answer-content p:last-child {
  padding-bottom: 0; 
}

.faq-answer-content strong {
  color: #fff;
}
