/* ========================================================
   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 {
  scroll-behavior: smooth;
  background: #F2F2F2;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F2F2F2;
  color: #275270;
  min-height: 100vh;
  position: relative;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
a {
  color: #F1A041;
  text-decoration: none;
}
a:focus, a:hover {
  color: #275270;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #275270;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 1px;
}
h2 {
  font-size: 1.75rem;
  font-weight: 800;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
h4 {
  font-size: 1.125rem;
  font-weight: 700;
}
p, ul, ol, blockquote, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #275270;
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  padding-left: 24px;
  border-left: 5px solid #F1A041;
  background: #fff5e7;
  margin-bottom: 12px;
  color: #275270;
}

/* ========================
   CONTAINER AND LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

/* ==============
   HEADER & NAV
   ============== */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(39,82,112,0.07);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 52px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #275270;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F1A041;
  color: #fff;
}
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.25s;
  box-shadow: 0 2px 14px 0 rgba(241,160,65,0.07);
  margin-left: 8px;
}
.btn-primary {
  background: #F1A041;
  color: #fff;
  border: 2px solid #F1A041;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #F1A041;
  border: 2px solid #F1A041;
  box-shadow: 0 6px 20px 0 rgba(241,160,65,0.14);
}
.btn-secondary {
  background: #fff;
  color: #275270;
  border: 2px solid #275270;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #275270;
  color: #fff;
}

/* ===============
   MOBILE NAV
   =============== */
.mobile-menu-toggle {
  display: none;
  background: #F1A041;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 6px;
  padding: 4px 16px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1020;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #275270;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.645,0.045,0.355,1), opacity 0.2s;
  box-shadow: 0 6px 32px rgba(39,82,112,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #F1A041;
  margin: 22px 22px 8px 0;
  cursor: pointer;
  z-index: 2050;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 14px 36px;
  border-radius: 32px;
  color: #275270;
  font-weight: 800;
  background: #f9f6fb;
  box-shadow: 0 2px 9px 0 rgba(241,160,65,0.05);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1A041;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .main-nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===============
   SECTIONS, PAGES
   =============== */
section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(241,160,65,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 24px 4px;
    margin-bottom: 36px;
    border-radius: 20px;
  }
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(241,160,65,0.07);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.25s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 10px 24px 0 rgba(241,160,65,0.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fffbe6;
  border-radius: 22px;
  flex: 1 1 260px;
  min-width: 210px;
  box-shadow: 0 2px 14px 0 rgba(241,160,65,0.13);
  padding: 24px 14px 18px 14px;
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.17s;
  position: relative;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  transform: translateY(-6px) rotate(-2deg) scale(1.03);
  box-shadow: 0 10px 26px 0 rgba(241,160,65,0.17);
  background: #fff6ea;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 8px #F1A04130);
  animation: floatBounce 2.8s infinite cubic-bezier(0.16,1,0.3,1);
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  60% { transform: translateY(-16px) scale(1.04); }
}
.feature-grid h3 {
  color: #F1A041;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.16rem;
  margin-bottom: 4px;
}
.feature-grid p {
  color: #275270;
  font-size: 0.97rem;
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fffbe6;
  box-shadow: 0 2px 10px 0 rgba(241,160,65,0.08);
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 320px;
  transition: box-shadow 0.25s, background 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fff7e2;
  box-shadow: 0 12px 32px 0 rgba(39,82,112,0.07);
}
.testimonial-card .stars {
  min-width: 38px;
  display: flex;
  align-items: center;
}
.testimonial-card blockquote {
  color: #275270;
  font-size: 1rem;
  background: transparent;
  border-left: 3px solid #F1A041;
  padding-left: 16px;
  margin-bottom: 0;
}
.testimonial-card p {
  margin-bottom: 0;
  margin-left: auto;
  color: #275270;
  font-weight: 700;
  font-size: 0.99rem;
}
@media (max-width: 900px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
  }
}

/* ===============
   USP / LISTS / CASE STUDIES
   =============== */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 2 1 320px;
  padding: 0;
}
.usp-list li {
  background: #ebf4fa;
  color: #275270;
  border-radius: 14px;
  padding: 14px 22px 14px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0;
  box-shadow: 0 1px 5px 0 rgba(39,82,112,0.06);
  position: relative;
  border-left: 5px solid #F1A041;
}

.team-overview h3 {
  margin-bottom: 3px;
}
.certifications {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.certifications img {
  width: 36px; height: 36px;
}
.certifications span {
  color: #0e1f2a;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.service-list li {
  background: #e3f7ff;
  border-radius: 10px;
  padding: 14px 18px 14px 22px;
  font-size: 0.98rem;
  color: #275270;
  box-shadow: 0 1px 8px 0 rgba(39,82,112,0.04);
  margin-bottom: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 10px;
}
.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ebf4fa;
  border-radius: 14px;
  padding: 16px 26px 16px 18px;
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 0;
}
.process-steps img {
  width: 40px;
  height: 40px;
  margin-top: -2px;
  margin-right: 8px;
}

.location-list {
  margin-top: 24px;
  flex: 1 1 210px;
}
.location-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.location-list li {
  background: #fffbe6;
  color: #F1A041;
  border-radius: 12px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 0.98rem;
}

.project-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project {
  background: #efeeff;
  border-radius: 20px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 2px 9px 0 rgba(39,82,112,0.05);
  min-width: 220px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.project:hover, .project:focus-within {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 26px 0 rgba(39,82,112,0.13);
  background: #eceaff;
}
.project h3 {
  font-size: 1.16rem;
  color: #275270;
  margin-bottom: 2px;
}
.project blockquote {
  margin-top: 10px;
  color: #275270;
  background: #fff6ea;
  border-left: 4px solid #F1A041;
  font-size: 0.97rem;
}

.case-study-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.case-study-snippets > div {
  background: #fffbe6;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px 0 rgba(241,160,65,0.08);
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
}
.case-study-snippets h4 {
  font-size: 1.02rem;
  color: #F1A041;
  margin-bottom: 3px;
}

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

.faq-accordion {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #edefff;
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(39,82,112,0.03);
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.16s, background 0.14s;
}
.faq-item h2 {
  font-size: 1.09rem;
  margin-bottom: 0.7em;
  color: #F1A041;
  transition: color 0.16s;
}
.faq-item.open h2 {
  color: #275270;
}
.faq-answer {
  color: #275270;
  font-size: 1rem;
  padding-left: 9px;
  margin-bottom: 0;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 14px 32px 0 rgba(241,160,65,0.08);
  background: #fffbe6;
}
.contact-prompt {
  background: #f7fbff;
  border-radius: 20px;
  margin-top: 20px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 3px 12px 0 rgba(39,82,112,0.05);
  flex: 1 1 290px;
}
.contact-prompt a {
  color: #F1A041;
  font-weight: bold;
  text-decoration: underline;
}
.contact-prompt a:hover, .contact-prompt a:focus {
  color: #275270;
  text-decoration: underline;
}

/* ==============
   FOOTER
   ============== */
footer {
  background: #275270;
  color: #fff;
  border-radius: 26px 26px 0 0;
  margin-top: 40px;
  box-shadow: 0 -5px 35px 0 rgba(39,82,112,0.11);
  padding: 28px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  opacity: 0.91;
  font-weight: 600;
  transition: color 0.13s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #F1A041;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  font-size: 0.98rem;
  color: #fff;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  filter: brightness(93%) saturate(80%) contrast(110%);
}
@media (max-width: 700px) {
  .footer-contact {
    flex-direction: column;
    gap: 13px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  border-top: 6px solid #F1A041;
  box-shadow: 0 -6px 35px 0 rgba(39,82,112,0.14);
  z-index: 4000;
  padding: 18px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookieSlideIn 0.6s;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #26435e;
  font-size: 1rem;
  margin-bottom: 2px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 0.97rem;
}
.cookie-buttons .btn-reject {
  background: #F2F2F2;
  color: #275270;
  border: 2px solid #275270;
  transition: background 0.13s, color 0.13s;
}
.cookie-buttons .btn-reject:hover, .cookie-buttons .btn-reject:focus {
  background: #275270;
  color: #fff;
}
.cookie-buttons .btn-settings {
  background: transparent;
  color: #F1A041;
  border: 2px solid #F1A041;
}
.cookie-buttons .btn-settings:hover, .cookie-buttons .btn-settings:focus {
  background: #F1A041;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,82,112, 0.21);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 370px;
  width: 92vw;
  padding: 28px 28px 18px 28px;
  box-shadow: 0 12px 38px 0 rgba(241,160,65,0.17);
  z-index: 4600;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modalSlideIn 0.36s cubic-bezier(.61,.01,.68,1.01);
  position: relative;
}
@keyframes modalSlideIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #275270;
  font-size: 1.25rem;
  margin-bottom: 0.8em;
}
.cookie-modal .cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  background: #F2F2F2;
  border-radius: 11px;
  padding: 10px 13px;
  margin-bottom: 8px;
}
.cookie-modal .cookie-toggle {
  accent-color: #F1A041;
  width: 20px; height: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  color: #F1A041;
  cursor: pointer;
}
.cookie-modal-actions {
  text-align: right;
  margin-top: 10px;
}
.cookie-modal-actions .btn {
  margin-left: 6px;
}

/* ===============
   RESPONSIVE RULES
   =============== */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 16px;
  }
  .testimonial-card {
    gap: 11px;
    padding: 13px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .case-study-snippets, .project-carousel, .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    gap: 10px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .feature-grid > div, .project, .case-study-snippets > div {
    min-width: 0;
    padding: 13px 8px;
  }
  .testimonial-card, .card {
    padding: 12px 7px;
  }
  .location-list ul {
    flex-direction: column;
    gap: 5px;
  }
}

/* ===============
   PLAYFUL ACCENTS
   =============== */
.feature-grid > div:before, .project:before {
  content: '';
  display: block;
  position: absolute;
  width: 32px; height: 32px;
  top: -18px; right: -8px;
  border-radius: 50%;
  background: #F1A04133;
  z-index: 0;
  pointer-events: none;
  animation: floatBubble 4.1s infinite linear alternate-reverse;
}
@keyframes floatBubble {
  0% { opacity:0.7; transform:translateY(0) scale(1.0); }
  100% { opacity:0.2; transform:translateY(18px) scale(1.2); }
}
.feature-grid > div:after, .project:after {
  content: '';
  display: block;
  position: absolute;
  width: 18px; height: 18px;
  bottom: -12px; left: -8px;
  border-radius: 60% 50% 60% 50%/ 60% 50% 60% 60%;
  background: #2752700f;
  z-index: 0;
  pointer-events: none;
}

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.03em;
}
h1, h2, h3, h4, .btn, .main-nav a, .mobile-nav a, .feature-grid h3, .footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing:0.04em;
}

/* ==============
   MISCELLANEOUS
   =============*/
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #F1A04181;
  border-radius: 100px;
  box-shadow: inset 0 0 6px #F2F2F2;
}
::-webkit-scrollbar-track {
  background: #F2F2F2;
}

/* Ensure forms have playful, dynamic look */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 2px solid #F1A041;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  box-shadow: 0 1px 6px 0 rgba(241,160,65,0.06);
  transition: border-color 0.15s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #275270;
  box-shadow: 0 2px 11px 0 rgba(39,82,112,0.09);
}

/* Animated micro-interactions for interactive elements */
.btn, .feature-grid > div, .card, .project, .testimonial-card, .faq-item {
  transition: box-shadow 0.15s, transform 0.12s, background 0.15s, color 0.15s;
}

/* ======
   UTILITY CLASSES
   ====== */
.hide {
  display: none !important;
}

/* ===============
   Z-INDEX
   =============== */
.mobile-menu,
.cookie-modal-overlay,
.cookie-modal {
  z-index: 3000;
}

/* ===============
   ENSURE SPACING AND FLEXBOX 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;
}

/* ===============
   OVERRIDES FOR DARK TEXT ON LIGHT BG (TESTIMONIALS/REVIEWS)
   =============== */
.testimonial-card, .testimonial-card blockquote, .testimonial-card p {
  color: #275270 !important;
  background: #fffbe6 !important;
  border: none !important;
}

/* ===============
   PRINT FRIENDLY
   =============== */
@media print {
  header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  section, .section, .container {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
  }
}
