/* ===================================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f5f7fa;
  color: #234c64;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, picture {
  max-width: 100%;
}
a {
  color: #234c64;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #37a973;
}
ul, ol, li {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ===================================
   BRAND TYPOGRAPHY & COLORS
   =================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --primary: #234C64;
  --secondary: #37A973;
  --accent: #F5F7FA;
  --danger: #e34343;
  --shadow: 0 4px 24px 0 rgba(35,76,100,0.08);
  --corner-radius: 18px;
  --spacing: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1.5px;
}
h1 { font-size: 2.75rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 14px; }
h4 { font-size: 1.18rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol, li, blockquote {
  color: #234c64;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0 0 18px 0;
  line-height: 1.7;
}
strong, b {
  color: var(--primary);
  font-weight: 700;
}
small {font-size: 0.95rem;}

/* Artistic Headline Font Styling */
h1, h2, h3 {
  text-shadow: 2px 6px 24px rgba(35,76,100,.13), 0 1px 0 #fff;
}
h2::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 3px;
  margin-left: 8px;
  background: var(--secondary);
  border-radius: 3px;
}

/* ===================================
   LAYOUT CONTAINER
   =================================== */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--corner-radius);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 26px 10px;
    margin-bottom: 36px;
  }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background: var(--accent);
  box-shadow: 0 1px 10px rgba(35,76,100,0.09);
  z-index: 20;
}
header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 38px;
  margin-right: 12px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a.active {
  background: var(--secondary);
  color: #fff;
}
.cta {
  display: inline-block;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  background: var(--secondary);
  color: #fff;
  border-radius: 24px 6px 18px 16px;
  box-shadow: 0 8px 24px 0 rgba(55,169,115,0.09);
  letter-spacing: 0.6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.33s cubic-bezier(.23,1.18,.57,1);
  margin: 13px 0 0 0;
  border: none;
}
.cta:hover, .cta:focus {
  background: #234c64;
  color: #f5f7fa!important;
  box-shadow: 0 12px 28px 0 rgba(35,76,100,0.16);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 960px) {
  header nav {
    display: none;
  }
  .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 22px;
    z-index: 151;
    width: 52px;
    height: 52px;
    background: var(--secondary);
    color: #fff;
    font-size: 2.2rem;
    border-radius: 50%;
    box-shadow: var(--shadow);
    border: none;
    transition: background .20s;
  }
  .mobile-menu-toggle:hover{
    background: var(--primary);
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  overflow-y: auto;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #234c64;
  color: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.15, 1, .38, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 0 0;
  font-size: 2.3rem;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  transition: color .18s;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu-close:hover {
  color: var(--secondary);
  background: rgba(255,255,255,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 32px 0 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #fff;
  padding: 11px 4px 9px 0;
  border-left: 7px solid transparent;
  border-radius: 7px;
  margin-bottom: 6px;
  transition: background .17s, border-color .24s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #F5F7FA;
  background: rgba(55,169,115,0.09);
  border-left: 7px solid var(--secondary);
  padding-left: 10px;
}

@media (min-width: 961px) {
  .mobile-menu,.mobile-menu-toggle {display:none;}
}

/* ===================================
   FLEXBOX LAYOUTS - Artistic Structure
   =================================== */
.feature-grid,
.category-grid,
.service-list,
.key-facts-list,
.case-study-list,
.team-list,
.blog-list,
.values-list,
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div,
.category-grid > div,
.service-list > div,
.case-study-list > div,
.team-list > div,
.blog-list > article,
.values-list > li,
.values ul > li {
  flex: 1 1 210px;
  background: var(--accent);
  padding: 24px 22px;
  margin-bottom: 20px;
  border-radius: 24px 22px 18px 10px;
  box-shadow: 0 2px 16px 0 rgba(55,169,115,0.10);
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  min-width: 210px;
  max-width: 345px;
  transition: box-shadow .19s, transform .19s;
  position: relative;
}
.feature-grid > div:hover,
.category-grid > div:hover,
.service-list > div:hover,
.case-study-list > div:hover,
.blog-list > article:hover {
  box-shadow: 0 8px 26px 0 rgba(35,76,100,0.14);
  transform: translateY(-4px) scale(1.03);
}
/* Responsive - stack on mobile */
@media (max-width: 900px) {
  .feature-grid,
  .category-grid,
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div,
  .category-grid > div,
  .service-list > div {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.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: 20px;
  }
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container > .card,
.card-grid > .card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(35,76,100,0.09);
  border-radius: var(--corner-radius);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 200px;
  max-width: 420px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px 10px 24px 18px;
  box-shadow: 0 2px 14px 0 rgba(35,76,100,0.11);
  padding: 24px 29px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 390px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
  color: #234c64;
  transition: box-shadow .19s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(35,76,100,0.17);
  transform: translateY(-4px) scale(1.027);
}
.testimonial-card p {
  color: #222b37;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--secondary);
}
.testimonial-card span[aria-label] {
  font-size: 1.19rem;
  color: #f8c824;
}
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 18px 13px;
  }
}

/* ===================================
   FEATURE & VALUES ITEMS
   =================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 11px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--accent);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 6px;
}
.values-list img {
  width: 30px;
  height: 30px;
}
.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 10px;
}
.values ul li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: var(--accent);
  border-radius: 12px;
  padding: 10px 24px;
  color: var(--secondary);
}

/* ===================================
   BUTTONS
   =================================== */
button, .btn, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  margin: 8px 0;
  font-size: 1.14rem;
  border: none;
  border-radius: 22px 8px 18px 12px;
  background: var(--secondary);
  color: #fff;
  outline: none;
  box-shadow: 0 6px 22px 0 rgba(55,169,115,0.10);
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .18s, transform .12s;
}
button:hover, .btn:hover, .cta:hover, button:focus, .cta:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 28px 0 rgba(35,76,100,0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover {
  background: #af1a1a;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 56px 0 0 0;
  box-shadow: 0 -2px 18px 0 rgba(35,76,100,0.08);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 46px 20px 18px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: color .16s;
}
footer nav a:hover {
  color: var(--secondary);
}
footer p, footer a {
  color: #e9ecf2;
  font-size: 1.01rem;
}
footer img {
  height: 43px;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    padding: 36px 10px 14px 10px;
    text-align: center;
    align-items: center;
  }
  footer nav {align-items: center;}
  footer img {margin: 0 auto 16px auto;}
}

/* ===================================
   BLOG / ARTICLES & LISTS
   =================================== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  background: #fff;
  border-radius: 18px 30px 8px 17px;
  box-shadow: 0 2px 15px 0 rgba(35,76,100,0.09);
  padding: 24px 18px 20px 24px;
  max-width: 340px;
  min-width: 210px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .21s, transform .15s;
}
.blog-list article:hover {
  box-shadow: 0 7px 18px 0 rgba(35,76,100,0.13);
  transform: scale(1.03);
}
.blog-list article h3 {
  color: var(--secondary);
  font-size: 1.19rem;
}
.blog-list article div {
  display: flex;
  gap: 8px;
  font-size: .95rem;
  color: #8cb9be;
  font-style: italic;
  margin-bottom: 5px;
}
.blog-list article a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 600;
  margin-top: 10px;
}
.blog-list article a:hover { color: var(--primary); }
@media (max-width: 900px) {
  .blog-list { flex-direction: column; gap: 13px; }
  .blog-list article {max-width: unset;min-width: unset; width: 100%;}
}

/* LISTS, STEPS & FACTS */
.key-facts-list, .case-study-list, ol {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.key-facts-list li, .case-study-list > div, ol li {
  background: var(--accent);
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  min-width: 170px;
  font-weight: 500;
  margin-bottom: 8px;
}
ol {
  flex-direction: column;
  counter-reset: step;
  padding-left: 0;
  gap: 14px;
}
ol li {
  position: relative;
  padding-left: 38px;
}
ol li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
}

/* ===================================
   RESPONSIVE LAYOUT (MOBILE FIRST)
   =================================== */
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper { gap: 9px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.13rem; }
  .card-container, .card-grid, .feature-grid, .case-study-list, .service-list, .blog-list, .testimonial-grid { gap: 12px; }
  .card, .card-container > .card, .service-list > div, .case-study-list > div, .testimonial-card {
    min-width: unset; max-width: unset; width: 100%;
    padding: 18px 8px;
  }
}
@media (max-width: 480px) {
  .section {padding: 12px 2px;}
  .container {padding: 0 2px;}
}

/* ===================================
   COOKIE CONSENT BANNER & POPUP
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  padding: 22px 23px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 -4px 16px 0 rgba(35,76,100,0.11);
  z-index: 350;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  flex-wrap: wrap;
  border-radius: 14px 14px 0 0;
  animation: fadeinbanner .45s cubic-bezier(.15, 1, .38, 1);
}
@keyframes fadeinbanner {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner-content { flex: 4 1 300px; color: #234c64; }
.cookie-banner-actions { flex: 1 1 120px; display: flex; gap: 12px; justify-content: flex-end; }
.cookie-banner button {
  min-width: 94px;
  font-size: 1.04rem;
  padding: 9px 14px;
  border-radius: 12px;
  background: var(--secondary);
  color: #fff;
  transition: background .15s, color .15s;
}
.cookie-banner .btn-danger {
  background: #e34343; color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fff; color: #234c64;
  border: 1.2px solid #e6e9ef;
}
.cookie-banner .btn-settings:hover { background: #e6e9ef; }

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  min-width: 330px;
  max-width: 95vw;
  background: #fff;
  z-index: 500;
  box-shadow: 0 8px 32px 0 rgba(35,76,100,0.22);
  border-radius: 20px;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiepop .41s cubic-bezier(.2,1,.38,1);
}
@keyframes cookiepop{0%{opacity:0; transform:translate(-50%,-40%) scale(.95);} 100%{opacity:1; transform:translate(-50%,-50%) scale(1);}}
.cookie-modal h3 {
  font-size: 1.45rem;
  color: var(--primary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal .category-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.06rem;
  color: var(--primary);
}
.cookie-modal input[type=checkbox]{
  accent-color: var(--secondary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 7px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.45rem;
  color: #e34343;
  background: none;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex; justify-content: center; align-items: center;
  transition: background .16s;
}
.cookie-modal .close-modal:hover { background: #ffe7eb; }
@media (max-width: 600px) {
  .cookie-modal { min-width: 80vw; padding: 26px 7vw 24px 7vw; }
}

/* ===================================
   ANIMATIONS & MICROINTERACTIONS
   =================================== */
.card, .testimonial-card, .feature-grid > div, .service-list > div, .case-study-list > div, .blog-list article {
  transition: box-shadow .19s, transform .17s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .service-list > div:hover, .case-study-list > div:hover, .blog-list article:hover {
  box-shadow: 0 8px 28px 0 rgba(35,76,100,0.14);
  transform: scale(1.015) translateY(-3px);
}
.cta, .btn, button {
  transition: background .16s, color .13s, box-shadow .17s, transform .12s;
}
.cta:active, .btn:active, button:active {
  transform: scale(.98) translateY(1px);
}
img, svg { display: block; }

/* ===================================
   ELEGANT SCROLLBARS
   =================================== */
::-webkit-scrollbar {width: 9px; background: #ebedf5;}
::-webkit-scrollbar-thumb {background: var(--secondary); border-radius: 14px;}

/* ===================================
   ARTISTIC DETAILS & DECOR
   =================================== */
.section {
  border-left: 8px solid var(--secondary);
  border-bottom: 2px dashed #8fbcaa29;
}
.card, .testimonial-card {
  position: relative;
  /* Decorative blob in the corner */
}
.card::after, .testimonial-card::after {
  content: "";
  position: absolute;
  top: -18px; right: -18px;
  width: 38px;
  height: 38px;
  background: rgba(55,169,115,0.17);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

/* Hide for strict mobile (shift to left) */
@media (max-width: 500px) {
  .card::after, .testimonial-card::after {
    top: -8px; right: -8px; width: 18px; height: 18px;
  }
}

/* Artistic underline for links in cards */
.card a, .testimonial-card a, .blog-list article a {
  position: relative;
  transition: color .17s;
}
.card a:not(.cta):after,.testimonial-card a:not(.cta):after, .blog-list article a:not(.cta):after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2.5px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: 0.4;
  transition: opacity 0.18s, height 0.18s;
}
.card a:hover:not(.cta):after,.testimonial-card a:hover:not(.cta):after,.blog-list article a:hover:not(.cta):after {
  opacity: 0.9;
  height: 3px;
}

/* ======================
   SPECIAL SUPPORT TEXTS
   ====================== */
.alert, .info, .danger, .warning {
  border-radius: 12px;
  padding: 14px 20px;
  background: #f8f5df;
  color: #715608;
  font-weight: 500;
  margin: 11px 0 18px 0;
  font-size: 1.08rem;
}
.danger {
  background: #ffeaea;
  color: #a31618;
}

/* ====== MISC: Forms, Newsletter, Contact ====== */
input, textarea, select {
  background: #f5f7fa;
  padding: 11px 15px;
  border-radius: 8px;
  border: 1.2px solid #dde5ec;
  margin-bottom: 14px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border .17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.2px solid var(--secondary);
  background: #fafefb;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 7px;
  font-weight: 600;
}

/* Contact Info Icons */
ul li img[alt^="Adresse"],
ul li img[alt^="Telefon"],
ul li img[alt^="Mail"],
ul li img[alt^="Öffnungszeiten"],
.values-list img {
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: -5px;
}

/* Layout Spacing Fix: Prevent Overlaps */
.section:not(:last-child) {margin-bottom: 60px;}
.section:last-child {margin-bottom: 0;}

/* Ensure card/testimonial spacing */
.card:not(:last-child),
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* ============ Accessibility ============ */
:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/* ================ Hide visually but keep accessible ================ */
.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
}

/*
  =================
  UTILITY CLASSES
  =================
*/
.text-center {text-align: center;}
.d-flex {display: flex;}
.flex-col {flex-direction: column;}
.flex-row {flex-direction: row;}
.align-center {align-items: center;}
.gap-20 {gap: 20px;}
.mb-20 {margin-bottom: 20px;}
.mt-24 {margin-top: 24px;}

/*
  =====================================================
  ARTISTIC STYLE OVERRIDES FOR "creative_artistic" FEEL
  =====================================================
*/
body {
  background: linear-gradient(113deg, #F5F7FA 70%, #ddfbec 100%);
}
.section {
  border-image: linear-gradient(to bottom, var(--secondary) 30%, var(--primary) 80%) 1 100%;
  box-shadow: 0 5px 18px 0 rgba(55,169,115,0.10);
  background: #fff;
  position: relative;
  overflow: visible;
}
.section::before {
  content: '';
  position: absolute;
  left: -42px; top: -32px;
  width: 78px; height: 78px;
  background: rgba(35,76,100,0.07);
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.card, .testimonial-card {
  /* Colorful gradient dot (artistic motif) */
}
.card::before, .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: -18px; left: -18px;
  width: 32px;
  height: 32px;
  background: var(--secondary);
  opacity: 0.13;
  border-radius: 60% 38% 55% 69%/64% 35% 47% 56%;
  z-index: 1;
  pointer-events: none;
}
.section h2::after {
  margin-bottom: 3.5px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Artistic action link arrow */
.cta:after {
  content: '\2192';
  font-size: 1.13em;
  margin-left: 12px;
  color: #fff;
  transition: margin-left .18s;
}
.cta:hover:after {
  margin-left: 18px;
}

/* Zig-zag underline for H1 (optionally) */
h1 {
  position: relative;
}
h1::after {
  content: '';
  display: block;
  margin-top: 14px;
  width: 88px;
  height: 7px;
  background: url('data:image/svg+xml;utf8,<svg width="90" height="8" viewBox="0 0 90 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 7L10 1L20 7L30 1L40 7L50 1L60 7L70 1L80 7L90 1" stroke="%2337A973" stroke-width="2.8"/></svg>') repeat-x;
  background-size: contain;
  opacity: .82;
  pointer-events: none;
}

@media (max-width: 600px) {
  h1::after { width: 55vw; }
  .section::before { left: -28px; top: -17px; width: 37px; height: 37px; }
}

/* ========= END OF ARTISTIC STYLE ========= */