/* CSS RESET & BASE TYPOGRAPHY */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2A3542;
  background: #fff;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}
a {
  color: #165C85;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E18424;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
ul {
  list-style: disc inside;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #165C85;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 { font-size: 2.8rem; margin-bottom: 32px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4, h5, h6 {font-size: 1rem; margin-bottom: 10px;}

p {
  margin: 0 0 16px 0;
  font-size: 1.0625rem;
}

strong {
  font-weight: 700;
}

/* UTILITY */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 40px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(22,92,133,0.06), 0 1.5px 4px rgba(225,132,36,0.05);
  padding: 28px 24px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  margin-bottom: 20px;
  background: #E4F4FA;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(22,92,133,0.08);
}
.testimonial-card p {
  color: #2A3542;
  font-style: italic;
}
.testimonial-meta {
  font-size: 1rem;
  color: #165C85;
}

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

/* BRAND COLORS & WARM FRIENDLY PALETTE */
:root {
  --primary: #165C85;
  --secondary: #56B3D2;
  --accent: #E4F4FA;
  --warm-bg: #FFF8F4;
  --warm-accent: #FFF0E5;
  --button-bg: #E18424;
  --button-bg-hover: #CE750E;
  --shadow: 0 2px 14px rgba(22,92,133,0.08);
}

/* HEADER/NAVIGATION */
header {
  background: var(--warm-bg);
  border-bottom: 1px solid #E4F4FA;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  color: #165C85;
  border-radius: 7px;
  padding: 7px 12px;
  transition: background 0.18s, box-shadow 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #FFF0E5;
  box-shadow: 0 1px 4px rgba(225,132,36,0.06);
}
.cta-button {
  display: inline-block;
  background: var(--button-bg);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  margin-left: 16px;
  box-shadow: 0 2px 16px rgba(225,132,36,0.07), 0 0.5px 2px #E4F4FA;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--button-bg-hover);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 22px rgba(225,132,36,0.13);
  outline: none;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--button-bg);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 6px 18px 7px 16px;
  box-shadow: 0 1.5px 8px rgba(225,132,36,0.08);
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.14s, box-shadow 0.1s;
}
.mobile-menu-toggle:active {
  background: var(--button-bg-hover);
}
.mobile-menu {
  position: fixed;
  z-index: 1100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 0 0 8px rgba(22,92,133,0.07);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-left: 20px;
  background: var(--warm-bg);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 6px 14px 8px 13px;
  box-shadow: 0 1.5px 8px rgba(22,92,133,0.05);
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-end;
}
.mobile-menu-close:hover {
  background: #FFE8D4;
}
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  padding: 10px 16px 10px 4px;
  border-radius: 8px;
  transition: background 0.15s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4F4FA;
}

/* HIDE/SHOW NAVS RESPONSIVELY */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO */
.hero {
  background: linear-gradient(120deg, var(--accent), #FFF8F4 80%);
  padding: 68px 0 48px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.22rem;
  color: #35506B;
  margin-bottom: 28px;
}

/* FEATURES */
.features {
  background: #FFF0E5;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}
.features ul li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  gap: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: var(--primary);
}
.features ul li img {
  height: 26px;
  width: 26px;
  background: #FFF8F4;
  padding: 4px;
  border-radius: 7px;
}

/* SERVICES (HOMEPAGE) */
.services {
  background: #fff;
}
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.services ul li {
  background: #E4F4FA;
  padding: 20px 22px 14px 22px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  flex: 1 1 215px;
  min-width: 220px;
  max-width: 340px;
}
.services ul li h3 {
  color: #165C85;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.services ul li p {
  color: #35506B;
  font-size: 1rem;
}

.services .cta-button {
  margin-top: 26px;
}

/* TESTIMONIALS */
.testimonials {
  background: #FFF8F4;
  padding-bottom: 60px;
  padding-top: 37px;
}
.testimonials h2 {
  color: #CE750E;
  font-size: 2rem;
  margin-bottom: 35px;
}
.testimonial-card {
  background: #fff;
  border-left: 6px solid var(--button-bg);
  padding: 26px 30px 15px 22px;
  margin-bottom: 22px;
  min-width: 232px;
  font-size: 1.09rem;
  color: #2A3542;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 25px rgba(225,132,36,0.10), 0 0.5px 2px #E4F4FA;
  transform: translateY(-2px) scale(1.01);
}

/* FINAL CTA */
.cta-final {
  background: var(--primary);
  color: #fff;
  border-radius: 28px;
  margin: 48px 0 38px 0;
  box-shadow: 0 6px 32px rgba(86,179,210,0.10);
}
.cta-final h2, .cta-final p {
  color: #fff;
}
.cta-final .cta-button {
  background: #fff;
  color: var(--button-bg);
  border: 2px solid var(--button-bg);
}
.cta-final .cta-button:hover {
  background: var(--button-bg);
  color: #fff;
}

/* FOOTER */
footer {
  background: var(--warm-bg);
  border-top: 1px solid #E4F4FA;
  font-size: 1rem;
  color: #2A3542;
  padding: 38px 0 22px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 50px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 9px;
  border-radius: 13px;
  transition: box-shadow 0.21s;
}
.footer-logo img:hover {
  box-shadow: 0 2px 12px rgba(86,179,210,0.13);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--primary);
  opacity: 0.89;
  font-family: 'Montserrat', sans-serif;
  padding: 2px 0;
}
.footer-contact p {
  margin-bottom: 8px;
  color: #35506B;
  font-size: 0.97rem;
}
.footer-contact a {
  color: var(--button-bg);
  font-weight: 600;
}
.footer-cta {
  align-self: flex-end;
}
.footer-cta .cta-button {
  margin: 6px 0 0 0;
  font-size: 1rem;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 26px;
  font-size: 1.06rem;
}
.pricing-table th, .pricing-table td {
  padding: 13px 10px;
  border-bottom: 1px solid #E4F4FA;
  text-align: left;
}
.pricing-table th {
  background: #FFF0E5;
  color: #165C85;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.price-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: disc;
  margin-left: 1.2em;
  margin-bottom: 0;
}
.price-highlights ul li {
  color: var(--primary);
  background: #E4F4FA;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 1rem;
  font-family: 'Open Sans';
}

/* SERVICES-DETAIL, USP, COMPARISON */
.services-detail h1 {
  font-size: 2rem;
  color: var(--button-bg);
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.services-grid > div {
  min-width: 220px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(86,179,210,0.08);
  padding: 21px 18px 17px 18px;
  text-align: left;
  flex: 1 1 220px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.13s, transform 0.17s;
}
.services-grid > div:hover {
  box-shadow: 0 7px 27px rgba(225,132,36,0.12);
  transform: translateY(-2px) scale(1.01);
}
.services-grid img {
  height: 34px;
  width: 34px;
  margin-bottom: 10px;
}
.usp ul, .comparison ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.usp ul li, .comparison ul li {
  background: var(--warm-bg);
  color: #2A3542;
  border-radius: 10px;
  padding: 13px 21px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px rgba(225,132,36,0.06);
}
.usp ul li img {
  height: 28px; width: 28px; background: #E4F4FA; border-radius: 7px;}

/* FAQ */
.faq-section {
  background: #E4F4FA;
  border-radius: 17px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px rgba(22,92,133,0.06);
  padding: 22px 19px 21px 21px;
  margin-bottom: 10px;
  transition: box-shadow 0.15s;
}
.faq-item h2 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1.04rem;
  color: #516274;
}
.faq-cta {
  background: #FFF8F4;
  border-radius: 19px;
  padding: 40px 16px 40px 16px;
  margin: 40px 0 0 0;
  text-align: center;
}
.faq-cta .cta-button {
  margin-top: 13px;
}

/* ABOUT/VALUES/TEAM */
.about-company, .values, .team {
  background: #FFF8F4;
  border-radius: 16px;
  margin-bottom: 40px;
  padding: 40px 19px 37px 19px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.values-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.values-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 13px rgba(86,179,210,0.09);
  padding: 21px 19px 16px 21px;
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 4px;
}
.values-list img {
  height: 30px;
  margin-bottom: 5px;
}
/* CONTACT */
.contact-section, .contact-cta {
  background: #E4F4FA;
  border-radius: 18px;
  margin-bottom: 32px;
  padding: 40px 19px 32px 19px;
}
.contact-section .text-section ul {
  margin-bottom: 18px;
}
.contact-section .text-section li {
  margin-bottom: 6px;
  color: #35506B;
  font-size: 1.05rem;
}
.contact-cta .cta-button {
  margin-top: 13px;
}

/* LEGAL/PRIVACY/COOKIES/TERMS */
.legal-section, .gdpr-section, .cookie-section, .terms-section {
  background: #FFF8F4;
  border-radius: 16px;
  margin-bottom: 32px;
  padding: 36px 17px 33px 17px;
}
.legal-section .text-section, .gdpr-section .text-section, .cookie-section .text-section, .terms-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* THANK YOU */
.thank-you {
  background: #E4F4FA;
  border-radius: 18px;
  padding: 60px 24px 64px 24px;
  text-align: center;
}
.thank-you h1 {
  font-size: 2.3rem;
}
.thank-you .cta-button {
  margin-top: 20px;
}

/* CTA BUTTON ANIMATION */
.cta-button, button {
  transition: background 0.16s, color 0.17s, transform 0.13s, box-shadow 0.16s;
}
button:focus {
  outline: 2px solid var(--button-bg);
}

/* GENERAL BUTTONS */
button, .cta-button {
  cursor: pointer;
  user-select: none;
}
button[disabled], .cta-button[disabled] {
  opacity: 0.54;
  cursor: default;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
  }
  .services ul, .features ul, .usp ul, .comparison ul, .services-grid, .values-list, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 19px !important;
  }
  .footer-cta {
    width: 100%;
    align-self: flex-start;
    margin-top: 18px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  .section, .contact-section, .contact-cta, .about-company, .values, .team, .legal-section, .gdpr-section, .cookie-section, .terms-section {
    padding: 29px 6px 26px 6px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 37px 0 33px 0;
  }
  .hero h1 {
    font-size: 1.39rem;
  }
  .values-list > div, .services-grid > div {
    padding: 15px 8px 10px 12px;
    min-width: 0;
    max-width: 100%;
  }
  .features ul li, .usp ul li, .comparison ul li {
    font-size: 0.99rem;
    padding: 11px 8px;
  }
  .footer-logo img {
    height: 44px;
  }
  .footer-contact, .footer-cta, .footer-nav {
    font-size: 0.93rem;
    margin-bottom: 14px;
  }
  .thank-you {
    padding: 38px 8px 36px 8px;
  }
}

/* FLEXBOX EXPLICIT FOR ALL LAYOUTS (MANDATORY) */
/* Section spacing/gap enforced by parent containers as per requirements above */

/* MICRO-INTERACTIONS */
a, .cta-button, button, .card, .testimonial-card, .services-grid > div, .faq-item {
  transition: box-shadow 0.16s, background 0.13s, color 0.17s, transform 0.13s;
}
.card:hover, .services-grid > div:hover, .faq-item:hover {
  box-shadow: 0 6px 24px rgba(225,132,36,0.11), 0 0.5px 2px #E4F4FA;
  transform: translateY(-1.5px);
}

/* FOCUSED & ACCESSIBLE STATES */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* COOKIE BANNER */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF8F4;
  color: #2A3542;
  box-shadow: 0 -2px 16px rgba(86,179,210,0.12);
  border-top: 2px solid #CE750E;
  z-index: 2002;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 20px;
  gap: 18px;
  font-size: 1.03rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1 1 220px;
  color: #35506B;
  margin-bottom: 8px;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner__button {
  background: var(--button-bg);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.13s, transform 0.13s;
  box-shadow: 0 1px 6px rgba(225,132,36,0.09);
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: var(--button-bg-hover);
}
.cookie-banner__secondary {
  background: #fff;
  color: var(--button-bg);
  border: 1.5px solid var(--button-bg);
  margin-left: 7px;
  box-shadow: none;
}
.cookie-banner__secondary:hover, .cookie-banner__secondary:focus {
  background: #FFE8D4;
  color: var(--button-bg-hover);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,92,133,0.18);
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.26s cubic-bezier(.75,-0.04,.8,1.03);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  padding: 38px 24px 20px 24px;
  max-width: 98vw;
  min-width: 0;
  width: 410px;
  box-shadow: 0 12px 50px rgba(22,92,133,0.20);
  animation: modalPopIn 0.31s cubic-bezier(.51,1.21,.48,0.95);
}
@keyframes modalPopIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.33rem;
  margin-bottom: 13px;
  color: var(--primary);
}
.cookie-modal__desc {
  color: #35506B;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.cookie-modal__cat {
  margin-bottom: 14px;
  background: #E4F4FA;
  padding: 13px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  justify-content: space-between;
}
.cookie-modal__cat label {
  font-size: 1rem;
  color: #2A3542;
}
.cookie-modal__cat input[type="checkbox"] {
  accent-color: var(--button-bg);
  width: 20px;
  height: 20px;
  border-radius: 7px;
}
.cookie-modal__cat input[disabled] { opacity: 0.65; pointer-events: none; }
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal__button {
  background: var(--button-bg);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 8px 19px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.cookie-modal__button:hover, .cookie-modal__button:focus {
  background: var(--button-bg-hover);
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--button-bg);
  font-size: 1.44rem;
  cursor: pointer;
  border-radius: 11px;
  width: 32px;
  height: 32px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #FFF0E5;
}

/* ENSURE NO OVERLAPS, SPACING BETWEEN SECTIONS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* FLEXBOX COLUMN ON MOBILE FOR MULTI-COLUMN SECTIONS */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
  }
  .content-grid, .values-list, .card-container, .services-grid {
    flex-direction: column !important;
    gap: 19px !important;
  }
}

/* ENSURE UTILITY CLASSES BELOW OVERRIDE IF NEEDED */
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.rounded-18 { border-radius: 18px !important; }

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 8px;
  background: #E4F4FA;
}
::-webkit-scrollbar-thumb {
  background: #CE750E;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #E18424;
}

/* SELECT BOXES */
select, input, textarea {
  border-radius: 10px;
  border: 1px solid #E4F4FA;
  padding: 7px 10px;
  font-size: 1rem;
  outline: none;
  font-family: 'Open Sans';
  transition: box-shadow 0.15s border-color 0.1s;
}
select:focus, input:focus, textarea:focus {
  box-shadow: 0 0 0 2.5px #E4F4FA;
  border-color: var(--button-bg);
}

/* OVERRIDES FOR DARK TEXT ON TESTIMONIALS/REVIEWS */
.testimonial-card, .testimonial-card *, .testimonial-meta {
  color: #2A3542 !important;
}

/* PRINT OVERRIDE */
@media print {
  header, footer, .mobile-menu, .cookie-banner, #cookie-banner, .cookie-modal-overlay { display: none !important; }
}
