:root {
  --mm-cream: #FFF0D4;
  --mm-red: #DD001D;
  --mm-text: #000000;
  --mm-text-sec: #3F3F3F;
  --letter-spacing: 0.005;
  --line-height: 1.4;
}

body {
  font-family: 'Anek Latin', sans-serif;
  color: var(--mm-text);
  background: #fff;
}

.mm-h1,
.mm-h2 {
  font-size: 40px;

}

.mm-red {
  color: var(--mm-red) !important;
}

.mm-mi {
  font-size: 20px;
  vertical-align: middle;
}

.mm-mi-muted {
  font-size: 20px;
  color: #888;
}

.mm-link {
  color: var(--mm-red);
  text-decoration: underline;
}

.mm-btn {
  border-radius: 100px;
  padding: 08px 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mm-btn-primary {
  background: var(--mm-red);
  border: 1px solid var(--mm-red);
  color: #fff;
  font-weight: 400;
  font-size: 19px
}

.mm-btn-primary:hover {
  background: var(--mm-red);
  border-color: var(--mm-red);
  color: #fff;
}

.mm-btn-outline {
  background: transparent;
  border: 1px solid var(--mm-red);
  color: var(--mm-red);
  font-size: 20px;
  font-weight: 500;
}

.mm-btn-outline:hover {
  background: rgba(215, 25, 32, .08);
  color: var(--mm-red);
}

.mm-logo {
  height: 25px;        /* very small logo */
  width: auto;
  vertical-align: middle;
}


/* =========================
   1) HERO (mm-hero)
========================= */
.mm-hero {
  background: var(--mm-cream);
  padding: 50px 0 0 0;
  border-radius: 24px;
  margin: 10px;
}

.mm-hero .mm-h1 {
  font-weight: 500;
  margin: 0 0 10px;
  font-size: 40px;
}

.mm-hero .mm-sub {
  color: #3F3F3F;
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 300;
}

.mm-hero .mm-offered {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3F3F3F;
  font-size: 24px;
  font-weight: 300;
  margin: 10px 0 16px;
}

.bolt {
  color: var(--mm-red);
}

.mm-hero .mm-hero-left {
  padding: 22px;
}

/* Make hero a stacking context */
.mm-hero {
  position: relative;
}

/* Text + form stay ABOVE */
.mm-hero-front {
  z-index: 3;
}

.mm-hero {
  position: relative;
  min-height: 520px;
}

.mm-hero-mid {
  position: relative;
  z-index: 1;
}

/* bottom-center + scale */
.mm-hero-mid-img {
  position: absolute;
  left: -20%;
  bottom: 0;

  transform: translateX(-50%) scale(3);
  transform-origin: bottom center;

  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.mm-hero-overlay {
  background: rgba(255, 243, 222, .75);
  border-radius: 0;
}

/* Mobile tuning */
@media (max-width: 991.98px) {
  .mm-hero-bg {
    background-position: center center;
    padding: 28px 0;
  }

  .mm-hero-mid-img {
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(1);
    transform-origin: bottom center;

    max-width: 100%;
    height: auto;
    pointer-events: none;
  }

  .mm-qr img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
}

.mm-qr-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.mm-qr {
  width: 320px;
  height: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.mm-qr img {
  width: 80%;
  height: auto;
  display: block;
  object-fit: contain;
}


@media (max-width: 991.98px) {
  .mm-qr img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
}

.mm-hero .mm-badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(246, 211, 154, .55);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
}

.mm-hero .mm-form {
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.mm-hero .mm-form-title {
  font-weight: 400;
  margin: 0;
  font-size: 33px;
  color: #212529;
}

.mm-hero .mm-form-sub {
  font-weight: 400;
  color: #DD001D;
  font-size: 24px;
}


.input-group {
  border: 0px solid #C7C7C7;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  margin: 10px 0;
}

.lead-prefix {
  border: 0 !important;
  border-right: 1px solid #C7C7C7 !important;
  background: #fff !important;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555555;
  font-weight: 500;
}

/* Input: remove its own borders so no double lines */
.mm-inputs {
  border: 0 !important;
  padding: 10px 12px;
  box-shadow: none !important;
}

/* Focus */
.mm-inputs:focus {
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
}

.mm-hero .mm-legal {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
}

/* Responsive for HERO */
@media (max-width: 991.98px) {
  .mm-hero {
    padding: 28px 0;
  }

  .mm-hero .mm-hero-mid img {
    max-height: 320px;
  }
}

@media (max-width: 575.98px) {
  .mm-hero .mm-h1 {
    font-size: 28px;
  }
}

/* =========================
   2) PREMIUM FEATURES (mm-premium)
========================= */
.mm-premium {
  padding: 40px 10px;
  background: #fff;
}

.mm-premium .mm-kicker {
  font-weight: 500;
  font-size: 16px;
  color: var(--mm-red);
  margin-bottom: 8px;
  letter-spacing: 2.4px;
}

.mm-premium .mm-h2 {
  font-weight: 500;
  margin: 0 0 10px;
  font-size: 40px;
}

.mm-premium .mm-sub {
  color: #3F3F3F;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 300;
}

.mm-premium .mm-pill-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mm-premium .mm-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF0D4;
  border: 1px solid #FFBE43;
  border-radius: 999px;
  padding: 8px 20px;
  text-decoration: none;
  color: #3F3F3F;
}

.mm-premium .mm-pill-ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #3F3F3F;
}

.mm-premium .mm-pill-txt {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
}

.mm-premium .mm-pill-go {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--mm-red);
  color: #fff;
}

.mm-premium .mm-note {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #FBF7F6;
  border-radius: 18px;
  padding: 12px 18px;
  margin-top: 18px;
}

.mm-note-text {
  color: #3F3F3F;
  font-size: 26px;
  font-weight: 500;
}

.mm-premium .mm-note-ic {
  color: #FFBE43;
  font-size: 44px;
}

.mm-premium-right {
  position: relative;
  background-image: url("../images/Rectangle 37.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 550px auto;

}

.mm-pill-ic {
  width: 44px;
  /* container size */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-pill-ic img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.mm-premium .mm-tilt {

  max-width: 500px;
}

@media (max-width: 767.98px) {
  .mm-premium .mm-tilt {
    max-width: 360px;
    /* control width */
    margin: 0 auto;
    /* center image */
    display: block;
  }

  .mm-premium {
    overflow-x: hidden;
  }

  .mm-premium-right {

    background-size: 330px auto;
  }
}

@media (max-width: 991.98px) {
  .mm-premium .mm-tilt {
    transform: rotate(0deg);
  }
}

@media (max-width: 575.98px) {
  .mm-premium .mm-h2 {
    font-size: 28px;
  }
}

/* =========================
   3) PORTFOLIO OPTIMIZER (mm-two-col #sec3)
========================= */
#sec3.mm-two-col {
  padding: 40px 10px;
  background: var(--mm-cream);
  position: relative;
  background-image: url("../images/Rectangle 32.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 650px auto;
  padding-top: 80px;
}

@media (max-width: 767.98px) {
  #sec3.mm-two-col {
    background-size: 430px auto;
    background-position: left top;
  }
}

#sec3 .mm-kicker {
  font-weight: 500;
  font-size: 16px;
  color: var(--mm-red);
  margin-bottom: 8px;
  letter-spacing: 2.4px;
}

#sec3 .mm-h2 {
  font-weight: 500;
  margin: 0 0 10px;
}

#sec3 .mm-sub {
  color: #3F3F3F;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 300;
}

/* =========================
  TWO COL – CAROUSEL
========================= */

.mm-slider-wrap {
  width: 100%;
}

#sec3 .mm-slider-wrap .carousel-inner {
  overflow: hidden;
  /* ensures image never overflows */
}

#sec3 .mm-carousel-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Indicators positioned below */
#sec3 .mm-slider-wrap .carousel-indicators {
  position: static;
  margin-top: 16px;
}

/* Clean indicator style (slider bar feel) */
#sec3 .mm-slider-wrap .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 8px;
  border-radius: 0px;
  background-color: #dd001d1a;
  margin: 0 4px;
}

#sec3 .mm-slider-wrap .carousel-indicators .active {
  background-color: #DD001D;
}

#sec3 .mm-step {
  background: #fff;
  border: 1px solid #FFBE43;
  border-radius: 999px;
  padding: 12px 14px;
  display: flex;
  font-size: 20px;
  color: #3F3F3F;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

#sec3 .mm-step-ic {
  width: 44px;
  /* container size */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec3 .mm-step-ic img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.mm-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* space between icon & text */
}

.mm-btn-ic {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
}

#sec3 .mm-footnote {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 300;
  color: #282727;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* =========================
   4) PORTFOLIO ANALYSER (mm-two-col #sec4)
========================= */
#sec4.mm-two-col {
  padding: 40px 10px;
  background: #fff;
  position: relative;
  background-image: url("../images/Rectangle 37.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 600px auto;


}

@media (max-width: 767.98px) {
  #sec4.mm-two-col {
    background-size: 330px auto;
    overflow-x: hidden;
  }
}

#sec4 .mm-kicker {
  font-weight: 500;
  font-size: 16px;
  color: var(--mm-red);
  margin-bottom: 8px;
  letter-spacing: 2.4px;
}

#sec4 .mm-h2 {
  font-weight: 500;
  margin: 0 0 10px;
}

#sec4 .mm-sub {
  color: #3F3F3F;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 300;
}

/* =========================
  TWO COL – CAROUSEL
========================= */

#sec4 .mm-slider-wrap {
  width: 100%;
}

#sec4 .mm-slider-wrap .carousel-inner {
  overflow: hidden;
  /* ensures image never overflows */
}

#sec4 .mm-carousel-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Indicators positioned below */
#sec4 .mm-slider-wrap .carousel-indicators {
  position: static;
  margin-top: 16px;
}

/* Clean indicator style (slider bar feel) */
#sec4 .mm-slider-wrap .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 8px;
  border-radius: 0px;
  background-color: #dd001d1a;
  margin: 0 4px;
}

#sec4 .mm-slider-wrap .carousel-indicators .active {
  background-color: #DD001D;
}

#sec4 .mm-step {
  background: #FFF0D4;
  width: 492px;
  height: 70px;
  border: 1px solid #FFBE43;
  border-radius: 999px;
  padding: 8px 20px;
  text-decoration: none;
  color: #3F3F3F;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-top: 10px;
  white-space: normal;
}

@media (max-width: 767.98px) {
  #sec4 .mm-step {
    width: 100%;
    /* 🔥 fluid width */
    max-width: 100%;
    height: auto;
    align-items: flex-start;


    font-size: 20px;


    border-radius: 16px;
    /* pill → card feel on mobile */
    flex-wrap: wrap;
    /* 🔥 allow text wrapping */
  }
}

#sec4 .mm-btn-ic {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
}


#sec4 .mm-step-ic {
  color: var(--mm-red);
  font-size: 30px;
}

#sec4 .mm-note {
  display: flex;
  gap: 12px;
  margin: 50px 0;
  align-items: center;
  background: #FBF7F6;
  border-radius: 18px;
  padding: 12px 18px;
}

#sec4 .mm-note-ic {
  color: #FFBE43;
  font-size: 44px;
}

#sec4 .mm-note-text {
  color: #3F3F3F;
  font-size: 26px;
  font-weight: 500;
}

#sec4 .mm-footnote {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 300;
  color: #282727;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* =========================
   5) SWITCHER REPORT (mm-two-col #sec5)
========================= */

#sec5.mm-two-col {
  padding: 40px 10px;
  background: var(--mm-cream);
  position: relative;
  background-image: url("../images/Rectangle 32.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 650px auto;
  padding-top: 80px;
}

@media (max-width: 767.98px) {
  #sec5.mm-two-col {
    background-size: 430px auto;
    background-position: left top;
  }
}

#sec5 .col-lg-7 {
  display: flex;
  justify-content: center;
}

#sec5 .mm-kicker {
  font-weight: 500;
  font-size: 16px;
  color: var(--mm-red);
  margin-bottom: 8px;
  letter-spacing: 2.4px;
}

#sec5 .mm-h2 {
  font-weight: 500;
  margin: 0 0 10px;
}

#sec5 .mm-sub {
  color: #3F3F3F;
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 300;
}

#sec5 .mm-step {
  background: #fff;
  border: 1px solid #FFBE43;
  border-radius: 999px;
  padding: 12px 14px;
  display: flex;
  font-size: 20px;
  color: #3F3F3F;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

#sec5 .mm-step-ic {
  width: 44px;
  /* container size */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec5 .mm-step-ic img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

#sec5 .mm-btn-ic {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: inline-block;
}

#sec5 .mm-tilt {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  #sec5 .mm-tilt {
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }
}

#sec5 .mm-footnote {
  margin-top: 80px;
  font-size: 20px;
  font-weight: 300;
  color: #282727;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* =========================
 FEATURE PILLS CAROUSEL
========================= */

.mm-mini-carousel {
  background: #fff;
  padding: 40px 0;
  overflow: visible;
}

/* Prevent height jump */
.mm-mini-carousel .carousel-inner {
  min-height: 130px;
  overflow: visible;
}

/* Row should stretch items */
#featureCarousel .carousel-item .row {
  align-items: stretch;
}

/* Feature Pill */
.mm-feature-pill {
  background-color: #fff;
  border: 1px solid #FFBE43;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  min-height: 118px;
  box-sizing: border-box;
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  z-index: 1;
}

.mm-feature-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
  z-index: 5;
}

/* Icon box */
.mm-mini-ic {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.mm-mini-ic .material-icons {
  font-size: 40px;
  color: #DD001D;
}

/* Text */
.mm-feature-txt {
  font-size: 24px;
  color: #3F3F3F;
}

.mm-feature-txt {
  font-size: 20px;
  min-height: 28px;
}

.mm-feature-txt .small {
  min-height: 44px;
}

/* =========================
 DESKTOP: 3 + 1 sneak peek
========================= */
@media (min-width: 992px) {

  #featureCarousel .carousel-item .col-lg-4 {
    max-width: 33.33%;
  }
}

/* =========================
 MOBILE: 1 item per slide
========================= */
@media (max-width: 767.98px) {

  .mm-mini-carousel {
    overflow-x: hidden;
  }

  #featureCarousel .carousel-item .row {
    flex-wrap: nowrap;
  }

  #featureCarousel .carousel-item .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* =========================
 ARROWS
========================= */

.controls-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.custom-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .3s ease, transform .2s ease;
}

.custom-arrow:hover {
  opacity: .9;
  transform: scale(1.05);
}

.custom-arrow.prev {
  background-color: #DD001D;
}

.custom-arrow.next {
  background-color: #e11d2d23;
}

.custom-arrow .material-icons {
  color: #fff;
  font-size: 24px;
}


/* =========================
   7) BANNER (mm-banner)
========================= */
.mm-banner {
  padding: 20px 0 0 0;
  margin-bottom: -8px;
}

@media (max-width: 767.98px) {
  .signup-banner {
    background-color: #FFF0D4;
    margin-top: -8px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 24px;


  }
}

.mm-banner .mm-banner-box {
  border: 0px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  padding: 110px 0;
  background: url(../images/Group\ 41.png);
  background-position: left;
  background-size: cover;

}

.col-txt {
  margin-left: 0px;
}

.side-img {
  display: none;
}


.mm-banner .mm-qr {
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  padding: 10px;
  width: 120px;
}

.mm-banner .mm-qr-sm {
  width: 88px;
  padding: 8px;
  border-radius: 10px;
}

.mm-banner .mm-stores img {
  height: 34px;
  width: auto;
  margin-right: 8px;
}

@media (max-width: 991.98px) {
  .mm-banner .mm-banner-box {
    padding: 18px;
    background: none;
  }

  .side-img {
    display: block !important;
    width: 100%;
  }
}

/* =========================
   TUTORIALS SECTION
========================= */

.tutorials-section {
  position: relative;
  background: #FFF0D4;
  padding: 60px 0;
  overflow: hidden;
  background-image: url("../images/Rectangle 41.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 600px auto;
  padding-top: 80px;
}

@media (max-width: 767.98px) {
  .tutorials-section {
    background-size: 400px auto;
    background-position: right top;
    overflow-x: hidden;
  }
}

.section-title {
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}

/* =========================
   CARD STYLES
========================= */
.tutorial-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 0px solid rgba(0, 0, 0, .06);
  transition: transform 0.3s ease;
  height: 100%;
}


/* CRITICAL: Force content to sit ON TOP of the background image */
.tutorials-section .container {
  position: relative;
  z-index: 2;
}

.tutorial-card:hover {
  transform: translateY(-5px);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play Button Circle */
.play-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: #3F3F3F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.tutorial-card:hover .play-icon {
  background-color: #DD001D;
  /* Red on hover */
}

.play-icon .material-icons {
  color: #fff;
  font-size: 24px;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: #3F3F3F;
}

/* =========================
   ARROW CONTROLS
========================= */
.controls-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.custom-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.custom-arrow:hover {
  opacity: 0.8;
}

/* Pink Arrow (Left) */
.custom-arrow.prev {
  background-color: #DD001D;
}

/* Red Arrow (Right) */
.custom-arrow.next {
  background-color: #e11d2d23;
}

.custom-arrow .material-icons {
  color: #fff;
  font-size: 24px;
}

/* =========================
   9) FAQ SECTION (mm-faq)
========================= */

/* Section */
.mm-faq {
  padding: 40px 10px;
  background: #fff;
  position: relative;
  background-image: url("../images/Rectangle 37.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 600px auto;


}

@media (max-width: 767.98px) {
  .mm-faq {
    background-size: 330px auto;
    overflow-x: hidden;
  }
}

/* Wrapper */
.mm-faq .mm-faq-wrap {
  max-width: 920px;
}

/* Accordion item */
.mm-faq .accordion-item {
  border-radius: 8px !important;
  border: 0 !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: #FFF0D4;
  /* LIGHT by default */
}

/* Button base */
.mm-faq .accordion-button {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  background: #FFFBEF;
  padding: 18px 22px;
}

/* Active (OPEN) state */
.mm-faq .accordion-button:not(.collapsed) {
  background: #FFF1D6;
  /* DARK */
  box-shadow: none;
}

/* Body */
.mm-faq .accordion-body {
  background: #FFF1D6;
  /* SAME as active header */
  font-size: 24px;
  font-weight: 300;
  color: #3F3F3F;
}

/* Remove Bootstrap arrow */
.mm-faq .accordion-button::after {
  display: none;
}

/* + icon */
.mm-faq .accordion-button::before {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 24px;
  font-weight: 500;
  color: #DD001D;
}

/* × icon when open */
.mm-faq .accordion-button:not(.collapsed)::before {
  content: "×";
}

/* Focus fix */
.mm-faq .accordion-button:focus {
  box-shadow: none;
}

/* Red utility */
.mm-red {
  color: #DD001D;
}

/* Disclaimer Section Styling */
.mm-disclaimer {
  background-color: #fff0d4;
  padding: 20px 10px;
  margin-top: 50px;
  border-top: 1px solid #FFBE43;
}

.mm-disclaimer-content {
  font-size: 10px;
  color: #3F3F3F;
  text-align: center;
}

.mm-disclaimer-content a {
  color: var(--mm-red);
  text-decoration: none;
}

.mm-disclaimer-content a:hover {
  text-decoration: underline;
}