/* =====================
   CSS RESET & BASE STYLES
===================== */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F2F2F2;
  color: #112233;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #15417B; 
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #38A95C;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* Typography Scale */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #15417B;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #15417B;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #15417B;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
p, li, small {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
}
strong {
  font-weight: 700;
  color: #15417B;
}
small {
  color: #15417B;
  font-size: 0.97rem;
  font-weight: 600;
}


/* =====================
   LAYOUT CONTAINERS
===================== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Section Spacing */
.section,
.hero,
.features,
.services,
.benefits,
.services-overview,
.cta-section,
.about,
.values,
.team,
.faq,
.support,
.contact,
.privacy,
.gdpr,
.terms,
.thank-you,
.cookie-policy {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(21,65,123,0.07);
}

/* =====================
   NAVIGATION
===================== */
header {
  background: #15417B;
  padding: 0;
  box-shadow: 0 2px 16px rgba(21,65,123,0.10);
  z-index: 97;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.main-nav a {
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta {
  background: #38A95C;
  color: #fff;
  padding: 10px 26px;
  border-radius: 18px;
  font-size: 1.08rem;
  font-weight: bold;
  letter-spacing: 0.7px;
  box-shadow: 0 2px 12px rgba(56,169,92,0.09);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-left: 12px;
}
.main-nav a.cta:hover,
.main-nav a.cta:focus {
  background: #fff;
  color: #38A95C;
  transform: translateY(-2px) scale(1.04);
}
.main-nav a:hover,
.main-nav a:focus:not(.cta) {
  background: rgba(56, 169, 92, 0.13);
  color: #38A95C;
}
.main-nav img {
  height: 36px;
  display: block;
  margin-right: 18px;
  background: #fff;
  border-radius: 7px;
  padding: 1px 6px;
}

/* Hide main-nav and show burger on mobile */
.mobile-menu-toggle {
  display: none;
  background: #38A95C;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 10px;
  padding: 4px 14px 5px 10px;
  margin: 12px 16px 12px auto;
  outline: none;
  border: none;
  position: absolute;
  top:17px;
  right:10px;
  z-index: 110;
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #15417B;
  color: #38A95C;
  outline: 2px solid #38A95C;
}

.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #15417B;
  z-index: 9999;
  transition: transform 0.36s cubic-bezier(0.8,0,0.25,1);
  transform: translateX(0);
  box-shadow: 0 6px 48px rgba(0,0,0,0.20);
  animation: mobileMenuSlideIn 0.35s;
}
@keyframes mobileMenuSlideIn {
  from {transform: translateX(100vw); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2.3rem;
  color: #fff;
  background: #38A95C;
  border-radius: 50%;
  width: 42px;
  height:42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  border: none;
  transition: background 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #38A95C;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: 90vw;
  margin-left: 5vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: rgba(56,169,92,0.09);
  border-radius: 11px;
  padding: 16px 0;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #38A95C;
  background: #fff;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav a {
    padding: 6px 8px;
    font-size: 1rem;
  }
  .main-nav img { height: 28px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; } /* always hide on desktop */
  .mobile-menu-toggle { display: none !important; }
}

/* =====================
   HERO SECTION
===================== */
.hero {
  background: linear-gradient(100deg,#38A95C 0%,#15417B 100%);
  color: #fff;
  margin-bottom: 60px;
  padding: 70px 20px;
  display: flex;
  align-items: center;
  min-height: 320px;
  box-shadow: 0 8px 32px rgba(56,169,92,0.11);
  border-radius: 24px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  max-width: 700px;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
}
.hero p {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.hero .cta {
  background: #fff;
  color: #15417B;
  font-weight: bold;
  border-radius: 24px;
  padding: 13px 38px;
  margin-top: 14px;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px rgba(255,255,255,0.19);
  transition: background 0.21s, color 0.16s, transform 0.16s;
}
.hero .cta:hover,
.hero .cta:focus {
  background: #15417B;
  color: #38A95C;
  transform: scale(1.05);
}

/* =====================
   FEATURES SECTION
===================== */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features ul li {
  background: #F2F2F2;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(56,169,92,0.09);
  padding: 24px 30px 18px 22px;
  min-width: 200px;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 1.05rem;
  flex: 1 1 180px;
  transition: box-shadow 0.19s, transform 0.19s;
  margin-bottom: 20px;
}
.features ul li:hover,
.features ul li:focus-within {
  box-shadow: 0 6px 32px rgba(21,65,123,0.10);
  transform: translateY(-2px) scale(1.02);
}
.features ul img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 3px;
}
.features ul strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  color: #15417B;
}
.features ul p {
  font-size: 0.98rem;
  color: #155;
}

/* =====================
   SERVICES SECTION
===================== */
.services ul, .services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.services ul li, .services-overview ul li {
  background: #fff;
  border: 2px solid #38A95C;
  border-radius: 13px;
  padding: 19px 18px 16px 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  min-width: 250px;
  transition: box-shadow 0.13s, border-color 0.18s;
  box-shadow: 0 1px 12px rgba(56,169,92,0.08);
}
.services ul li:hover,
.services ul li:focus-within,
.services-overview ul li:hover {
  border-color: #15417B;
  box-shadow: 0 6px 24px rgba(21,65,123,0.10);
}
.services ul strong, .services-overview ul strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15417B;
  font-size: 1.09rem;
}

/* =====================
   PROCESS & BENEFITS
===================== */
.process ol {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  counter-reset: step;
  margin-bottom: 17px;
}
.process ol li {
  position: relative;
  background: #e5f8e6;
  border-radius: 13px;
  padding: 22px 18px 20px 22px;
  flex: 1 1 200px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font-size: 1.04rem;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(56,169,92,0.08);
}
.process ol li img {
  width: 34px;
  height: 34px;
}
.process ol li strong {
  color: #15417B;
  margin-left: 4px;
}
.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.benefits ul li {
  flex: 1 1 190px;
  background: #fff;
  border-left: 5px solid #38A95C;
  border-radius: 10px;
  padding: 17px 19px 13px 16px;
  font-size: 1.02rem;
  color: #363;
  box-shadow: 0 1px 9px rgba(56,169,92,0.08);
  margin-bottom: 20px;
}
.facts,
.trust-elements {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 6px 0 0 0;
}
.facts span, .trust-elements span {
  background: #15417B;
  color: #fff;
  border-radius: 10px;
  padding: 7px 15px 7px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.97rem;
  font-weight: 600;
  transition: background 0.13s;
  margin-bottom: 5px;
}
.facts span img, .trust-elements span img {
  width: 19px;
  height: 19px;
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 28px 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(56,169,92,0.11);
  margin-bottom: 20px;
  border-left: 7px solid #38A95C;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(21,65,123,0.13);
  border-color: #15417B;
  transform: scale(1.03);
}
.testimonials .testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonials .testimonial-card small {
  color: #38A95C;
  font-weight: 700;
  font-size: 1.01rem;
}

/* =====================
 CTA SECTIONS
===================== */
.cta-section {
  background: #38A95C;
  color: #fff;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 3px 19px rgba(56,169,92,0.16);
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 15px;
}
.cta-section h2 {
  color: #fff;
}
.cta-section p {
  color: #fff;
  font-size: 1.09rem;
}
.cta-section .cta {
  margin-top: 7px;
  background: #fff;
  color: #38A95C;
  font-weight: 700;
  border-radius: 21px;
  padding: 12px 34px;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px rgba(21,65,123,0.07);
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
.cta-section .cta:hover,
.cta-section .cta:focus {
  background: #15417B;
  color: #fff;
  transform: scale(1.04);
}

/* =====================
   SUPPORT CONTACT INFO
===================== */
.support-contact-info {
  background: #F2F2F2;
  border-radius: 11px;
  padding: 13px 18px;
  font-size: 1.07rem;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.support-contact-info img {
  width: 19px;
  margin-right: 7px;
  vertical-align: middle;
}

/* =====================
   FAQ LIST
===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #e5f8e6;
  border-radius: 12px;
  padding: 19px 20px 13px 22px;
  box-shadow: 0 1px 8px rgba(56,169,92,0.09);
  transition: box-shadow 0.15s, transform 0.15s;
}
.faq-item:hover,
.faq-item:focus-within {
  box-shadow: 0 5px 24px rgba(21,65,123,0.10);
  transform: scale(1.01);
}
.faq-item h2 {
  font-size: 1.24rem;
  margin-bottom: 7px;
  color: #38A95C;
}
.faq-item p {
  font-size: 1.05rem;
  color: #222;
}

/* =====================
   CARDS (GENERIC)
===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(56,169,92,0.10);
  padding: 20px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 24px rgba(21,65,123,0.13);
  transform: scale(1.01);
}

/* CONTENT ALIGNMENT PATTERNS */
.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;
}

/* =====================
   PRICING TABLES
===================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 22px;
  box-shadow: 0 1px 11px rgba(21,65,123,0.06);
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
  font-family: 'Open Sans', Arial, sans-serif;
}
thead th {
  background: #15417B;
  color: #fff;
  padding: 17px 10px;
  font-weight: 700;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
tbody tr {
  border-bottom: 1px solid #e5e5e5;
}
tbody td {
  padding: 13px 10px;
  color: #112233;
  font-size: 1rem;
  font-weight: 500;
}
tbody tr:nth-child(odd) td {
  background: #f4faff;
}
tbody tr:nth-child(even) td {
  background: #fff;
}
tfoot td {
  padding: 10px;
  background: #eaffea;
}

/* =====================
   MAP SECTION (Contact)
===================== */
.map-location {
  background: #e5f8e6;
  border-radius: 11px;
  padding: 13px 17px;
  font-size: 1.07rem;
  color: #15417B;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 11px;
}
.map-location img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #15417B;
  color: #fff;
  padding: 27px 0 35px 0;
  box-shadow: 0 -2px 16px rgba(21,65,123,0.08);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-wrapper img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff !important;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0 2px 3px 2px;
  border-radius: 5px;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:hover {
  background: #38A95C;
  color: #fff;
}
.footer-contact {
  font-size: 1rem;
  color: #F2F2F2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-contact span {
  color: #38A95C;
  margin-top: 4px;
  font-size: 0.97rem;
}

/* =====================
   COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #15417B;
  color: #fff;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 18px 19px 20px;
  box-shadow: 0 -2px 24px rgba(21,65,123,0.15);
  font-size: 1.08rem;
  animation: cookieBannerFadeIn 0.4s;
}
@keyframes cookieBannerFadeIn {
  from {bottom: -80px; opacity: 0;}
  to {bottom: 0; opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #38A95C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9px;
  padding: 8px 22px;
  border: none;
  margin: 0;
  min-width: 110px;
  transition: background 0.18s, color 0.13s, transform 0.13s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #fff;
  color: #38A95C;
  outline: 0;
  transform: translateY(-2px) scale(1.04);
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #15417B;
  font-weight: 800;
  border: 2px solid #38A95C;
  padding: 8px 16px;
  transition: background 0.17s, color 0.15s;
}
.cookie-banner button.cookie-settings:hover {
  background: #38A95C;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,65,123,0.74);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalFade 0.29s;
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #112233;
  border-radius: 21px;
  padding: 34px 30px 22px 30px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 6px 52px rgba(21,65,123,0.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #15417B;
  text-align: left;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.cookie-modal .category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #38A95C;
}
.cookie-modal .category strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #38A95C;
  font-size: 1.08rem;
}
.cookie-modal .category.essential input[type=checkbox] {
  accent-color: #15417B;
}
.cookie-modal .category.essential strong {
  color: #15417B;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #38A95C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 10px;
  font-size: 1rem;
  padding: 8px 18px;
  border: none;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal button.cancel {
  background: #fff;
  color: #15417B;
  border: 1.5px solid #15417B;
}
.cookie-modal button.cancel:hover{
  background: #15417B;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #15417B;
  color: #fff;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .modal-close:hover {
  background: #38A95C;
}

/* =====================
   BUTTONS & CTA
===================== */
.cta, button.cta,
input[type=submit].cta {
  background: #38A95C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 21px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  transition: background 0.21s, color 0.17s, transform 0.17s;
  box-shadow: 0 2px 16px rgba(56,169,92,0.09);
  display: inline-block;
  text-align: center;
}
.cta:hover, .cta:focus,
button.cta:focus, button.cta:hover {
  background: #15417B;
  color: #38A95C;
  outline: none;
  transform: translateY(-2px) scale(1.03);
}

/* =====================
   GENERIC
===================== */
.text-section {
  background: #F2F2F2;
  border-radius: 11px;
  padding: 15px 21px;
  font-size: 1.1rem;
  margin-bottom: 7px;
}


/* =====================
   RESPONSIVE DESIGN
===================== */
@media (max-width: 1100px) {
  .container { max-width: 966px; }
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .container { padding: 0 6px; }
  .hero {
    padding: 42px 6px;
    border-radius: 17px;
    min-height: 220px;
  }
  .section,
  .features,
  .services,
  .services-overview,
  .cta-section,
  .about,
  .values,
  .team,
  .faq,
  .support,
  .contact,
  .privacy,
  .gdpr,
  .terms,
  .thank-you,
  .cookie-policy {
    padding: 28px 6px;
    margin-bottom: 35px;
    border-radius: 14px;
  }
  .features ul, .services ul, .benefits ul, .process ol, .services-overview ul {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonials .testimonial-card, .testimonial-card {
    padding: 16px 9px 17px 13px;
    font-size: 1rem;
    border-left-width: 3.5px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .facts, .trust-elements {
    gap: 10px;
  }
  .cookie-modal {
    padding: 20px 6vw 14px 6vw;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.23rem; }
  .hero {
    padding: 28px 3px;
    min-height: 120px;
    border-radius: 8px;
  }
  .section,
  .features,
  .cta-section {
    padding: 15px 2px;
    margin-bottom: 15px;
    border-radius: 9px;
  }
}

/* =====================
   VIBRANT & ENERGETIC DESIGN EFFECTS
===================== */
.section, .card, .testimonial-card, .faq-item, .features ul li, .services ul li, .benefits ul li, .footer-nav a, .content-wrapper, .highlight {
  transition: box-shadow 0.13s, transform 0.13s;
}
.section:hover, .card:hover, .testimonial-card:hover, .faq-item:hover, .features ul li:hover, .services ul li:hover, .benefits ul li:hover {
  box-shadow: 0 7px 36px rgba(56,169,92,0.14);
  transform: translateY(-2.5px) scale(1.015);
}

/* Micro Interaction */
.cta, button.cta, .cta-section .cta {
  position: relative;
  overflow: hidden;
}
.cta::after,
button.cta::after {
  content: '';
  position: absolute;
  left: 110%;
  top: 50%;
  width: 120%;
  height: 220%;
  background: rgba(56,169,92,0.23);
  border-radius: 70%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%) scale(0);
  transition: transform 0.31s;
}
.cta:active::after,
.cta:focus:active::after,
button.cta:active::after {
  transform: translateY(-50%) scale(1.1);
  transition: transform 0.07s;
}

/* Accessibility: High contrast for critical sections */
.testimonials .testimonial-card,
.testimonial-card {
  background: #fff;
  color: #223;
  border-left: 7px solid #38A95C;
}

/* Visited links */
a:visited {
  color: #15417B;
}

/* Hide visually */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
