@charset "UTF-8";
/* Monk & Bear Blog Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
::root {
  --primary-color-b: #3c2de9;
  --color-primary-b: #3c2de9;
  --color-primary-b-dark: #211884;
  --color-background-dark: #10069f;
  --color-secondary-o: #fe6d00;
  --color-secondary: #101d2c;
  --color-grey-light-1: #f9f7f6;
  --color-grey-light-2: #aaa;
  --color-grey-dark-1: #54483a;
  --color-grey-dark-2: #6d5d4b;
  --color-text-grey-1: #494949;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 675px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 323px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Helvetica", "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3b3b3b;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.header {
  width: 100%;
  height: 56px;
  padding: 0 2.4rem;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1160px) {
  .header {
    padding: 0 0.8rem 0 0rem;
  }
}

.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.sticky .main-section {
  margin-top: 56px;
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-nav__logo {
  height: 5.2rem;
  margin-left: 2.5rem;
}
.header-nav__name {
  font-size: 3.2rem;
  font-weight: 500;
  color: #3c2de9;
  margin-left: 1.5rem;
}

body.mbnav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mbnav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.mbnav__brand {
  align-self: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.8rem;
  cursor: pointer;
}
@media only screen and (max-width: 450px) {
  .mbnav__brand {
    column-gap: 0.2rem;
  }
}
.mbnav__brand:link, .mbnav__brand:visited {
  text-decoration: none;
}
.mbnav__brand-logo {
  height: 55px;
  width: auto;
}
.mbnav__brand-name {
  font-weight: bolder;
  color: #3c2de9;
  font-size: 23px;
  font-family: "Merienda One", sans-serif;
}
@media only screen and (max-width: 800px) {
  .mbnav__movable-box {
    position: absolute;
    top: 56px;
    right: 0;
    background: rgb(255, 255, 255);
    width: 100%;
    box-sizing: border-box;
    padding: 4.8rem 2.4rem;
    z-index: 3;
    height: calc(100vh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__movable-box {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0%);
    transition: all 0.5s ease-in;
  }
}
.mbnav__loggedin-box {
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  color: rgb(159, 77, 182);
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
  }
}
.mbnav__loggedin-box__profile {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 8px;
  background-color: #fff;
  padding: 0 24px;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__profile {
    justify-content: start;
    padding-left: 8px;
    column-gap: 16px;
  }
}
.mbnav__loggedin-box__profile-img {
  display: inline-block;
  height: 48px;
  width: 48px;
}
.mbnav__loggedin-box__profile-icon {
  font-size: 24px;
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__profile-icon {
    font-size: 32px;
  }
}
.mbnav__loggedin-box__dropd-btn {
  background: none;
  border: none;
  outline: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgb(159, 77, 182); /* Adjust color */
  display: inline-block;
  margin: 0 16px; /* Adjust spacing */
}
@media only screen and (max-width: 800px) {
  .mbnav__loggedin-box__dropd-btn {
    margin: 0 16px 0 24px;
  }
}
.mbnav__loggedin-box__dropd-btn:focus, .mbnav__loggedin-box__dropd-btn:focus-visible {
  outline: none;
}
.mbnav__dropdown-box {
  position: relative;
}
.mbnav__dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  background: #fff;
  padding: 24px 0px;
  width: 237px;
  box-shadow: 0px 6px 10px -2px rgba(0, 0, 0, 0.15); /* Removes top shadow */
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0rem;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  max-height: 0;
  overflow: scroll;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 800px) {
  .mbnav__dropdown-list {
    width: 100%;
    position: relative;
    top: 0%;
    left: 50%;
    box-shadow: none;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 500px;
    padding: 28px 0px;
  }
}
.mbnav .mbnav__loggedin-box.dropdown-active .mbnav__dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 350px;
}
@media only screen and (max-width: 800px) {
  .mbnav .mbnav__loggedin-box.dropdown-active .mbnav__dropdown-list {
    max-height: 500px;
  }
}
.mbnav .mbnav__loggedin-box.dropdown-active .mbnav__loggedin-box__dropd-btn {
  transform: rotate(180deg);
}
@media only screen and (max-width: 800px) {
  .mbnav .mbnav__loggedin-box.dropdown-active .mbnav__loggedin-box__dropd-btn {
    transform: rotate(0deg);
  }
}
.mbnav__dropdown-list--item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
}
@media only screen and (max-width: 800px) {
  .mbnav__dropdown-list--item {
    border-bottom: 1px solid #c1c2d5;
  }
}
.mbnav__dropdown-list--item i {
  color: #3c2de9;
  font-size: 16px;
}
.mbnav__dropdown-list--item .icon-home {
  font-size: 18px;
}
.mbnav__link-dropdown, .mbnav__link-dropdown:link, .mbnav__link-dropdown:visited {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #3c2de9;
  background-color: #fff;
  padding: 16px 24px;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-dropdown, .mbnav__link-dropdown:link, .mbnav__link-dropdown:visited {
    padding-left: 8px;
    font-size: 14px;
    padding: 28px 8px;
  }
}
.mbnav__link-dropdown:hover, .mbnav__link-dropdown:active {
  background-color: #e0e0e0;
}
.mbnav__dropdown-list__pm {
  color: #333;
}
.mbnav__list {
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 1.6rem;
}
@media only screen and (max-width: 800px) {
  .mbnav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    row-gap: 2.4rem;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav__list-item {
    width: 100%;
  }
}
.mbnav__link-cta:link, .mbnav__link-cta:visited {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  background-color: #3c2de9;
  border: none;
  color: #fff;
  border-radius: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-cta:link, .mbnav__link-cta:visited {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}
.mbnav__link-cta:hover, .mbnav__link-cta:active {
  background-color: #211884;
}
.mbnav__link-cta.mbnav__link-cta--secondary:link, .mbnav__link-cta.mbnav__link-cta--secondary:visited {
  display: inline-block;
  font-size: 1.2rem;
  background-color: #fff;
  color: #3c2de9;
  box-shadow: inset 0 0 0 1px #3c2de9;
}
@media only screen and (max-width: 800px) {
  .mbnav__link-cta.mbnav__link-cta--secondary:link, .mbnav__link-cta.mbnav__link-cta--secondary:visited {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.6rem;
  }
}
.mbnav__link-cta.mbnav__link-cta--secondary:hover, .mbnav__link-cta.mbnav__link-cta--secondary:active {
  background-color: #e0e0e0;
}
.mbnav__button {
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: none;
}
@media only screen and (max-width: 800px) {
  .mbnav__button {
    display: flex;
  }
}
.mbnav__button:focus, .mbnav__button:focus-visible {
  outline: none;
}
.mbnav__menu-outline {
  height: 30px;
  width: 30px;
}
.mbnav__menu-outline__line {
  width: 24px;
  height: 2px;
  background: rgb(125, 125, 125);
  transition: 0.3s;
}
.mbnav__menu-outline__l1 {
  margin-top: 6px;
}
.mbnav__menu-outline__l2 {
  margin-top: 6px;
}
.mbnav__menu-outline__l3 {
  margin-top: 6px;
}
.mbnav__close-outline {
  height: 30px;
  width: 30px;
  position: relative;
  display: none;
}
.mbnav__close-outline::before, .mbnav__close-outline::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgb(125, 125, 125);
  position: absolute;
  left: 6px;
  transform: translate(0, -100%);
}
.mbnav__close-outline::before {
  transform-origin: left bottom;
  top: 6px;
  transform: rotate(45deg);
}
.mbnav__close-outline::after {
  top: 22px;
  transform-origin: left top;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__menu-outline {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .mbnav-open .mbnav__close-outline {
    display: block;
  }
}

.footer-section {
  padding: 9rem 0;
  background-color: #181818;
}
.footer-container {
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 8fr 4fr 2fr 2fr;
  grid-template-rows: auto;
  justify-content: center;
  align-content: center;
  row-gap: 4.4rem;
  column-gap: 5.6rem;
}
@media only screen and (max-width: 1130px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 600px) {
  .footer-container {
    column-gap: 1.6rem;
  }
}
@media only screen and (max-width: 1130px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
}
@media only screen and (max-width: 450px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
}
@media only screen and (max-width: 380px) {
  .footer-container {
    grid-template-columns: 2fr 1fr;
  }
}
.footer-h5 {
  font-size: 1.6rem;
  font-weight: 600;
  color: rgb(241, 241, 241);
}
.footer-compInfo {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}
@media only screen and (max-width: 1130px) {
  .footer-compInfo {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media only screen and (max-width: 450px) {
  .footer-compInfo {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.footer-compInfo__logo {
  margin-left: 0rem;
}
.footer-compInfo__description {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgb(170, 170, 170);
  line-height: 1.7;
  letter-spacing: 0.002rem;
}
@media only screen and (max-width: 450px) {
  .footer__nav--fus {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.footer__nav__h5 {
  margin-bottom: 2.4rem;
}
.footer__nav--list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}
.footer__nav__follow-us {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__nav__follow-us i {
  font-size: 2.4rem;
}
.footer__nav__follow-us--link:link, .footer__nav__follow-us--link:visited {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer__nav__follow-us--link:hover, .footer__nav__follow-us--link:active {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.footer__nav__link:link, .footer__nav__link:visited {
  text-decoration: none;
  background-color: rgb(40, 40, 40);
  border-radius: 0.6rem;
  color: rgb(200, 200, 200);
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 600px) {
  .footer__nav__link:link, .footer__nav__link:visited {
    font-size: 1.4rem;
  }
}
.footer__nav__link:active, .footer__nav__link:hover {
  background-color: #fff;
  color: #3c2de9;
  transition: all 0.3s ease-in-out;
}
.footer__copyright {
  grid-column: 1/-1;
  justify-self: center;
  align-self: flex-start;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  color: rgb(100, 100, 100);
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .footer__copyright {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}

.whatsapp {
  color: #25d366;
}

.facebook {
  color: #3b5998;
}

.linkedin {
  color: #0a66c2;
}

.email {
  color: #bb001b;
}

.instagram {
  color: #bc2a8d;
}

.twitter {
  color: #1da1f2;
}

.light-lave-color {
  color: rgb(159, 77, 182);
}

.righ-arrow-move-up {
  font-size: 16px;
}

.margin-top-32 {
  margin-top: 3.2rem;
}

/* Reset and Base Styles */
.mbblog-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Typography Hierarchy */
.mbblog-heading {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(26, 26, 26);
  margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 600px) {
  .mbblog-heading {
    font-size: 3.6rem;
  }
}
.mbblog-heading--small {
  font-size: 4rem;
}
@media only screen and (max-width: 600px) {
  .mbblog-heading--small {
    font-size: 2.8rem;
  }
}

.mbblog-subheading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(0, 0%, 40%);
  margin-bottom: 3.2rem;
}

.mbblog-h2 {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: hsl(0, 0%, 10%);
  margin: 4.8rem 0 2.4rem 0;
  letter-spacing: -0.01em;
}
.mbblog-h2--blog-flow-continuation {
  font-size: 2.4rem;
  letter-spacing: -0.01em;
}
.mbblog-h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: hsl(0, 0%, 10%);
  margin: 3.2rem 0 1.6rem 0;
}
.mbblog-paragraph {
  font-size: 1.6rem;
  line-height: 1.7;
  color: hsl(0, 0%, 10%);
  margin-bottom: 2.4rem;
}
.mbblog-paragraph--aboveCTA {
  font-size: 1.6rem;
  line-height: 1.7;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1.2rem;
}

/* Meta Information */
.mbblog-meta {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid hsl(0, 0%, 90%);
  color: hsl(0, 0%, 40%);
  font-size: 1.44rem;
}
.mbblog-meta-item {
  display: inline-block;
  margin-right: 2.4rem;
}
.mbblog--meta-item i {
  margin-right: 0.8rem;
  color: #3c2de9;
}

/* Lists */
.mbblog-list {
  margin: 2.4rem 0;
  padding-left: 2.4rem;
  list-style-type: disc;
}
.mbblog-list li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.mbblog-list-nested {
  margin: 0.8rem 0;
  padding-left: 2.4rem;
  list-style-type: circle;
}
.mbblog-list-nested li {
  margin-bottom: 0.4rem;
}

/* Ordered Lists */
.mbblog-ordered-list {
  counter-reset: list-counter;
  list-style: none;
  margin: 2.4rem 0;
  padding-left: 0;
}
.mbblog-ordered-list > li {
  counter-increment: list-counter;
  margin-bottom: 1.2rem;
  padding-left: 3.2rem;
  position: relative;
  line-height: 1.7;
}
.mbblog-ordered-list > li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #3c2de9;
}

/* Author Section */
.mbblog-author {
  margin: 5.6rem 0;
  padding: 3.2rem;
  background: hsl(0, 0%, 97%);
  border-radius: 12px;
  border-left: 4px solid #3c2de9;
}
.mbblog-author-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.8rem;
}
.mbblog-author-name {
  font-size: 2rem;
  font-weight: 700;
  color: #3c2de9;
  margin-bottom: 1.2rem;
}
.mbblog-author-bio {
  font-size: 1.14rem;
  line-height: 1.6;
  color: hsl(0, 0%, 40%);
}

/* Internal Links Section */
.mbblog-internal-links {
  margin: 4.8rem 0;
  padding: 3.2rem;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 12px;
}
.mbblog-internal-links-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1.6rem;
}
.mbblog-internal-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mbblog-internal-links-list li {
  margin-bottom: 1.2rem;
  padding-left: 2.4rem;
  position: relative;
}
.mbblog-internal-links-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3c2de9;
  font-weight: bold;
}
.mbblog-internal-links-list a {
  color: #3c2de9;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in;
}
.mbblog-internal-links-list a:hover {
  color: #2d1fc7;
  text-decoration: underline;
  transition: all 0.3s ease-in;
}

/* CTA Button */
.mbblog-cta {
  display: inline-block;
  background: #3c2de9;
  color: hsl(0, 0%, 100%);
  padding: 2rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  margin: 1rem 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mbblog-cta:hover {
  background: #2d1fc7;
  transform: translateY(-1px);
  color: hsl(0, 0%, 100%);
}
.mbblog-cta--small {
  font-size: 1.5rem;
}

.mbblog-youtube-video-container {
  position: relative;
  width: 100%;
  max-width: 56rem; /* 560px if 1rem = 10px */
  aspect-ratio: 16/9;
  margin: 2.4rem 0;
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: #000; /* fallback while loading */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.mbblog-youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1.2rem;
}

.faq-question-answer-pair {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid #e4def8;
  padding: 1rem 0;
}

.faq-question-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Harmonized font size for accessibility */
  font-size: 1.5rem; /* ~15px, readable but compact */
  font-weight: 500;
  line-height: 1.6; /* Slightly increased for breathing space */
  cursor: pointer;
  background-color: #f9f9f9;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question-box:hover {
  background-color: #f1f1f1;
}

.faq-bullet {
  margin-right: 0.75rem;
  color: #666;
  font-size: 1.8rem; /* Just slightly larger than text */
  flex-shrink: 0;
}

.faq-question-text {
  flex-grow: 1;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.6;
}

.faq-toggle-icon {
  margin-left: 1rem;
  font-size: 1.4rem; /* Matches question text for balance */
  color: #555;
  transition: transform 0.3s ease;
}

.faq-question-box.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-toggle-icon.rotate {
  transform: rotate(180deg);
}

.faq-toggle-icon.open {
  transform: rotate(180deg);
}

.faq-answer-box {
  font-size: 1.4rem; /* Slightly smaller than question text */
  line-height: 1.7;
  color: #444;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem 1rem 2.8rem; /* aligns with bullet and text */
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-box.open {
  display: block;
  max-height: 500px; /* large enough for most answers */
}

.faq-answer-box p {
  margin: 0.5rem 0;
}

/* Testimonials Section */
.mbblog-testimonials {
  margin: 3rem 0;
}

.mbblog-testimonials-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  margin: 3rem 0 1.5rem 0;
  letter-spacing: -0.01em;
}

.mbblog-testimonial {
  margin-bottom: 3.2rem;
  padding: 1.5rem;
  background: hsl(0, 0%, 100%);
  border-radius: 8px;
  border-left: 3px solid #3c2de9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mbblog-testimonial:last-child {
  margin-bottom: 0;
}

.mbblog-testimonial-quote {
  font-size: 1.6rem;
  line-height: 1.7;
  color: hsl(0, 0%, 20%);
  margin-bottom: 1.6rem;
  font-style: italic;
  position: relative;
  padding-left: 3.2rem;
}

.mbblog-testimonial-quote::before {
  content: "“";
  font-size: 3.2rem;
  color: #3c2de9;
  position: absolute;
  left: 0;
  top: -1.4rem;
  font-weight: bold;
}

.mbblog-testimonial-author {
  font-size: 1.44rem;
  font-weight: 600;
  color: #3c2de9;
  text-align: right;
}

.mbblog-hero-image-container-350 {
  max-width: 350px;
  margin: 3.2rem 0;
}

.mbblog-hero-image {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  display: block;
  border-radius: 8px;
}

/* Tables */
.mbblog-table-wrapper {
  width: 100%;
  margin: 3.2rem 0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.mbblog-table-wrapper--width500 {
  overflow-x: auto;
  overflow-y: hidden; /* Optional: prevents vertical scrollbar */
  white-space: nowrap; /* Ensures table doesn't wrap and causes horizontal scroll */
  scrollbar-width: auto; /* For Firefox */
  -ms-overflow-style: auto; /* For IE 10+ */
}
.mbblog-table-wrapper--width500::-webkit-scrollbar {
  height: 8px; /* Always show scrollbar in Webkit browsers */
}
.mbblog-table-wrapper--width500::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.mbblog-table {
  min-width: 700px;
  border-collapse: collapse;
  background-color: hsl(0, 0%, 100%);
  font-size: 1.44rem;
}

.mbblog-table th,
.mbblog-table td {
  padding: 1.6rem;
  text-align: left;
  border-bottom: 1px solid hsl(0, 0%, 90%);
}
@media only screen and (max-width: 600px) {
  .mbblog-table th,
  .mbblog-table td {
    padding: 1.2rem;
  }
}

.mbblog-table th {
  background-color: hsl(0, 0%, 97%);
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}

.mbblog-table tbody tr:hover {
  background-color: hsl(0, 0%, 97%);
}

/*# sourceMappingURL=mbblog.css.map */
