/* CSS RESET & NORMALIZATION */
html,
body,
div,
span,
applet,
object,
iframe,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
a, abbr, acronym, address, big, cit, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2EEE3;
  color: #24405A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #24405A;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
}
strong {
  font-weight: 700;
}

/* BRAND COLORS AS CSS VARIABLES WITH FALLBACKS */
:root {
  --primary: #24405A;
  --secondary: #5BBEC3;
  --accent: #F2EEE3;
  --highlight-yellow: #FFF159;
  --highlight-pink: #FFB6B9;
  --highlight-green: #77E6B6;
  --highlight-blue: #8BD3FF;
  --neutral-dark: #132435;
  --card-bg: #fff;
  --card-shadow: 0 4px 18px rgba(91,190,195,0.10);
  --border-radius: 22px;
  --gap-base: 20px;
}

/* GLOBAL TYPOGRAPHY - PLAYFUL/DYNAMIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.13;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 15px;
}
h3 {
  font-size: 1.33rem;
  line-height: 1.22;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
body, p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}
ul, ol {
  margin-bottom: 16px;
  margin-left: 28px;
  color: var(--primary);
}
ul li, ol li {
  margin-bottom: 7px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* HEADER & NAVIGATION (DESKTOP & MOBILE) */
header {
  width: 100%;
  background: var(--accent);
  box-shadow: 0px 4px 14px rgba(201,216,199,0.12);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 16px;
  background: none;
  transition: background 0.18s, color 0.18s;
  color: var(--primary);
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--highlight-yellow);
  color: var(--neutral-dark);
}
header a img {
  height: 46px;
  margin-right: 24px;
}

/* PRIMARY BUTTONS - PLAYFUL STYLE */
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--secondary);
  color: #fff;
  border-radius: 48px;
  padding: 12px 34px 12px 34px;
  box-shadow: 0 4px 16px rgba(91,190,195,0.15);
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: background 0.23s, box-shadow 0.23s, transform 0.2s;
  position: relative;
  margin-left: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--highlight-pink);
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(91,190,195,0.21);
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}

/* HAMBURGER (mobile-menu-toggle) */
.mobile-menu-toggle {
  background: var(--highlight-yellow);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 16px;
  margin-left: 15px;
  padding: 0 14px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(244,203,103,0.1);
  transition: background 0.15s, transform 0.15s;
  display: none;
  z-index: 103;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--highlight-pink);
  color: var(--primary);
  transform: scale(1.1);
}

/* SECTION SPACING (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEX CONTENT WRAPPERS */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-base);
}
.features-grid,
.services-list,
.content-grid,
.steps-list,
.team-bios,
.testimonial-grid,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.features-grid {
  justify-content: space-between;
  align-items: stretch;
}
.services-list {
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARDS & FLEX CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 230px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(91,190,195,0.23);
  transform: translateY(-2px) rotate(-1deg) scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* FEATURES (feature-item) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 22px 20px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: background 0.19s;
  margin-bottom: 20px;
  position: relative;
  border: 2.5px solid transparent;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item:hover,
.feature-item:focus {
  background: var(--highlight-green);
  border-color: var(--secondary);
  box-shadow: 0 12px 32px rgba(91,190,195,0.14);
}

/* SERVICE CARDS */
.service-item {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(91,190,195,0.09);
  padding: 22px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  gap: 12px;
  position: relative;
  border: 2.5px solid transparent;
  transition: box-shadow 0.18s, border 0.16s, transform 0.15s;
}
.service-item img {
  width: 42px;
  height: 42px;
}
.service-item .price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.05rem;
  margin-top: 10px;
}
.service-item:hover, .service-item:focus {
  border-color: var(--highlight-yellow);
  box-shadow: 0 10px 30px rgba(91,190,195,0.13);
  background: var(--highlight-blue);
  transform: translateY(-3px) scale(1.03) rotate(2deg);
}

/* TEAM BIOS */
.team-bios {
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  padding: 18px 16px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(91,190,195,0.08);
  min-width: 180px;
  flex: 1 1 200px;
  margin-bottom: 20px;
}

/* STEPS-LIST (jak działamy) */
.steps-list {
  gap: 24px;
}
.step {
  background: var(--highlight-yellow);
  box-shadow: 0 4px 18px rgba(251,236,120,0.18);
  border-radius: 18px;
  padding: 20px 18px;
  flex: 1 1 190px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.17s, transform 0.15s;
}
.step img {
  width: 38px;
  height: 38px;
}
.step:hover {
  background: var(--highlight-pink);
  transform: translateY(-2px) rotate(-2deg);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(91,190,195,0.11);
  min-width: 220px;
  max-width: 380px;
  color: #222;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(91,190,195,0.17);
  transform: translateY(-3px) scale(1.02);
}
.testimonial-card strong {
  font-size: 1.05rem;
  color: var(--primary);
}
.testimonial-card .stars {
  color: var(--highlight-yellow);
  font-size: 1.35rem;
  letter-spacing: 1.1px;
  font-family: monospace;
  margin-bottom: 3px;
}

/* CTA SECTION */
.cta-section,
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--accent);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px 0 rgba(91,190,195,0.09);
}
.cta-section {
  align-items: center;
}
.cta-section a.btn-primary {
  margin-top: 12px;
}

/* CONTACT INFO SECTION */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--primary);
  background: var(--highlight-blue);
  border-radius: 18px;
  padding: 26px 18px 18px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px 0 rgba(91,190,195,0.08);
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 36px 0 18px 0;
  letter-spacing: 0.01em;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-brand img {
  height: 43px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.16s;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 0;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--highlight-yellow);
  opacity: 1;
}


/******* MOBILE MENU STYLES *******/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  background: rgba(255,255,255,0.97);
  box-shadow: -4px 0 30px 0 rgba(36,64,90,0.12);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.48,.04,.44,.99);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  margin: 22px 17px 0 0;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(91,190,195,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--highlight-pink);
  color: var(--primary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  margin-top: 35px;
  padding-left: 32px;
  z-index: 201;
}
.mobile-nav a {
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  padding: 15px 0;
  border-bottom: 1.8px dotted var(--accent);
  color: var(--primary);
  background: none;
  transition: background 0.17s, color 0.17s, padding-left 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--highlight-blue);
  color: var(--secondary);
  padding-left: 22px;
}

/******* COOKIE CONSENT BANNER *******/
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: #fff;
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 3.5px solid var(--secondary);
  box-shadow: 0 -2px 18px 0 rgba(91,190,195,0.09);
  padding: 18px 22px;
  gap: 30px;
  animation: cookieBannerIn 0.36s cubic-bezier(.68,-0.25,.27,1.25);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
#cookie-banner p {
  font-size: 1rem;
  margin: 0;
  color: var(--primary);
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 36px;
  padding: 7px 22px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
  border: none;
}
#cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
}
#cookie-banner .accept:hover,
#cookie-banner .accept:focus {
  background: var(--highlight-green);
  color: var(--primary);
}
#cookie-banner .decline {
  background: var(--highlight-pink);
  color: var(--primary);
}
#cookie-banner .decline:hover,
#cookie-banner .decline:focus {
  background: var(--highlight-yellow);
}
#cookie-banner .settings {
  background: var(--highlight-yellow);
  color: var(--primary);
}
#cookie-banner .settings:hover,
#cookie-banner .settings:focus {
  background: var(--secondary);
  color: #fff;
}

/* COOKIE MODAL */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  background: rgba(44,44,44,0.28);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.13s;
}
#cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity:0; }
  to {opacity: 1; }
}
#cookie-modal {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 40px 0 rgba(91,190,195,0.16);
  padding: 32px 32px 28px 32px;
  min-width: 310px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: modalIn 0.25s cubic-bezier(.42,-0.02,1,.18);
}
@keyframes modalIn {
  from { transform: scale(0.85); opacity:0; }
  to {transform: scale(1); opacity:1; }
}
#cookie-modal h3 {
  margin-bottom: 10px;
}
#cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--accent);
  font-size: 1.07rem;
}
#cookie-modal .required {
  color: var(--secondary);
  font-weight: 700;
}
#cookie-modal .cookie-switch {
  width: 40px;
  height: 22px;
  background: var(--highlight-blue);
  border-radius: 18px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.17s;
}
#cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
#cookie-modal .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s, background 0.15s;
  box-shadow: 0 1px 6px 0 rgba(91,190,195,0.09);
}
#cookie-modal .cookie-switch input:checked + .slider {
  background: var(--highlight-green);
  transform: translateX(16px);
}
#cookie-modal .modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
#cookie-modal .modal-footer .btn-primary,
#cookie-modal .modal-footer button {
  font-size: 1rem;
  padding: 7px 20px;
  border-radius: 25px;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  border: none;
  transition: background 0.15s;
  cursor: pointer;
}
#cookie-modal .modal-footer .btn-primary:focus,
#cookie-modal .modal-footer .btn-primary:hover {
  background: var(--highlight-pink);
  color: var(--primary);
}
#cookie-modal .modal-footer .btn-secondary {
  background: var(--highlight-blue);
  color: var(--primary);
}

/******** UTILS ********/
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top:8px; }
.mt-2 { margin-top:16px; }
.mt-3 { margin-top:24px; }
.mb-1 { margin-bottom:8px; }
.mb-2 { margin-bottom:16px; }
.mb-3 { margin-bottom:24px; }
.pt-1 { padding-top:8px; }
.pt-2 { padding-top:16px; }
.pt-3 { padding-top:24px; }
.pb-1 { padding-bottom:8px; }
.pb-2 { padding-bottom:16px; }
.pb-3 { padding-bottom:24px; }

/********* SCROLLBAR STYLING ********/
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/******** ANIMATIONS & MICRO-INTERACTIONS ********/
.card, .feature-item, .testimonial-card, .service-item, .step, .team-member {
  transition: box-shadow 0.17s, transform 0.13s, background 0.15s, border 0.15s;
}
a, .btn-primary, button {
  transition: background 0.17s, color 0.14s, transform 0.11s;
}

/********* RESPONSIVE (MOBILE FIRST) *********/
@media (max-width: 1024px) {
  .container {
    max-width: 930px;
  }
  .features-grid,
  .services-list,
  .content-grid,
  .testimonial-grid,
  .steps-list,
  .team-bios {
    flex-wrap: wrap;
    gap: 20px;
  }
  header .container,
  footer .container {
    gap: 20px;
  }
  .footer-brand img {
    height: 41px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
  .features-grid,
  .services-list,
  .steps-list,
  .team-bios,
  .testimonial-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
    height: 65px;
    gap: 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features-grid,
  .services-list,
  .content-grid,
  .testimonial-grid,
  .steps-list,
  .team-bios {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    padding: 28px 5px;
    margin-bottom: 36px;
  }
  .cta-section,
  .text-section {
    padding: 18px 10px;
  }
  .contact-info {
    padding: 16px 7px 10px 7px;
  }
  .footer-brand img {
    height: 33px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 9px;
  }
  #cookie-banner {
    flex-direction: column;
    gap: 15px;
    font-size: 0.98rem;
    padding: 13px 8px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.43rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .btn-primary {
    font-size: 0.95rem;
    padding: 8px 18px;
  }
  .header .container,
  footer .container {
    gap: 5px;
  }
}

/******* VISUAL DECORATIVE EFFECTS (PLAYFUL STYLE) *******/
.feature-item:after, .service-item:after, .testimonial-card:after {
  content: '';
  position: absolute;
  z-index: 0;
  top: -7px;
  right: -7px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--highlight-blue);
  opacity: 0.13;
  pointer-events: none;
  filter: blur(2.4px);
  transition: opacity 0.2s;
}
.feature-item:before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--highlight-pink);
  opacity: 0.12;
  filter: blur(1.3px);
}

/***** Z-INDEX LAYERING (FOR OVERLAYS AND MENU) *****/
header { z-index: 111; position: relative; }
.mobile-menu { z-index: 201; }
#cookie-banner { z-index: 900; }
#cookie-modal-overlay { z-index: 1201; }

/***** ACCESSIBILITY/CONTRAST FIXES *****/
.testimonial-card,
.testimonial-card p,
.testimonial-card strong,
.testimonial-card .stars {
  color: #232323;
  background: #fff !important;
}

/***** UTILITIES: FOCUS STATES *****/
:focus,
a:focus, button:focus, .btn-primary:focus {
  outline: 2px dotted var(--primary);
  outline-offset: 2px;
  z-index: 20;
}

/***** CUSTOM FUN FONT FOR PLAYFUL HEADERS *****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

/***** CLASSES FOR SPACING AND FLEXBOX (MANDATORY FROM DESCRIPTION) *****/
.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 ******/
