/* ========= CSS RESET / NORMALIZE ========= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F2F2F2;
  color: #20232A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #20232A;
  text-decoration: none;
  transition: color 0.20s;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
strong, b {
  font-weight: 700;
}

/* ========= BRAND COLORS & FONTS ========= */
:root {
  --primary: #20232A;
  --secondary: #CCB57A;
  --accent: #F2F2F2;
  --fun1: #FFCD38;
  --fun2: #53C7F7;
  --fun3: #FF7FA8;
  --fun4: #90EA83;
  --white: #fff;
  --black: #101023;
  --shadow: 0 4px 16px rgba(32,35,42,0.10);  /* Soft playful shadow */
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
section:last-of-type {
  margin-bottom: 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
}

/* ========= NAVIGATION ========= */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 14px 20px 10px 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
nav a:not(.cta-btn):hover {
  background: var(--fun2);
  color: var(--white);
}
nav a.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  padding: 9px 20px;
  border-radius: 40px;
  margin-left: auto;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(204,181,122,0.13);
  transition: background 0.18s, transform 0.18s;
  font-weight: 800;
  letter-spacing: 0.03em;
  outline: none;
  border: none;
  cursor: pointer;
}
nav a.cta-btn:hover, nav a.cta-btn:focus {
  background: var(--fun1);
  color: var(--black);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255,205,56,0.19);
}
nav a img {
  height: 36px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Hamburger / mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: var(--fun2);
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: 16px;
  margin-right: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(83,199,247,0.13);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--fun1);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255,205,56,0.19);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8);
  box-shadow: var(--shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--primary);
  margin: 20px 20px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--fun3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.mobile-nav a {
  font-size: 1.2rem;
  width: 90vw;
  padding: 16px 0;
  border-radius: 16px;
  background: var(--white);
  color: var(--primary);
  border-bottom: 3px solid var(--accent);
  text-align: center;
  transition: background 0.13s, color 0.13s, transform 0.14s;
}
.mobile-nav a:hover {
  background: var(--fun2);
  color: var(--white);
  transform: scale(1.04) translateY(-2px);
}
.mobile-nav a:last-child {
  margin-bottom: 12px;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(96deg, var(--fun1) 0%, var(--fun2) 100%);
  border-radius: 20px;
  box-shadow: 0 3px 28px 0 rgba(32,35,42,0.09);
  padding: 60px 20px 60px 20px;
  margin-bottom: 60px;
  margin-top: 30px;
  animation: popUpHero 1.0s cubic-bezier(.26,1.13,.49,.98);
}
@keyframes popUpHero {
  0% { transform: scale(0.98) translateY(40px); opacity:0.2; }
  75% { transform: scale(1.02) translateY(-3px); opacity:0.90; }
  100% { transform: scale(1.0) translateY(0); opacity:1; }
}
.hero h1, .hero p {
  color: var(--primary);
}
.hero .cta-btn {
  margin-top: 30px;
}

/* ========== FLEX LAYOUTS ========== */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 285px;
  margin-bottom: 20px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: transform 0.18s, box-shadow 0.19s;
  cursor: pointer;
  border: 3px solid transparent;
  animation: cardPop 0.70s cubic-bezier(.23,1.7,.43,.97);
}
@keyframes cardPop {
  0% { transform: scale(0.95); opacity:0.3; }
  75% { transform: scale(1.03); opacity:.9; }
  100% { transform: scale(1.0); opacity:1; }
}
.feature-grid > div:hover {
  border-color: var(--fun2);
  transform: translateY(-6px) scale(1.05) rotate(-1deg);
  box-shadow: 0 6px 24px 0 rgba(83,199,247,0.13);
  z-index: 1;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--accent);
  padding: 8px;
  box-shadow: 0 2px 8px 0 rgba(32,35,42,0.05);
  animation: floatIcon 1.9s infinite alternate ease-in-out;
}
@keyframes floatIcon {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* CARDS & COMMON FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  margin-bottom: 24px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(83,83,83,0.12);
  border-left: 6px solid var(--fun3);
  flex-direction: row;
  transition: box-shadow 0.14s, transform 0.16s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(255,127,168,0.12);
  transform: scale(1.025) translateY(-2px);
  border-left-color: var(--fun4);
}
.testimonial-card p {
  font-size: 1.11rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 0;
}
.testimonial-card div {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--fun2);
  font-size: .97rem;
  font-weight: 700;
  margin-left: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* UL LIST BULLETS (Playful) */
ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--fun3);
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  top: 5px;
  left: 0;
  box-shadow: 0 1px 4px 0 rgba(255,127,168,.19);
  animation: bounceDot 2s infinite alternate linear;
}
@keyframes bounceDot {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

/* ========== TABLES ========== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  margin-bottom: 25px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
}
thead th {
  background: var(--fun4);
  font-weight: 800;
  padding: 18px 10px;
  color: var(--primary);
  font-size: 1.09rem;
}
tbody td {
  padding: 15px 9px;
  color: var(--primary);
  background: var(--accent);
  border-bottom: 2px solid var(--fun2);
}
tr:last-child td {
  border-bottom: none;
}

.discount-notes {
  background: var(--fun4);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 12px;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(144,234,131,0.11);
}


/* ========== BUTTONS & LINK STYLES ========== */
.cta-btn, .btn, button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--fun1);
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 1.09rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px 0 rgba(255,205,56,0.09);
  transition: background 0.20s, color 0.18s, transform 0.17s;
  outline: none;
  letter-spacing: 0.04em;
}
.cta-btn:hover, .btn:hover, button:hover, input[type="submit"]:hover, .cta-btn:focus {
  background: var(--fun3);
  color: var(--white);
  transform: translateY(-2.5px) scale(1.05) rotate(-0.5deg);
  box-shadow: 0 6px 18px 0 rgba(255,127,168,.09);
}

/* --------- COOKIE BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fun1);
  color: var(--primary);
  padding: 22px 16px 22px 16px;
  box-shadow: 0 -4px 24px 0 rgba(32,35,42,0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  gap: 18px;
  animation: cookieSlideIn 0.7s cubic-bezier(.32,1.38,.31,.84);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(150%); opacity: 0; }
  80% { transform: translateY(-8%); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p, .cookie-banner .cookie-buttons {
  margin: 0 12px 0 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 10px 24px;
  background: var(--fun2);
  color: var(--white);
  border: none;
  border-radius: 26px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 4px;
  transition: background 0.17s, color 0.13s, transform 0.13s;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-banner button.cookie-reject {
  background: var(--fun3);
  color: var(--white);
}
.cookie-banner button.cookie-settings {
  background: var(--fun4);
  color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.07);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  right: 50%;
  top: 50%;
  transform: translate(50%,-50%) scale(0.98);
  background: var(--white);
  color: var(--primary);
  z-index: 15000;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(255,127,168,.12);
  padding: 34px 24px 18px 24px;
  width: 95vw;
  max-width: 430px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.28s cubic-bezier(.41,1.1,.48,.91);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%,-50%) scale(1.0);
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--fun4);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--fun2);
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.65;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 16px;
}
.cookie-modal .cookie-close {
  background: none;
  color: var(--fun3);
  border: none;
  font-size: 1.35rem;
  font-weight: 800;
  align-self: flex-end;
  margin-bottom: 3px;
  margin-right: -5px;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: var(--fun2);
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  padding: 44px 20px 28px 20px;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 36px;
  font-size: 0.97rem;
  border-radius: 36px 36px 0 0;
  margin-top: 70px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-links a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 4px 14px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .99rem;
  color: var(--accent);
  margin-bottom: 0;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}

/* TEXT SECTIONS IN CONTENTS */
.text-section {
  margin-bottom: 16px;
}
.text-section > div, .text-section p, .text-section ul {
  margin-bottom: 11px;
}
.text-section img {
  vertical-align: middle;
  margin-right: 10px;
  width: 24px;
}

.business-hours, .phone-email {
  margin-bottom: 20px;
}
.business-hours h3, .phone-email strong {
  font-size: 1.17rem;
  color: var(--fun2);
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.phone-email ul {
  margin-top: 8px;
}
.phone-email li, .business-hours li {
  padding-left: 20px;
  margin-bottom: 4px;
  font-size: 1rem;
  position: relative;
}
.phone-email li:before, .business-hours li:before {
  display: none;
}

/* FAQ ACCORDION (if JS applies open/close, basic style) */
.faq-accordion .text-section {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  padding: 16px 13px 13px 20px;
  border-left: 6px solid var(--fun2);
  animation: cardPop .6s cubic-bezier(.23,1.7,.43,.97);
}
.faq-accordion h3 {
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.faq-accordion p {
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-for-more {
  margin-top: 18px;
  font-size: 1.01rem;
}
.contact-for-more a {
  color: var(--fun2);
  border-bottom: 2px dashed var(--fun2);
  display: inline-block;
  padding-bottom: 1px;
  transition: color 0.11s, border-color 0.11s;
}
.contact-for-more a:hover, .contact-for-more a:focus {
  color: var(--fun3);
  border-color: var(--fun3);
}

/***** PROCESS OVERVIEW, SPECIAL NOTES ETC. *****/
.process-overview {
  background: var(--fun3);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 15px;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px 0 rgba(255,127,168,0.09);
}

/* ========== MISCELLANEOUS UI ========== */
::-webkit-scrollbar {
  width: 11px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: var(--secondary);
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 10px;
  border: 2px solid var(--fun2);
  border-radius: 6px;
  margin-bottom: 16px;
  background: var(--white);
  color: var(--primary);
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--fun3);
}

/* ===== TRANSITIONS FOR COMMON ELEMENTS ===== */
a, .cta-btn, .btn, button, input[type="submit"], .feature-grid > div, .card, .testimonial-card {
  transition: background 0.2s, color 0.18s, box-shadow 0.21s, transform 0.2s, border 0.16s;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 920px) {
  .feature-grid > div {
    min-width: 180px;
    max-width: 50vw;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 42px 8px;
    margin-top: 14px;
  }
  .feature-grid, .card-container, .content-grid, .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid > div {
    min-width: unset;
    max-width: 99vw;
    margin-bottom: 18px;
    padding: 22px 10px;
  }
  nav {
    display:none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 12px;
    z-index:10001;
  }
  header {
    min-height: 64px;
    height: auto;
    padding-bottom:8px;
  }
  .footer-links {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .section, section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .content-grid, .card-container {
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .hero {
    margin-top: 2px;
    padding: 20px 3vw 30px 3vw;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .feature-grid > div {
    padding: 14px 5vw;
  }
  .testimonial-card {
    padding: 12px 5vw;
  }
  .footer-links {
    gap: 10px;
  }
  .cookie-modal {
    padding: 20px 3vw 12px 3vw;
    max-width: 96vw;
    width: 96vw;
  }
}

/* ===== UTILITY CLASSES (playful highlights) ===== */
.highlight {
  background: var(--fun2);
  color: var(--white);
  border-radius: 8px;
  padding: 2px 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.animated-bounce {
  animation: bounceYPlayful 1.2s infinite alternate;
}
@keyframes bounceYPlayful {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px) scale(1.04); }
}

/* ========= Z-INDEX LAYERING ========= */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
  z-index: 1000;
}
.mobile-menu, .cookie-modal {
  z-index: 9999;
}
.cookie-banner {
  z-index: 12000;
}

/* ========= CLASSES FROM MANDATORY LAYOUT ========= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== END OF CSS ========== */
