/* =========================
   CSS RESET & BASE
========================= */
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;
}
footer p {
  color: white;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f9fafb;
  color: #23293a;
  min-height: 100vh;
}
a {
  color: #418ac9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23293a;
  text-decoration: underline;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 16px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
}
th {
  background: #23293a;
  color: #f9fafb;
  font-weight: 700;
  letter-spacing: 0.5px;
}
td {
  background: #fff;
  font-size: 16px;
  color: #23293a;
}
tr:nth-child(even) td {
  background: #f1f3f8;
}
strong { font-weight: bold; }
blockquote {
  border-left: 5px solid #418ac9;
  padding-left: 20px;
  margin: 20px 0;
  color: #418ac9;
  font-style: italic;
}


/* =============================
   VARIABLE COLORS & FONTS
============================= */
:root {
  --color-primary: #23293a;
  --color-secondary: #418ac9;
  --color-accent: #f9fafb;
  --color-highlight: #ffbe38; /* artistic accent */
  --color-contrast: #fff;
  --color-card: #fff;
  --color-muted: #f1f3f8;
  --shadow-light: 0 3px 18px 0 rgba(33,45,86,0.07);
  --shadow-medium: 0 8px 28px 0 rgba(65,138,201,0.18);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}


/* =============================
   HEADERS, CONTAINERS
============================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
header, footer {
  background: #23293a;
  color: #f9fafb;
  padding: 0;
  width: 100%;
}
/* =============================
   HEADER & NAV
============================= */
header {
  box-shadow: var(--shadow-light);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 38px;
  width: auto;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.main-nav a {
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-highlight);
  transition: width 0.22s;
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: 0;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-highlight);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}

.cta-primary, .cta-secondary {
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.01em;
  font-size: 18px;
  padding: 10px 34px;
  transition: background 0.25s, color 0.18s, box-shadow 0.21s;
  box-shadow: 0 3px 15px 0 rgba(33,45,86,0.08);
  display: inline-block;
  outline: none;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-left: 18px;
}
.cta-primary {
  background: var(--color-highlight);
  color: #23293a;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffc947;
  color: #23293a;
  box-shadow: 0 2px 9px #418ac9aa;
}
.cta-secondary {
  background: var(--color-secondary);
  color: #fff;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #23293a;
  color: var(--color-highlight);
}

button.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 18px;
  z-index: 40;
  transition: color 0.14s;
}
button.mobile-menu-toggle:focus {
  color: var(--color-highlight);
}

@media (max-width: 1024px) {
  nav.main-nav {
    gap: 15px;
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  nav.main-nav {
    gap: 12px;
  }
  .cta-primary {
    margin-left: 8px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 850px) {
  nav.main-nav, .cta-primary {
    display: none;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   MOBILE MENU
============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,41,58,0.97);
  z-index: 100;
  transition: transform 0.35s cubic-bezier(.55,0,.1,1), opacity 0.29s;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 32px 10px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 200;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-highlight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin-top: 26px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
  transition: color 0.15s, background 0.15s;
  border-radius: var(--radius-sm);
  width: 93vw;
  max-width: 340px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-highlight);
  background: #323c53;
  padding-left: 10px;
}

@media (max-width: 480px) {
  .mobile-menu-close {
    font-size: 2rem;
    margin: 20px 15px 5px 0;
  }
  .mobile-nav {
    padding-left: 16px;
    gap: 18px;
  }
  .mobile-nav a {
    font-size: 1.08rem;
  }
}

/* =============================
   MAIN CONTENT
============================= */
main {
  flex: 1;
}

section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  align-items: flex-start;
}
.text-section {
  font-size: 1.1rem;
  color: #23293a;
  background: #f9fafbcc;
  border-radius: var(--radius-md);
  padding: 18px 26px;
  margin-bottom: 16px;
  box-shadow: 0 1px 7px 0 rgba(65,138,201,0.06);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #23293a;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.17;
  color: #23293a;
  margin-bottom: 22px;
  position: relative;
}
h2 {
  font-size: 2.1rem;
  line-height: 1.18;
  color: var(--color-secondary);
  margin-bottom: 16px;
  position: relative;
}
h3 {
  font-size: 1.35rem;
  color: var(--color-highlight);
  margin-bottom: 9px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #23293a;
}

p, ul, ol {
  color: #23293a;
  font-family: var(--font-body);
  font-size: 1.07rem;
  line-height: 1.78;
}
ul {
  padding-left: 1.1em;
}


/* =============================
   CARDS & ARTISTIC ELEMENTS
============================= */
.service-cards, .testimonial-cards, .article-previews, .feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .testimonial-card, .case-study-summary, .article-previews > div {
  background: var(--color-card);
  box-shadow: var(--shadow-medium);
  border-radius: 28px;
  padding: 32px 30px 26px 30px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  max-width: 100%;
  flex: 1 1 270px;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 3px solid var(--color-highlight);
}
.service-card:hover, .testimonial-card:hover, .case-study-summary:hover, .article-previews > div:hover {
  box-shadow: 0 5px 24px 0 rgba(65,138,201,0.23);
  transform: translateY(-7px) scale(1.03) rotate(-1.2deg);
  border-color: var(--color-secondary);
  z-index: 2;
}
.service-price {
  font-size: 20px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.case-study-summary h3 {
  color: var(--color-secondary);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 12px;
  margin-bottom: 12px;
}
.feature-grid li {
  list-style: none;
  background: #fff;
  border-radius: 21px;
  box-shadow: var(--shadow-light);
  padding: 30px 23px 20px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 355px;
  border-left: 6px solid var(--color-highlight);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature-grid li img {
  height: 42px;
  margin-bottom: 7px;
}
.feature-grid li h3 {
  color: var(--color-secondary);
  font-size: 1.08rem;
}
.feature-grid li p {
  color: #323c53;
  font-size: 1rem;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 8px 20px 0 rgba(51,76,117,0.08);
  border: 1.5px solid var(--color-secondary);
  max-width: 400px;
  color: #23293a;
  font-size: 1.08rem;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card .testimonial-rating {
  color: var(--color-highlight);
  font-size: 1.28rem;
  font-weight: bold;
}
.testimonial-card .testimonial-author {
  font-style: italic;
  color: var(--color-secondary);
  font-size: 1rem;
}
.testimonial-card p {
  color: #23293a;
}

/* ============
 Cards, Grids
 ============ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-medium);
  background: #fff;
  border-radius: var(--radius-md);
  transition: box-shadow 0.18s, transform 0.18s;
  padding: 28px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 240px;
}
.card:hover {
  box-shadow: 0 7px 28px #418ac9bb;
  transform: translateY(-4px) scale(1.035);
}
.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;
}

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

.icon-row {
  display: flex;
  gap: 22px;
  margin-top: 14px;
  margin-bottom: 14px;
  align-items: center;
}
.icon-row img {
  height: 34px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 5px #23293a22);
}

.article-previews > div {
  min-width: 240px;
  max-width: 320px;
  border-left: 4px solid var(--color-secondary);
  border-bottom: 2.3px solid #ffd68a;
  background: #fff;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, border-color 0.14s;
}

.newsletter-signup-cta a {
  border-radius: 24px;
  font-size: 1.15rem;
  background: var(--color-highlight);
  color: #23293a;
  font-weight: bold;
  padding: 9px 46px;
  transition: background 0.18s, color 0.16s, box-shadow 0.13s;
  margin-top: 14px;
  display: inline-block;
}
.newsletter-signup-cta a:hover, .newsletter-signup-cta a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* =============================
   CTA SECTIONS
============================= */
.cta-primary, .cta-secondary {
  box-shadow: 0 4px 12px #418ac928;
  cursor: pointer;
}

/* =============================
   FOOTER
============================= */
footer {
  background: #23293a;
  color: #f9fafb;
  border-top: 8px solid var(--color-highlight);
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  padding: 48px 18px 18px 18px;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 160px;
}
.logo-footer img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #f9fafb;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  font-size: 16px;
  transition: color 0.18s;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-highlight);
  border-color: var(--color-highlight);
}
.footer-contact {
  font-size: 15px;
  color: #f9fafb;
  font-family: var(--font-body);
}
.footer-contact a {
  color: #ffe7a8;
  text-decoration: underline;
  word-break: break-all;
}
.footer-copy {
  font-size: 14px;
  color: #b1b8cf;
  margin-top: 15px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 34px 12px 18px 12px;
    min-height: 120px;
  }
}

/* =============================
   RESPONSIVE LAYOUTS
============================= */
@media (max-width: 1100px) {
  .feature-grid, .service-cards, .testimonial-cards, .article-previews,
  .content-grid, .service-grid {
    flex-direction: row;
    gap: 16px;
  }
  .service-card, .testimonial-card, .case-study-summary, .article-previews > div, .feature-grid li {
    min-width: 170px;
    flex: 1 1 185px;
  }
}
@media (max-width: 767px) {
  section {
    margin-bottom: 38px;
    padding: 26px 5px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.29rem;
  }
  h3, h4 {
    font-size: 1.02rem;
  }
  .content-wrapper {
    padding: 0 3px;
    gap: 22px;
  }
  .feature-grid, .service-cards, .testimonial-cards, .article-previews,
  .content-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .service-card, .testimonial-card, .case-study-summary, .article-previews > div, .feature-grid li {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .logo img, .logo-footer img {
    height: 27px;
  }
  .icon-row img { height: 28px; }
  .newsletter-signup-cta a {
    font-size: 1.01rem;
    padding: 7px 18px;
  }
  .footer-nav { flex-direction: row; gap: 14px; flex-wrap: wrap; }
  .footer-contact p { font-size: 13.5px; }
  .footer-copy { font-size: 13px; }
  .card { padding: 19px; }
  .case-study-summary { padding: 18px 12px 14px 14px; }
}
@media (max-width: 660px) {
  .content-wrapper { padding: 0; }
}
@media (max-width: 440px) {
  h1, h2 { font-size: 1.1rem; }
  .cta-primary, .cta-secondary { font-size: 1rem; padding: 7px 18px; }
  .service-card { padding: 11px 6px; }
  .testimonials-card { font-size: 0.96em; }
}

/* ============================
   MICRO-INTERACTIONS & EFFECTS
============================ */
button, .cta-primary, .cta-secondary, .newsletter-signup-cta a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: none;
}
button:active, .cta-primary:active, .cta-secondary:active, .newsletter-signup-cta a:active {
  transform: scale(0.98) translateY(1px);
}

/* ============================
   COOKIE CONSENT BANNER
============================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #23293a;
  color: #f9fafb;
  z-index: 9999;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -3px 12px 0 rgba(65,138,201,0.08);
  animation: slideup-banner 0.7s cubic-bezier(.55,0,.1,1);
}
@keyframes slideup-banner {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  font-family: var(--font-body);
  flex: 1 1 auto;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-banner button {
  font-family: var(--font-display);
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  margin-left: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.1s;
  font-weight: 600;
}
.cookie-btn.accept {
  background: var(--color-highlight);
  color: #23293a;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffc947;
}
.cookie-btn.reject {
  background: #fff;
  color: #23293a;
  border: 1.2px solid #d5dbec;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f7e5c2;
}
.cookie-btn.settings {
  background: #418ac9;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #23293a;
  color: var(--color-highlight);
}

/* Cookie preferences modal popup */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,41,58,0.94);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinmodal .4s cubic-bezier(.45,0,.2,1);
  pointer-events: all;
}
@keyframes fadeinmodal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #23293a;
  border-radius: 22px;
  padding: 36px 25px 32px 29px;
  min-width: 300px;
  max-width: 92vw;
  box-shadow: 0 12px 34px rgba(65,138,201,0.23);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  color: #418ac9;
  font-size: 1.35rem;
}
.cookie-modal-content ul {
  margin-left: 1em;
}
.cookie-modal-content label { font-size: 1.02rem; }
.cookie-modal-content .close-modal-btn {
  position: absolute;
  top: 17px; right: 17px;
  background: none;
  border: none;
  font-size: 2.0rem;
  color: #23293a;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 1;
}
.cookie-modal-content .close-modal-btn:hover,
.cookie-modal-content .close-modal-btn:focus {
  color: #418ac9;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.cookie-category input[type=checkbox] {
  accent-color: #418ac9;
  width: 19px; height: 19px;
}
.cookie-category[aria-disabled="true"] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 680px) {
  .cookie-modal-content {
    padding: 19px 7px 21px 10px;
  }
}

@media (max-width: 420px) {
  .cookie-banner .cookie-text {
    font-size: 0.93rem;
    margin-right: 8px;
  }
  .cookie-modal-content { min-width: unset; }
}

/* ============
 VISUAL HIERARCHY & EFFECTS
 ============ */
h1:before, h2:before {
  content: '';
  display: inline-block;
  width: 24px; height: 10px;
  background: var(--color-highlight);
  border-radius: 8px;
  margin-bottom: 8px;
  margin-right: 13px;
  vertical-align: middle;
}

.text-section ul, .text-section ol {
  margin-bottom: 0;
}

@media (max-width: 670px) {
  .footer-nav { flex-direction: column; gap: 8px; }
  .icon-row { gap: 10px; }
}

/* ============
   SCROLLBAR
 ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb {
  background: #dde4ed;
  border-radius: 8px;
}
::-webkit-scrollbar-track { background: #f9fafb; }

/* ============
   ACCESSIBILITY
 ============ */
:focus {
  outline: 2.5px solid #418ac9;
  outline-offset: 1.5px;
}

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

/* ============
 FORCED FLEX FIXES
 ============ */
main > section > .container, main > section, .content-wrapper, .footer-nav, .footer-contact, .feature-grid, .testimonial-cards, .case-study-summary, .service-cards, .service-grid, .article-previews, .content-grid, .text-image-section {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .footer-nav, .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 32px;
  }
}

/* ====================
   MANDATORY SPACING PATTERNS
 ==================== */
.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;
}