/* ===========================================
   ADE – Benefits of Emax Dental Material
   Static layout – exact match to Figma
   =========================================== */

/* ── Tokens ──────────────────────────────── */
:root {
  --accent: #1b8976;
  /* teal */
  --ink: #333333;
  --muted: #454545;
  --line: #1b8976;
  /* center line colour */
}

/* ── Scroll Lock ─────────────────────────── */
body.lock-scroll {
  overflow: hidden !important;
  touch-action: none;
  /* Prevent scroll jumping if possible */
  position: relative;
  width: 100%;
}

/* ── Reset ───────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===========================================
   SECTION WRAPPER
   =========================================== */
.benefits-section {
  margin: 0 auto;
  padding: 140px 32px 96px;
  /* background: #ffffff;
  position: relative;
  z-index: 10; */
}

/* ===========================================
   HEADER
   =========================================== */
.benefits-header {
  text-align: center;
  margin-bottom: 56px;
}

.benefits-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.2px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.benefits-title::after {
  content: "";
  position: absolute;
  width: 25;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(
    92.19deg,
    rgba(27, 137, 118) -56.21,
    rgba(0, 213, 255, 0.6) 184.49%
  );
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefits-title:hover::after {
  width: 100%;
}

.benefits-title .dot {
  margin-right: 6px;
  font-size: 25px;
}

.benefits-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 1%;
  font-weight: 400;
  margin: 0 auto;
}

/* ===========================================
   TIMELINE (the whole two-column grid)
   =========================================== */
.timeline {
  position: relative;
  overflow: hidden;
}

.center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(55, 163, 135, 0) 0%,
    rgba(55, 163, 135, 0.4) 20%,
    var(--line) 45%,
    var(--line) 55%,
    rgba(55, 163, 135, 0.4) 80%,
    rgba(55, 163, 135, 0) 100%
  );
  height: 40vh;
  top: 0%;
  transform: translate(-50%, -50%);
  will-change: top, transform;
  transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  padding-bottom: 40px;
}

/* Stagger containers tightly by overlapping their empty space */
.benefit-row + .benefit-row {
  margin-top: -80px;
  position: relative;
}

/* Half-width placeholder for the empty side */
.benefit-empty {
  flex: 1;
}

/* ===========================================
   CARD
   =========================================== */
.benefit-card {
  flex: 1;
  padding: 32px 64px;
  opacity: 0.15;
  transform: scale(0.85);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

/* Headings */
.benefit-heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1.4;
  letter-spacing: 1%;
}

/* Body text */
.benefit-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
  font-weight: 400;
  letter-spacing: 1%;
}

.benefit-card .benefit-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 1550px) {
  .benefits-section {
    padding: 200px 24px 84px;
  }
}

@media (min-width: 2360px) {
  .benefits-section {
    padding: 280px 24px 84px !important;
  }
}

@media (max-width: 1280px) {
  .benefits-section {
    padding: 160px 24px 84px;
  }

  .benefits-header {
    margin-bottom: 48px;
    margin-top: 84px;
  }

  .benefits-title {
    font-size: 1.4rem;
  }

  .benefits-subtitle {
    font-size: 17px;
    line-height: 1.75;
  }

  .benefit-card {
    padding: 28px 40px;
  }

  .benefit-heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .benefit-desc {
    font-size: 16px;
    max-width: 380px;
  }

  .benefit-row + .benefit-row {
    margin-top: -60px;
  }
}

@media (max-width: 991px) {
  .benefits-section {
    padding: 40px 20px 72px;
  }

  .benefits-header {
    margin-bottom: 20px;
  }

  .benefits-title {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .benefits-subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .benefit-row {
    padding-bottom: 30px;
  }

  .benefit-row + .benefit-row {
    margin-top: -30px;
  }

  .benefit-card {
    padding: 24px 24px;
  }

  .benefit-heading {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .benefit-desc {
    font-size: 16px;
    line-height: 1.7;
    max-width: 320px;
  }

  .center-line {
    height: 34vh;
  }

  .contact-section {
    padding: 50px 0% 50px !important;
    background: #ffffff;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 70px 16px 56px;
  }

  .benefits-header {
    margin-bottom: 28px;
  }

  .benefits-title {
    line-height: 1.45;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: start;
  }

  .benefits-subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .timeline {
    overflow: visible;
  }

  .center-line {
    left: 24px;
    width: 1px;
    top: 30%;
    bottom: 0;
    transform: none;
    background: linear-gradient(
      to bottom,
      rgba(55, 163, 135, 0) 0%,
      rgba(55, 163, 135, 0.35) 15%,
      var(--line) 45%,
      var(--line) 55%,
      rgba(55, 163, 135, 0.35) 85%,
      rgba(55, 163, 135, 0) 100%
    );
  }

  .benefit-row,
  .benefit-row + .benefit-row {
    display: block;
    margin-top: 0;
    padding-bottom: 20px;
  }

  .benefit-empty {
    display: none;
  }

  .benefit-card {
    width: 100%;
    padding: 18px 16px 18px 48px;
    transform: none;
    opacity: 1;
    text-align: left;
  }

  .benefit-heading {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: left;
  }

  .benefit-desc,
  .benefit-card .benefit-desc {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .benefits-header {
    margin-bottom: 25px;
    margin-top: -20px;
  }

  .faq-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .faq-question {
    font-size: 18px !important;
  }

  .contact-logo img {
    width: 130px !important;
    height: 100px !important;
  }

  .benefits-section {
    padding: 180px 24px 40px;
  }
}

@media (max-width: 476px) {
  .gold-title {
    font-size: 16px !important;
  }

  .emax-material-title {
    padding: 0px 10px !important;
  }

  .emax-material-body {
    padding: 0px 10px !important;
  }

  .emax-material-body > p {
    font-size: 16px !important;
  }

  .emax-bg-text {
    top: 10% !important;
    font-size: clamp(40px, 30vw, 240px);
    font-weight: 900 !important;
    line-height: 1;
  }
}

@media (max-width: 406px) {
  .gold-title {
    font-size: 15px !important;
  }

  .faq-question {
    font-size: 16px !important;
  }

  .faq-icon {
    width: 16px !important;
    height: 16px !important;
  }

  .faq-answer-inner p {
    font-size: 14px !important;
  }
}

@media (max-width: 436px) {
  .contact-card {
    padding: 40px 10px 30px !important;
    border: 5px solid #f6f6f6 !important;
    border-radius: 30px !important;
  }

  .faq-section {
    padding: 0px 24px 5px !important;
  }

  .benefits-section {
    padding: 60px 24px 40px;
  }
  .contact-logo {
    top: -55px !important;
    width: 150px !important;
    height: 100px !important;
  }
}

/* ===========================================
   GOLD STANDARD SECTION
   =========================================== */
.gold-standard-section {
  margin: 0 auto;
  padding: 30px 32px 100px;
  background: #ffffff;
}

.gold-header {
  text-align: center;
  margin-bottom: 48px;
}

.gold-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 2%;
  max-width: 700px;
  margin: 0 auto;
}

.highlight-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
}

/* Draws the beautiful marker-brush stroke curved arc underneath */
.highlight-underline::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -6px;
  height: 16px;
  top: 35px;
  background: url("/static/images/Container.png") no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
}

.gold-subtitle {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1%;
  font-weight: 400;
  color: var(--muted);
  margin: 5px auto;
}

.gold-subheading {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-top: 48px;
  letter-spacing: 1%;
}

.gold-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.gold-card {
  background: url("/static/images/gold-card-bg-1.jpg") no-repeat center;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  border: 1.5px solid #e2e2e2;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gold-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 252px;
}

.gold-card-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(68, 68, 68, 1);
  font-weight: 400;
  letter-spacing: 1%;
  margin-bottom: 0px !important;
  margin-top: auto;
}

@media (max-width: 1280px) {
  .gold-standard-section {
    padding: 24px 24px 80px;
  }

  .gold-grid {
    max-width: 920px;
    gap: 20px;
  }

  .gold-card-title {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .gold-standard-section {
    padding: 18px 16px 52px;
  }

  .gold-header {
    margin-bottom: 28px;
  }

  .gold-title {
    font-size: 19px;
    line-height: 1.45;
    margin-bottom: 16px;
    max-width: 500px;
  }

  .highlight-underline {
    white-space: normal;
  }

  .highlight-underline::after {
    top: auto;
    bottom: -4px;
    height: 11px;
    left: -2px;
    right: -2px;
  }

  .gold-subtitle {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .gold-subheading {
    font-size: 18px;
    margin-top: 22px;
  }

  .gold-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gold-card {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .gold-card-title {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .gold-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  /* Gold Standard Mobile styles */
  .gold-header {
    margin-bottom: 32px;
  }

  .highlight-underline::after {
    height: 10px;
    bottom: -4px;
    left: -2px;
    right: -2px;
  }

  .gold-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .gold-subheading {
    margin-top: 32px;
    font-size: 0.95rem;
  }

  .gold-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gold-card {
    padding: 16px;
  }

  .gold-card-title {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .gold-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .gold-card-title {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.4;
    max-width: 450px;
  }
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section {
  margin: 0 auto;
  padding: 30px 32px 20px;
}

.faq-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 48px;
}

.faq-title .dot {
  margin-right: 6px;
  font-size: 25px !important;
}

.faq-item {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 0 24px;
  margin-bottom: 20px;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.faq-item:hover {
  background-color: #fff;
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.04),
    0 10px 10px rgba(0, 0, 0, 0.02);
  border-color: rgba(55, 163, 135, 0.2);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item.active {
  background-color: #fff;
  border-color: rgba(55, 163, 135, 0.4);
  box-shadow: 0 8px 24px rgba(55, 163, 135, 0.06);
}

.faq-item.active::before {
  transform: scaleY(1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1%;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  outline: none;
}

/* Pure CSS Plus (+) Icon */
.faq-icon {
  position: relative;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #000;
  border-radius: 2px;
}

/* Horizontal line of the + */
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical line of the + */
.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item:hover .faq-question {
  color: var(--accent);
}

.faq-item.active .faq-question {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding-bottom: 15px;
  padding-right: 50px;
}

.faq-answer-inner p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #444444;
  letter-spacing: 2%;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */

.form-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 80px;
}

.contact-section {
  padding: 50px 15.5% 50px;
  background: #ffffff;
}

.contact-card {
  margin: 64px auto 0;
  background: #ffffff;
  border: 10px solid #f6f6f6;
  border-radius: 50px;
  padding: 80px 80px 64px;
  position: relative;
}

.contact-logo {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 262px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.contact-logo img {
  /* Exact Figma logo image: 271x79 */
  width: 271px;
  height: 130px;
  object-fit: contain;
}

.contact-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.logo-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.3px;
}

.logo-brand sup {
  font-size: 0.55em;
  position: relative;
  top: -0.5em;
}

.logo-sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: #444;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #999;
  font-style: italic;
}

/* ── Form Layout ──────────────────────────── */
.contact-form {
  row-gap: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.form-group--full {
  width: 100%;
}

/* ── Labels ───────────────────────────────── */
.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #333;
}

/* ── Input Wrapper (icon + input side by side) */
.input-wrapper {
  display: flex;
  align-items: center;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.input-wrapper:focus-within {
  border-color: var(--accent);
}

.input-wrapper.error {
  border-color: #ff4d4d !important;
}

.input-wrapper.error:focus-within {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

.input-wrapper--textarea {
  align-items: flex-start;
}

/* ── Icon ─────────────────────────────────── */
.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  color: #1b8976;
}

.input-icon--top {
  padding-top: 14px;
  align-self: flex-start;
}

/* ── Fields ───────────────────────────────── */
.form-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  color: #333;
  padding: 14px 14px 14px 0;
}

.form-input::placeholder {
  color: #aaa;
}

.form-textarea {
  resize: none;
  min-height: 120px;
  padding: 14px 16px 14px 0;
  line-height: 1.6;
}

/* ── Consent Checkbox ─────────────────────── */
.form-consent {
  margin-top: 4px;
}

.consent-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Hide the native checkbox */
.consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom checkbox box */
.consent-custom {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.consent-label.error .consent-custom {
  border-color: #ff4d4d !important;
}

.consent-label.error:focus-within .consent-custom {
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

/* Checked state */
.consent-checkbox:checked + .consent-custom {
  background: #1b8976;
  border-color: #1b8976;
}

.consent-checkbox:checked + .consent-custom::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.consent-text {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}

/* ── Submit Button ────────────────────────── */
.form-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* .submit-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #1B8976;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 13px 52px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: 0.35s ease;
  line-height: 1;
 
}

.submit-btn span {
  display: block;
  transition: 0.35s ease;
}


.submit-btn::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DEEFF5;
  transition: 0.35s ease;
}


.submit-btn:hover span {
  transform: translateY(200%);
  
}

.submit-btn:hover::before {
  top: 0;
}


.submit-btn:hover {
  background: #156b5e;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
}

.submit-btn:active {
  transform: scale(0.98);
} */

.submit-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #1b8976;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid white;
  border-radius: 8px;
  padding: 13px 52px;
  cursor: pointer;
  letter-spacing: 0.5px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 10px rgba(27, 137, 118, 0.15);
  z-index: 1;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 0;
  padding-bottom: 140%;
  background: #00a3c8;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s cubic-bezier(0.21, 1.05, 0.43, 1.15);
  z-index: -1;
}

.submit-btn:hover {
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(27, 137, 118, 0.4);
  transform: translateY(-2px);
}

.submit-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(27, 137, 118, 0.2);
}

.emax-swal-popup {
  border-radius: 12px !important;
  border: 1px solid #e2e2e2 !important;
}

.emax-swal-title {
  color: #1b8976 !important;
  font-weight: 700 !important;
}

.e-max-swal-btn {
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

/* Tablet (Under 900px) */

/* Mobile (Under 640px) */
/* @media (max-width: 640px) {
  .benefits-title {
    font-size: 1.35rem;
  }

  .benefits-subtitle {
    font-size: 0.85rem;
  }

 
  .center-line {
    left: 24px;
   
  }

 
  .benefit-row {
    flex-direction: column;
    padding-bottom: 0px;
  }

  .benefit-row+.benefit-row {
    margin-top: 0;
  }

 
  .benefit-empty {
    display: none;
  }
  
  .benefit-card.left,
  .benefit-card.right {
    padding: 24px 16px 24px 56px;
    text-align: left;
  }

 
  .benefit-card.left .benefit-desc,
  .benefit-card.right .benefit-desc {
    margin: 0;
    max-width: 100%;
  }

  
  .benefit-heading {
    margin-bottom: 10px;
  }

  .faq-section {
    padding: 40px 24px 80px;
  }

  .faq-title {
    font-size: 1.35rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 24px 0;
  }

  .faq-answer-inner p {
    font-size: 0.82rem;
  }


  .contact-section {
    padding: 32px 16px 64px;
  }

  .contact-section {
    padding: 72px 16px 64px;
  }

  .contact-card {
    padding: 48px 20px 40px !important;
    border-radius: 24px;
    border-width: 5px;
    margin-top: 44px;
  }

  .contact-logo {
    width: 280px;
    height: 80px;
    top: -40px;
  }

  .contact-logo img {
    width: 180px;
    height: 52px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 16px;
  }
} */
