:root {
  --template-primary: #ff6600;
  --template-primary-dark: #d94d00;
  --template-dark: #111;
  --template-gray: #555;
  --template-light: #fafafa;
  --template-white: #fff;
  --template-border: #d9d9d9;
  --template-radius: 12px;
  --template-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  background: var(--template-light);
  color: var(--template-dark);
  line-height: 1.8;
}

.content h2,
.content h3,
.form-box h3 {
  font-family: var(--rr-ff-heading);
}

.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  border-radius: 0;
  box-shadow: none;
}

.content {
  flex: 1 1 70%;
  padding: 40px 50px;
  border-right: 2px solid #bdbbbb;
}

.content h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--template-dark);
}

.content h3 {
  font-size: 2.3rem;
  color: var(--template-primary-dark);
  margin: 20px 0 5px;
}

.content p {
  color: var(--template-gray);
  margin-bottom: 18px;
  text-align: justify;
}

.content ul {
  list-style: none;
  padding-left: 0;
}

.content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.content li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--template-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.6);
}

.form-box {
  flex: 1 1 30%;
  padding: 40px;
}

.form-box h3 {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 20px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--template-border);
  border-radius: 8px;
  font-size: 1.6rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: var(--template-primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
  outline: none;
}

.form-box button {
  background: var(--template-primary);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-box button:hover {
  background: var(--template-primary-dark);
  transform: translateY(-2px);
}

.booth-service-links {
  margin-top: 32px;
  padding: 12px 20px;
  background: #fff;
  border-left: 4px solid var(--rr-theme-primary);
  border-top: 1px solid var(--template-border);
  border-right: 1px solid var(--template-border);
  border-bottom: 1px solid var(--template-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.booth-service-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.booth-service-links__title {
  margin: 4px 0 10px;
  color: #000;
  font-family: var(--rr-ff-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.booth-service-links li+li {
  border-top: 1px solid #ececec;
}

.booth-service-links a {
  position: relative;
  display: block;
  padding: 13px 30px 13px 0;
  color: var(--rr-heading-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.booth-service-links a::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--rr-theme-primary);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.booth-service-links a:hover,
.booth-service-links a:focus-visible {
  padding-left: 7px;
  color: var(--rr-theme-primary);
}

.booth-service-links a:hover::after,
.booth-service-links a:focus-visible::after {
  transform: translate(4px, -50%);
}

@media (max-width: 992px) {
  .section {
    flex-direction: column;
    margin-top: -40px;
  }

  .content,
  .form-box {
    width: 100%;
    padding: 40px 25px;
    border: none;
  }

  .booth-service-links {
    margin-top: 28px;
  }

}

@media (max-width: 575px) {
  .booth-service-links {
    padding: 8px 16px;
  }

  .booth-service-links a {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 16px;
  }
}

.modular-faq {
  margin-top: 30px;
}

.modular-faq > h3 {
  margin-bottom: 20px;
}

.modular-faq .faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fafafa;
  transition: box-shadow 0.3s ease;
}

.modular-faq .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.modular-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modular-faq .faq-question:hover {
  background: #f7f2eb;
}

.modular-faq .faq-question h3 {
  margin: 0;
  color: #333;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.modular-faq .faq-icon {
  flex: 0 0 auto;
  color: var(--rr-theme-primary);
  transition: transform 0.3s ease;
}

.modular-faq .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.modular-faq .faq-answer {
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.6s ease, padding 0.3s ease;
}

.modular-faq .faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.modular-faq .faq-item.active .faq-answer {
  padding: 15px 20px 20px;
}

@media (max-width: 767px) {
  .modular-faq .faq-question {
    gap: 14px;
    padding: 15px;
  }

  .modular-faq .faq-question h3 {
    font-size: 1.55rem;
  }

  .modular-faq .faq-answer {
    padding-right: 15px;
    padding-left: 15px;
  }

  .modular-faq .faq-item.active .faq-answer {
    padding: 13px 15px 17px;
  }
}
