/* ============================================================
   CSS RESET & BASE NORMALIZATION
============================================================ */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7FAFB;
  color: #232E38;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}
a {
  color: #246D95;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1B3141;
  text-decoration: underline;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
}
th, td {
  border: 1px solid #e3e9ee;
  padding: 12px 16px;
  text-align: left;
}
th {
  background: #E7F6F8;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ============================================================
   FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #214054;
  line-height: 1.15;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, .subheadline, li, td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #273846;
}
.subheadline {
  font-size: 1.19rem;
  color: #3C5E71;
  margin-bottom: 22px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ============================================================
   BRAND - SOFT PASTEL THEME COLORS
============================================================ */
:root {
  --primary: #246D95;
  --secondary: #1B3141;
  --accent: #E7F6F8;
  --pastel-blue: #A9DCEC;
  --pastel-green: #CDFDCF;
  --pastel-purple: #E6DAF8;
  --pastel-yellow: #FAF7D5;
  --pastel-pink: #F9C7D9;
  --text-main: #232E38;
  --text-soft: #587694;
  --white: #fff;
  --box-shadow: 0 4px 24px 0 rgba(36, 109, 149, 0.10);
}

/* ============================================================
   CONTAINER & LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: var(--box-shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 34px;
    border-radius: 16px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ============================================================
   HEADER & MAIN NAVIGATION
============================================================ */
header {
  background: linear-gradient(90deg, #E7F6F8, #A9DCEC 94%);
  box-shadow: 0 2px 24px 0 rgba(36, 109, 149, 0.05);
  border-bottom: 1px solid #D6EAF3;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  height: 72px;
}
.logo img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 8px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--primary);
}
.cta-button {
  background: linear-gradient(90deg, #A9DCEC 20%, #F9C7D9 100%);
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 48px;
  padding: 10px 28px;
  margin-left: auto;
  margin-right: 12px;
  box-shadow: 0 2px 10px 0 rgba(36, 109, 149, .08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.15s, color 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #A9DCEC 70%, #F9C7D9 100%);
  color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(169,220,236,.23);
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.15s;
  padding: 4px 12px;
  border-radius: 6px;
  z-index: 1001;
}
.mobile-menu-toggle:focus {
  background: #DAEBF5;
  outline: none;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    margin-left: auto;
    margin-right: 0;
  }
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(130deg, #A9DCEC 83%, #F9C7D9 100%);
  box-shadow: 0 20px 48px 0 rgba(60, 94, 113, 0.10);
  transform: translateX(-100%);
  transition: transform 0.30s cubic-bezier(.75, -.4, .28, 1.34);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 26px 14px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 24px;
  cursor: pointer;
  z-index: 1202;
  padding: 6px 12px;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6DAF8;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 46px;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 18px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-blue);
  color: var(--primary);
  outline: none;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
    pointer-events: none;
  }
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: linear-gradient(90deg, #E7F6F8, #E6DAF8 100%);
  border-top: 1.5px solid #E7F6F8;
  padding: 36px 0 18px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-copy {
  font-size: 0.95rem;
  color: #587694;
  margin-left: 12px;
  flex: 1;
  text-align: right;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .footer-nav {
    gap: 12px;
    margin: 10px 0 0 0;
  }
  .footer-copy {
    margin-left: 0;
    text-align: left;
    margin-top: 8px;
  }
}

/* ============================================================
   HERO SECTIONS & CALLOUTS
============================================================ */
.hero {
  background: linear-gradient(90deg, var(--pastel-blue) 29%, var(--pastel-pink) 92%);
  padding: 52px 0 42px 0;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 36px 0 rgba(36, 109, 149, 0.09);
  margin-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #214054;
  font-size: 2.55rem;
  font-weight: 700;
  text-shadow: 0 2px 12px #cdfdce23;
}
.hero .cta-button {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 29px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* ============================================================
   FLEXBOX PATTERNS & PASTEL CARDS/GRIDS
============================================================ */
.card-container, .feature-grid, .blog-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative; /* for possible decorative elements, not content */
}
.card-content, .blog-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Features grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: var(--pastel-blue);
  border-radius: 14px;
  box-shadow: 0 6px 24px 0 rgba(36, 109, 149, 0.08);
  padding: 30px 22px;
  flex: 1 1 275px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform .19s, box-shadow 0.22s;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 12px 32px 0 #A9DCEC70;
  transform: translateY(-2px) scale(1.02);
  background: var(--pastel-yellow);
}
.feature-item img {
  width: 44px; height: 44px;
  margin-bottom: 12px;
}

/* Benefits (ul style) */
.benefit-list, .value-list, .service-list, .support-options, .faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.benefit-list li, .value-list li {
  background: var(--pastel-green);
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(36, 109, 149, 0.05);
  padding: 18px 18px 18px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
  color: #295869;
}
.benefit-list li img, .value-list li img {
  width: 22px; height: 22px; opacity: 0.94;
}
.service-list li {
  background: var(--pastel-purple);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px 0 rgba(130, 141, 181, 0.04);
  font-size: 1.06rem;
  color: #47295A;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .blog-list, .testimonial-list {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ============================================================
   TESTIMONIALS & REVIEW SECTIONS
============================================================ */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 28px 18px 28px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid #CDEDFD;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 265px;
  box-shadow: 0 2px 14px 0 #A9DCEC28;
  font-size: 1.03rem;
  color: #22304B;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card strong {
  color: #246D95;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.testimonial-card .star-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD700;
  letter-spacing: .12em;
  font-size: 1.09rem;
  text-shadow: 0 1px 1px #ebecf9;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 28px 0 #A9DCEC99;
  border-color: var(--primary);
}

/* Card LANDING / Blog preview */
.blog-list {
  gap: 24px;
}
.blog-preview {
  background: var(--pastel-pink);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 #F9C7D950;
  padding: 26px 20px 20px 20px;
  flex: 1 1 275px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blog-preview h3 a {
  color: #934168;
  font-weight: 700;
  font-size: 1.18rem;
  transition: color 0.18s;
}
.blog-preview:hover, .blog-preview:focus-within {
  box-shadow: 0 8px 22px 0 #f9c7d957;
  transform: translateY(-1.5px) scale(1.015);
}

/* ============================================================
   UTILITY COMPONENTS / PATTERNS
============================================================ */
.text-section {
  font-size: 1.06rem;
  color: #232E38;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #20495E;
  margin-top: 16px;
  background: #E6DAF8;
  display: inline-block;
  border-radius: 13px;
  padding: 7px 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.contact-info p {
  color: #295869;
  margin-bottom: 4px;
  font-size: 1.03rem;
}
strong {
  font-weight: 700;
  color: #246D95;
}

/* ============================================================
   BUTTONS & FORMS
============================================================ */
button, .cta-button, input[type=submit], input[type=button], .cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.18s;
}

.cta-button, .cookie-banner .cookie-btn, .cookie-banner .cookie-link-btn {
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #A9DCEC 22%, #E6DAF8 100%);
  color: var(--secondary);
  padding: 10px 34px;
  box-shadow: 0 2px 10px 0 rgba(36, 109, 149, 0.05);
  margin-top: 10px;
}
.cta-button:hover, .cta-button:focus, .cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: linear-gradient(90deg,#E6DAF8 15%,#A9DCEC 100%);
  color: var(--primary);
  box-shadow: 0 5px 20px #a9dcec75;
  outline: none;
}
.cookie-banner .cookie-link-btn {
  background: linear-gradient(90deg,#F9C7D9 15%,#E6DAF8 100%);
  color: #692246;
  padding: 9px 25px;
  box-shadow: 0 2px 8px 0 #f9c7d930;
}
.cookie-banner .cookie-link-btn:hover, .cookie-banner .cookie-link-btn:focus {
  background: linear-gradient(90deg,#E6DAF8 20%,#F9C7D9 100%);
  color: #49123C;
  box-shadow: 0 7px 24px #f9c7d980;
}

input, textarea, select {
  border-radius: 8px;
  border: 1.4px solid #CDEDFD;
  padding: 11px 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #fff;
  color: #214054;
  outline: none;
  transition: border 0.17s;
  width: 100%;
  max-width: 410px;
}
input:focus, textarea:focus, select:focus {
  border-color: #246D95;
  background: #E7F6F8;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20495E;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ============================================================
   COOKIE CONSENT BANNER & MODAL
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #cdfdcf 20%, #e6daf8 80%);
  box-shadow: 0 -2px 24px 0 #A9DCEC55;
  z-index: 2030;
  padding: 28px 18px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  animation: slideUpCookie 0.5s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  color: #1B3141;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  flex: 1 1 260px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cookie modal styles */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,62,89,.20);
  z-index: 2040;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s cubic-bezier(.55,.05,.67,.19);
}

.cookie-modal {
  background: linear-gradient(120deg,#E6DAF8 70%, #A9DCEC 100%);
  box-shadow: 0 12px 64px #21405435, 0 1px 4px #1B314148;
  border-radius: 24px;
  padding: 40px 34px;
  min-width: 320px;
  max-width: 95vw;
  color: #214054;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: fadeInModal 0.3s cubic-bezier(.63,-0.22,.64,1.24);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  color: #246D95;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2042;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #DAEBF5;
  border-radius: 6px;
  color: #1B3141;
  outline: none;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #23496B;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category-toggle {
  width: 44px;
  height: 26px;
  border-radius: 16px;
  background: #cdfdcf;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.cookie-category-toggle[data-checked='true'] {
  background: #246D95;
}
.cookie-category-toggle::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #20495e29;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: left .18s, background .18s;
}
.cookie-category-toggle[data-checked='true']::after {
  left: 20px;
  background: #A9DCEC;
}
/* Essential cookies not clickable */
.cookie-category[data-essential] .cookie-category-toggle {
  background: #A9DCEC !important;
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-category[data-essential] .cookie-category-toggle::after {
  background: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 12px 8px;
    gap: 18px;
  }
  .cookie-modal {
    padding: 24px 10px 18px 12px;
    min-width: 90vw;
  }
}

/* ============================================================
   RESPONSIVE CONTENT ADJUSTMENTS
============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.13rem; }
  .feature-item, .testimonial-card, .blog-preview {
    padding: 20px 12px 18px 12px;
    min-width: 150px;
    max-width: unset;
    font-size: 1rem;
  }
  .benefit-list li, .value-list li, .service-list li {
    padding: 13px 11px 12px 12px;
    font-size: 0.99rem;
  }
  .product-price {
    padding: 4px 14px;
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.15rem; }
  .container, .content-wrapper {
    padding: 0 !important;
  }
  .section {
    padding: 16px 2px;
    margin-bottom: 20px;
  }
}

/* ============================================================
   TABLES
============================================================ */
table {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 #A9DCEC09;
}
th, td {
  border: 1px solid #e3e9ee;
}
tr:nth-child(even) td {
  background: #F7FAFB;
}

/* ============================================================
   MICRO-INTERACTIONS & ANIMATIONS
============================================================ */
section, .feature-item, .testimonial-card, .blog-preview, .cta-button, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.17s, background 0.17s, transform 0.17s;
}

/* ============================================================
   ACCESSIBILITY - FOCUS & SELECTION STYLES
============================================================ */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #A9DCEC;
  outline-offset: 2px;
}
::selection {
  background: #cdfdcf;
  color: #1B3141;
}

/* ============================================================
   MISC UTILITIES / OVERRIDES
============================================================ */
.hide { display: none !important; }
.mt-2 { margin-top: 12px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mt-4 { margin-top: 23px !important; }
.mb-4 { margin-bottom: 23px !important; }
.text-center { text-align: center !important; }
.text-soft { color: var(--text-soft) !important; }
.bg-white { background: #fff !important; }
.rounded-xl { border-radius: 24px !important; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }

/* ============================================================
   ENSURE ALL CRITICAL LAYOUT PATTERNS (MANDATORY)
============================================================ */
.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 */
