.elementor-2776 .elementor-element.elementor-element-d66df47{--display:flex;--margin-top:46px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2776 .elementor-element.elementor-element-10cd07a{padding:-96px -96px -96px -96px;}body.elementor-page-2776:not(.elementor-motion-effects-element-type-background), body.elementor-page-2776 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-woostify_color_2 );}/* Start custom CSS for html, class: .elementor-element-10cd07a *//* Narrower centered container */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.icon-container {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: #ff6600;
  margin-bottom: 1rem;
}

.title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(to right, #ff6f00, #ff7d1a, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #9ca3af;
  font-size: 0.95rem;
  max-width: 26rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 0.8rem;
  background: linear-gradient(to bottom right, #000, rgba(255, 102, 0, 0.03));
  transition: border-color 0.25s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(255, 102, 0, 0.5);
}

.faq-button {
  width: 100%;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-button h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  padding-right: 0.5rem;
}

.chevron {
  color: #ff6600;
  transition: transform 0.25s ease;
}

/* Open State */
.faq-item.active .chevron {
  transform: rotate(180deg);
}

/* FAQ Content */
/* FAQ Content */
.faq-content {
  display: none;
  padding: 0 1rem 0.6rem; /* reduced bottom padding */
  margin-top: -0.25rem;   /* brings answer closer to question */
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.45;
}

.faq-item.active .faq-content {
  display: block;
}


/* Footer */
.faq-footer {
  margin-top: 2rem;
  padding: 1.25rem;
  text-align: center;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 102, 0, 0.3);
  background: rgba(255, 102, 0, 0.1)
}

.faq-footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.faq-footer p {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #ff6600;
  color: white;
  border-radius: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: none; /* no hover transitions */
  margin-bottom: 1rem;
}

/* Disable color/background change on hover */
.contact-btn:hover {
  background-color: #ff6600;
  color: white;
}

/* FAQ buttons — no hover color change */
.faq-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent !important;
  border: none;
  outline: none;
  box-shadow: none;
  color: white;
}

/* Prevent hover text color change */
.faq-button:hover {
  color: white;
  background-color: transparent !important;
}

/* Remove focus/active highlight and persistent background */
.faq-button:focus,
.faq-button:active,
.faq-button:focus-visible {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  color: white;
}

/* Keep hover only changing border color */
.faq-item:hover {
  border-color: rgba(255, 111, 0, 0.5);
}

/* make sure box sizing is sane */
*, *::before, *::after { box-sizing: border-box; }

/* FAQ chevron - start unrotated */
.chevron {
  color: #ff6600;
  transition: transform 0.25s ease;
  transform: rotate(0deg); /* ensure default */
}

/* Show rotated chevron when active */
.faq-item.active .chevron {
  transform: rotate(180deg);
}

/* FAQ content hidden by default (smooth, predictable) */
.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1rem; /* keep horizontal padding consistent */
  transition:
    max-height 0.28s ease,
    opacity 0.2s ease 0s,
    padding 0.22s ease;
}

/* Visible state (enough max-height to fit content) */
.faq-item.active .faq-content {
  max-height: 600px; /* large enough for your longest answers */
  opacity: 1;
  padding: 0.5rem 1rem 0.75rem; /* tighter spacing when open */
}/* End custom CSS */