
.dd-faq-page {
  color: #000000;
}

.dd-faq-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.dd-faq-hero {
  max-width: 760px;
  margin-bottom: 46px;
}

.dd-faq-label,
.dd-faq-small-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f56d0e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.dd-faq-hero h1 {
  margin: 0 0 16px;
  color: #000000;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
}

.dd-faq-hero p {
  margin: 0;
  color: #000000;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
}

.dd-faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.dd-faq-sidebar {
  padding: 32px;
  background: #f5f5f5;
  border-top: 4px solid #098e96;
}

.dd-faq-sidebar h2 {
  margin: 0 0 14px;
  color: #000000;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.dd-faq-sidebar p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.75;
}

.dd-faq-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f5f5f5;
}

.dd-faq-contact h3 {
  margin: 0 0 10px;
  color: #000000;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.dd-faq-contact p {
  margin: 0 0 20px;
}

.dd-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  color: #000000;
  background: #f56d0e;
  border: 2px solid #f56d0e;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: 0.25s ease;
}

.dd-faq-btn:hover,
.dd-faq-btn:focus {
  color: #f56d0e;
  background: #000000;
  border-color: #000000;
}

.dd-faq-accordion {
  display: grid;
  gap: 12px;
}

.dd-faq-item {
  background: #f5f5f5;
  border-left: 4px solid #098e96;
  overflow: hidden;
}

.dd-faq-item.is-open {
  border-left-color: #f56d0e;
}

.dd-faq-question {
  position: relative;
  width: 100%;
  display: block;
  padding: 22px 64px 22px 24px;
  color: #000000;
  background: #f5f5f5;
  border: 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.dd-faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%) rotate(0deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #098e96;
  border: 2px solid #098e96;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.dd-faq-item.is-open .dd-faq-question::after {
  content: "–";
  color: #000000;
  background: #f56d0e;
  border-color: #f56d0e;
  transform: translateY(-50%) rotate(180deg);
}

.dd-faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.34s ease, opacity 0.26s ease, transform 0.26s ease;
}

.dd-faq-item.is-open .dd-faq-panel {
  opacity: 1;
  transform: translateY(0);
}

.dd-faq-answer {
  padding: 0 24px 24px;
}

.dd-faq-answer p {
  margin: 0;
  padding-top: 16px;
  color: #000000;
  border-top: 1px solid #098e96;
  font-size: 16px;
  line-height: 1.75;
}

.dd-faq-answer p + p {
  border-top: 0;
  padding-top: 12px;
}

.dd-faq-answer a {
  color: #098e96;
  font-weight: 800;
  text-decoration: none;
}

.dd-faq-answer a:hover,
.dd-faq-answer a:focus {
  color: #f56d0e;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .dd-faq-layout {
    grid-template-columns: 1fr;
  }

  .dd-faq-hero {
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .dd-faq-sidebar {
    padding: 24px;
  }

  .dd-faq-question {
    padding: 20px 58px 20px 20px;
  }

  .dd-faq-question::after {
    right: 18px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .dd-faq-answer {
    padding: 0 20px 22px;
  }

  .dd-faq-btn {
    width: 100%;
  }
}
