/* === 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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #E5EAF5;
  color: #223A52;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #267356;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #48A47B;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

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


/* === SPACING AND UTILITIES === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px 0 rgba(34,58,82,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 0 260px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.22s cubic-bezier(0.47,1.64,0.41,0.8);
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(34,58,82,0.18);
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(34,58,82,0.09);
  min-width: 0;
  position: relative;
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #ffffff;
  box-shadow: 0 2px 14px 0 rgba(34,58,82,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
header img[alt="Subtle Storm Digital"] {
  max-height: 38px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #223A52;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e5eaf5;
  color: #267356;
  outline: none;
}

/* === CTA BUTTONS === */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 28px;
  background: #48A47B;
  color: #fff;
  box-shadow: 0 6px 12px 0 rgba(72,164,123,0.12);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.2s, transform 0.18s cubic-bezier(0.47,1.64,0.41,0.8);
  outline: none;
}
.cta.primary {
  background: linear-gradient(100deg, #48A47B 70%, #267356 100%);
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #267356;
  color: #fff;
  box-shadow: 0 10px 22px 0 rgba(72,164,123,0.18);
  transform: scale(1.05) rotate(-1deg);
}

/* === HERO SECTION === */
.hero {
  padding: 48px 0 24px;
  background: #fffbe9;
  width: 100%;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: 0 6px 24px 0 rgba(34,58,82,0.06);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: #223A52;
  margin-bottom: 12px;
  text-shadow: 0 2px 0 #e5eaf5;
  letter-spacing: 0.6px;
}
.hero p {
  font-size: 1.17rem;
  color: #223A52;
  margin-bottom: 22px;
  max-width: 650px;
}

/* === FEATURES SECTION === */
.features {
  padding: 40px 0 12px;
  width: 100%;
}
.features h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #267356;
  margin-bottom: 28px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  flex: 1 0 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(34,58,82,0.09);
  padding: 28px 18px 22px 18px;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  margin-bottom: 16px;
  transition: box-shadow 0.18s, transform 0.22s cubic-bezier(0.47,1.64,0.41,0.8);
  position: relative;
}
.feature:hover, .feature:focus {
  box-shadow: 0 10px 32px 0 rgba(34,58,82,0.14);
  transform: rotate(1.3deg) scale(1.04);
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 0 #e5eaf5);
}
.feature h3 {
  font-size: 1.17rem;
  color: #223A52;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.feature p {
  color: #267356;
  margin-bottom: 0;
  font-size: 1rem;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #e5eaf5;
  padding: 42px 0 20px 0;
}
.testimonials h2 {
  color: #233A52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
}
.testimonial-card {
  background: #fff;
  color: #223A52;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(34,58,82,0.10);
  margin: 0 auto 20px auto;
  padding: 28px 22px 18px 22px;
  align-items: flex-start;
  max-width: 570px;
  font-size: 1.1rem;
  transition: box-shadow 0.15s, transform 0.2s cubic-bezier(0.6,1.35,0.55,0.93);
}
.testimonial-card strong {
  margin-top: 12px;
  color: #267356;
  font-size: 1em;
}
.testimonial-card .star-rating {
  margin-top: 10px;
  color: #FFD600;
  font-size: 1.15em;
  letter-spacing: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 26px 0 rgba(34,58,82,0.16);
  transform: scale(1.025) rotate(0.5deg);
}

/* === ABOUT OVERVIEW / GENERIC SECTIONS === */
.about-overview, .values, .benefits, .contact, .thank-you, .cookie-richtlinie, .datenschutzerklaerung, .gdpr, .nutzungsbedingungen {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 2px 14px 0 rgba(34,58,82,0.05);
  margin: 24px 0 34px 0;
}
.about-overview h2, .values h2, .benefits h2 {
  font-size: 2rem;
  color: #267356;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
  font-weight: 800;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.07rem;
  color: #223A52;
}
.text-section ul {
  list-style: disc;
  margin-left: 1.5em;
  margin-bottom: 0;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1em;
  color: #267356;
}
.tagline {
  font-family: 'Montserrat', cursive;
  color: #48A47B;
  margin: 18px 0 6px 0;
  font-size: 1.18rem;
  text-align: left;
}

/* === SERVICE CARDS === */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.services .service {
  flex: 1 0 220px;
  background: #f6f9fd;
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(34,58,82,0.07);
  padding: 26px 16px 20px 16px;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  margin-bottom: 16px;
  transition: box-shadow 0.17s, transform 0.19s cubic-bezier(0.38,1.6,0.54,1);
  position: relative;
}
.services .service:hover {
  box-shadow: 0 10px 30px 0 rgba(72,164,123,0.12);
  transform: scale(1.04) rotate(-1deg);
}
.services .service img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}
.services .service h2 {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223A52;
  margin-bottom: 9px;
}
.services .service p {
  color: #223A52;
  font-size: 1.01rem;
  margin-bottom: 0;
}
.services .service-price {
  color: #267356;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  margin-top: 8px;
}

.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
}
.benefits li {
  background: #E5EAF5;
  border-radius: 24px;
  padding: 14px 18px 14px 12px;
  font-size: 1rem;
  color: #267356;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-weight: 500;
  margin-bottom: 0;
}
.benefits img {
  width: 28px;
  height: 28px;
}

/* === BLOG === */
.blog-intro .topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.topic-tags span {
  background: #48A47B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 13px;
  font-size: 0.97em;
  border-radius: 15px;
  box-shadow: 0 2px 9px 0 rgba(72,164,123,0.09);
  animation: playful-pop 0.9s both;
}
@keyframes playful-pop {
  0% { transform: scale(0.7) rotate(-15deg); opacity:0; }
  70% { transform: scale(1.07) rotate(2deg); opacity:1; }
  100% { transform: scale(1) rotate(0deg); }
}
.blog-list {
  background: #fff;
  border-radius: 36px;
  margin: 24px 0 34px 0;
  box-shadow: 0 2px 14px 0 rgba(34,58,82,0.04);
  padding: 32px 20px;
}
.blog-list h2 {
  color: #267356;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 20px;
}
.blog-post {
  background: #e5eaf5;
  border-radius: 19px;
  padding: 18px 16px 12px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.18s cubic-bezier(0.46,1.45,0.38,1.2);
  box-shadow: 0 1.5px 12px 0 rgba(34,58,82,0.09);
  position: relative;
}
.blog-post:hover {
  box-shadow: 0 8px 18px 0 rgba(34,58,82,0.16);
  transform: scale(1.017) rotate(0.7deg);
}
.blog-post h3 {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223A52;
  margin-bottom: 6px;
}
.blog-post p {
  color: #267356;
  font-size: 1em;
  margin-bottom: 12px;
}
.read-more {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #48A47B;
  text-decoration: underline;
  font-size: 1em;
  transition: color 0.16s;
}
.read-more:hover, .read-more:focus {
  color: #223A52;
}

/* === CTA BANNER === */
.cta-banner {
  background: #267356;
  color: #fff;
  border-radius: 38px;
  box-shadow: 0 2px 14px 0 rgba(72,164,123,0.09);
  margin: 54px 0 0 0;
}
.cta-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner h2 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #223A5233;
}
.cta-banner .cta {
  background: #fff;
  color: #267356;
  font-weight: 900;
  border-radius: 28px;
  box-shadow: 0 4px 18px 0 rgba(225,239,225,0.11);
}
.cta-banner .cta:hover {
  background: #e5eaf5;
  color: #48A47B;
}

/* === CONTACT SECTION === */
.contact-details strong {
  color: #48A47B;
  font-weight: 700;
}
.contact-details {
  background: #e5eaf53a;
  border-radius: 14px;
  padding: 14px 15px;
  margin-bottom: 12px;
  font-size: 1em;
}
.map {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #223A52;
  font-size: 1em;
  margin-top: 8px;
}
.map img {
  width: 30px;
}

/* === FOOTER === */
footer {
  background: #fff;
  padding: 42px 0 28px 0;
  border-top: 3px solid #E5EAF5;
  margin-top: 64px;
  font-size: 0.97em;
  color: #223A52;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  max-height: 45px;
}
.company-info {
  margin-bottom: 20px;
  color: #267356;
}
.footer-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #267356;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1em;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #48A47B;
  text-decoration: none;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #48A47B;
  color: #fff;
  border: none;
  padding: 6px 18px 6px 14px;
  border-radius: 18px;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 3px 12px 0 rgba(72,164,123,0.09);
  transition: background 0.16s, transform 0.2s;
  z-index: 502;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #267356;
  transform: scale(1.15) rotate(-7deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #223A52EE;
  z-index: 501;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.33,1,0.68,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: #fff;
  color: #267356;
  border: none;
  border-radius: 50%;
  margin: 12px 18px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 1.5px 7px 0 rgba(225,239,225,0.13);
  transition: background 0.17s, color 0.12s, transform 0.17s;
  z-index: 602;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #e5eaf5; color: #48A47B; transform: scale(1.12);}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 48px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 0.6px;
  padding: 12px 18px;
  border-radius: 10px;
  transition: background 0.13s, color 0.12s;
  width: 80%;
  text-align: center;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5EAF533;
  color: #FFD600;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #223A52;
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(34,58,82,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 22px 32px;
  z-index: 9999;
  gap: 24px;
  font-size: 1rem;
  animation: cookie-slideup 0.8s cubic-bezier(0.24,1,0.42,1);
}
@keyframes cookie-slideup {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  border: none;
  background: #48A47B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(72,164,123,0.11);
  margin-left: 0;
  transition: background 0.16s, color 0.12s, transform 0.12s;
}
.cookie-btn.cookie-reject {
  background: #FFD600;
  color: #223A52;
}
.cookie-btn.cookie-settings {
  background: #e5eaf5;
  color: #267356;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #267356;
  color: #fff;
  transform: scale(1.085) rotate(-1deg);
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #223A52;
  color: #FFD600;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #48A47B;
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #223A52bb;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(0.33,1,0.68,1);
  animation: cookie-modal-fade-in 0.36s cubic-bezier(0.24,1,0.4,0.89);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
@keyframes cookie-modal-fade-in {
  0% { opacity:0; transform: scale(0.92) translateY(80px);}
  100% { opacity:1; transform: scale(1) translateY(0);}
}
.cookie-modal {
  background: #fff;
  color: #223A52;
  border-radius: 28px;
  padding: 42px 28px 32px 28px;
  box-shadow: 0 8px 48px 0 rgba(34,58,82,0.13);
  max-width: 410px;
  width: 98%;
}
.cookie-modal h2 {
  color: #267356;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1.01em;
}
.cookie-category label {
  font-weight: 500;
  color: #223A52;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #e5eaf5;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle:checked {
  background: #48A47B;
}
.cookie-toggle:disabled {
  opacity: 0.65;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(34,58,82,0.09);
  transition: left 0.16s;
}
.cookie-toggle:checked::before {
  left: 21px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 25px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.18;
}
h1 {
  font-size: 2.1rem;
  color: #223A52;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
h2 {
  font-size: 1.55rem;
  color: #48A47B;
  margin-bottom: 13px;
}
h3 {
  font-size: 1.2rem;
  color: #267356;
  margin-bottom: 9px;
}

p, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: #223A52;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #267356;
}
em, i {
  color: #48A47B;
  font-style: italic;
}

/* === PLAYFUL DYNAMIC DECORATIONS === */
h1, h2, .main-nav a, .mobile-nav a {
  letter-spacing: 0.7px;
}
h2::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 7px;
  background-color: #FFD600;
  margin-left: 14px;
  margin-bottom: 2px;
  border-radius: 7px;
  vertical-align: baseline;
  opacity: 0.72;
  animation: playful-underline 1.4s infinite alternate cubic-bezier(0.32,1,0.52,1);
}
@keyframes playful-underline {
  0% {transform: scaleX(0.82); background: #FFD600;}
  100% {transform: scaleX(1.06); background: #48A47B;}
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  header .container,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    height: auto;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 992px) {
  .feature-grid, .services .service-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .services .service, .card {
    max-width: 100%;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
  .content-wrapper {
    gap: 13px;
    margin-bottom: 28px;
  }
}
@media (max-width: 520px) {
  .hero, .about-overview, .values, .benefits, .blog-list, .cta-banner {
    border-radius: 20px;
    padding: 15px 0;
  }
  .section {
    padding: 20px 6px;
    margin-bottom: 24px;
  }
  .feature, .services .service, .card, .testimonial-card, .blog-post {
    padding: 14px 9px;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .cta {
    font-size: 1.01rem;
    padding: 9px 18px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 8px 14px 10px;
    font-size: 0.97em;
  }
  .cookie-consent-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 28px 9px 19px 9px;
    font-size: 1em;
    width: 100vw;
    border-radius: 18px;
    min-width: 0;
    max-width: 98vw;
  }
}
@media (max-width: 560px) {
  .testimonial-card {
    padding: 13px 7px 11px 7px;
  }
  .footer-logo img {
    max-height: 32px;
  }
}

/* --- THANK-YOU PAGE --- */
.thank-you {
  background: #fffbe9;
  border-radius: 38px;
  box-shadow: 0 2px 14px 0 rgba(255,214,0,0.07);
  margin: 40px 0 34px 0;
  padding: 34px 0 36px 0;
  text-align: center;
}

.thank-you h1 {
  color: #48A47B;
  margin-bottom: 12px;
  font-size: 2rem;
}

.thank-you .cta.primary {
  margin-top: 28px;
  background: #267356;
  color: #fff;
}

/* === FOCUS STYLES FOR ACCESSIBILITY === */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2.5px dashed #FFD600;
  outline-offset: 2px;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 9px;
  background: #E5EAF5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #48A47B;
  border-radius: 8px;
}

/* === PLAYFUL ANIMATIONS === */
.card, .feature, .testimonial-card, .blog-post, .services .service {
  animation: card-float 0.7s cubic-bezier(0.34,1.66,0.57,1) both;
}
@keyframes card-float {
  0% { opacity: 0; transform: scale(0.96) translateY(24px);}
  100% { opacity: 1; transform: scale(1) translateY(0);}
}

/**********************************
**  LAYOUT / FLEXBOX ALIGNMENTS  **
***********************************/
/* Verified according to requirements */

/* CRITICAL: NO GRID OR COLUMN PROPERTIES ANYWHERE */
