/* Silent Myth Steuerresidenz - Soft Pastel Flexbox Responsive CSS */

/* CSS RESET/Normalize (modern minimal) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F8FAFD;
  color: #21324B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 10px;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.4em;
}
a {
  color: #257B6E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #087C63;
  text-decoration: underline;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
button {
  cursor: pointer;
}

/* Brand fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1A2538;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, address, .container, .content-wrapper, .text-section, .footer-nav {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2A3D54;
  line-height: 1.7;
}

/* Layout base */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Pastel color palette */
:root {
  --brand-primary: #21324B;
  --brand-secondary: #F3F6FA;
  --brand-accent: #257B6E;
  --brand-accent2: #A1D6CE;
  --brand-bg: #F8FAFD;
  --brand-pink: #F8D8D8;
  --brand-lavender: #E4E8F8;
  --brand-yellow: #FCF7D1;
  --brand-blue: #D8ECF8;
  --brand-green: #D6F3E8;
  --brand-cta: #087C63;
  --brand-card: #FFFFFF;
}

/* Header */
header {
  background: var(--brand-secondary);
  box-shadow: 0 2px 12px 0 rgba(33, 50, 75, 0.06);
  width: 100%;
  z-index: 90;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.header img, header img {
  height: 42px;
  width: auto;
  margin-right: 10px;
  border-radius: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #273047;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-blue);
  color: var(--brand-primary);
}
.cta-button {
  background: linear-gradient(90deg, var(--brand-accent2) 0%, var(--brand-cta) 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px 0 rgba(33,50,75,0.05);
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  margin-left: 8px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--brand-cta) 0%, var(--brand-accent2) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px 0 rgba(33,50,75,0.14);
  outline: none;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(145deg, var(--brand-blue) 0%, var(--brand-yellow) 100%);
  border-radius: 0 0 20px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 32px 0 rgba(33, 50, 75, 0.04);
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero-section h1 {
  color: var(--brand-primary);
  font-size: 2.6rem;
  line-height: 1.12;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  text-shadow: 0 2px 8px #e4e8f844;
  margin-bottom: 0;
}
.hero-section p {
  font-size: 1.25rem;
  color: #3B4A5E;
  margin-bottom: 0;
}

/* Features - Example for .features-grid etc */
.features-grid, .trust-signals-grid, .values-grid, .blog-teasers-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.features-grid > div, .trust-signals-grid > div, .values-grid > div, .benefits-grid > div, .blog-teasers-grid > div {
  background: var(--brand-card);
  box-shadow: 0 2px 14px 0 rgba(33, 50, 75, 0.04);
  border-radius: 18px;
  padding: 26px 20px 20px 20px;
  flex: 1 1 210px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.features-grid > div:hover, .trust-signals-grid > div:hover, .values-grid > div:hover, .benefits-grid > div:hover, .blog-teasers-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(33,50,75,0.17);
  transform: translateY(-3px) scale(1.025);
}
.features-grid img, .trust-signals-grid img, .values-grid img, .benefits-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
  border-radius: 10px;
  background: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(33,50,75,0.06);
  padding: 7px;
}
.features-grid h3, .trust-signals-grid h3, .values-grid h3, .benefits-grid span, .blog-teasers-grid h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: var(--brand-primary);
}
.features-grid p, .trust-signals-grid p, .values-grid p, .blog-teasers-grid p {
  color: #39455A;
  margin-bottom: 0;
}

/* Certifications */
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 16px 0;
  color: #06513F;
  font-weight: 500;
  align-items: center;
  font-size: 1rem;
}
.certifications img {
  height: 20px;
  margin-right: 5px;
  border-radius: 0;
  background: none;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.partner-logos img {
  height: 34px;
}

/* Button Styling */
button, .cta-button {
  border: none;
  outline: none;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.17s, transform 0.13s, box-shadow 0.17s;
}
.mobile-menu-toggle, .mobile-menu-close {
  background: var(--brand-blue);
  color: var(--brand-primary);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  box-shadow: 0 2px 12px 0 rgba(33, 50, 75, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 105;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus,
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-cta);
  color: #fff;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.25rem;
  background: var(--brand-pink);
  color: var(--brand-primary);
}

/* Hide burger on desktop, show on mobile */
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1024px) {
  .main-nav,.cta-button {
    display: none !important;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(235,240,249,0.97);
  box-shadow: 0 0 24px 0 rgba(33,50,75,0.10);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  z-index: 112;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 80px;
  margin-left: 34px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 11px 0;
  border-radius: 9px;
  width: fit-content;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-blue);
  color: var(--brand-cta);
}

/* Cards, Grids, and Flex components */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-card);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(33,50,75,0.04);
  margin-bottom: 20px;
  padding: 23px 20px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(33,50,75,0.14);
  transform: scale(1.021);
}
.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-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #FCF7D1;
  color: #243354;
  box-shadow: 0 2px 12px 0 rgba(33, 50, 75, 0.07);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 260px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  font-family: 'PT Sans', 'Roboto', Arial, sans-serif;
  position: relative;
  border: 1px solid #F3E397;
}
.testimonial-card strong {
  font-weight: bold;
  color: #173247;
  font-size: 0.97em;
}
.testimonial-card p {
  font-size: 1.11em;
  color: #2B3144;
}

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

/* CTAs & Section Highlights */
.cta-section {
  background: linear-gradient(87deg, #A1D6CE 0%, #F3F6FA 100%);
  border-radius: 20px;
  box-shadow: 0 5px 32px 0 rgba(170,225,220,0.12);
  padding: 64px 0;
  margin-bottom: 60px;
  text-align: center;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 20px;
}
.cta-section h2 {
  color: #21574B;
}

/* Footer */
footer {
  background: var(--brand-secondary);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 20px 0 rgba(33,50,75,0.03);
  margin-top: 32px;
  padding: 32px 0 20px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--brand-accent);
  font-weight: 500;
  font-size: 1rem;
  background: #E4E8F8;
  padding: 7px 19px;
  border-radius: 7px;
  transition: background 0.12s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-blue);
  color: var(--brand-cta);
}
footer address {
  font-style: normal;
  color: #34405B;
  margin-bottom: 10px;
  font-size: 1rem;
}
footer div {
  color: #3B4A5E;
  font-size: 0.98rem;
  margin-top: 6px;
}
footer a {
  color: #21574B;
  transition: color .13s;
}
footer a:hover, footer a:focus {
  color: #087C63;
  text-decoration: underline;
}

/* Blog Featured & Grids */
.blog-featured-post {
  background: var(--brand-lavender);
  border-radius: 16px;
  padding: 24px 22px 24px 22px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px 0 rgba(33, 50, 75, 0.046);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icon-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin-top: 22px;
}
.icon-bullets li {
  display: flex;
  align-items: center;
  background: #F8F6F6;
  border-radius: 8px;
  padding: 10px 18px 10px 12px;
  font-weight: 500;
  gap: 8px;
  box-shadow: 0 2px 9px 0 rgba(33,50,75,0.04);
  font-size: 1rem;
}
.icon-bullets img {
  height: 22px;
  width: 22px;
  border-radius: 6px;
}

/* Team & Services */
.team-list, .services-list, .faq-snippets, .accordion-faq-list, .expectation-list, .preparation-tips ul {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}
.team-list li, .services-list li, .faq-snippets li, .expectation-list li, .preparation-tips ul li {
  background: #FFF7F7;
  margin-bottom: 18px;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px 0 #a1d6ce22;
  font-size: 1rem;
  color: #2A405C;
  transition: box-shadow 0.13s, transform 0.12s;
}
.team-list li:hover, .services-list li:hover, .faq-snippets li:hover {
  box-shadow: 0 8px 22px 0 #A1D6CE33;
  transform: scale(1.016);
}
.team-list strong, .faq-snippets strong, .services-list h2 {
  color: #21574B;
  font-size: 1.13em;
}

.accordion-faq-list > div {
  background: var(--brand-blue);
  border-radius: 11px;
  margin-bottom: 16px;
  padding: 23px 18px;
  box-shadow: 0 2px 6px 0 #84b6da22;
  cursor: pointer;
  transition: box-shadow 0.14s, transform 0.12s;
}
.accordion-faq-list > div:hover {
  box-shadow: 0 7px 20px 0 #7cb5d973;
  transform: scale(1.012);
}
.accordion-faq-list h2 {
  font-size: 1.15rem;
}

/* Timeline Steps */
.step-timeline, .step-by-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.step-timeline li, .step-by-step-timeline li {
  background: var(--brand-green);
  border-radius: 16px;
  padding: 20px 18px 17px 18px;
  font-size: 1.04rem;
  color: #173247;
  position: relative;
  box-shadow: 0 2px 12px 0 #a1d6ce2e;
  margin-bottom: 0;
}
.step-by-step-timeline img {
  width: 34px;
  height: 34px;
  margin-right: 9px;
  margin-bottom: -7px;
  vertical-align: middle;
  border-radius: 8px;
  background: var(--brand-blue);
  box-shadow: 0 1px 4px 0 #baddfb3a;
}
.step-by-step-timeline strong {
  color: #257B6E;
  font-weight: 700;
}


/* Preparation Tips */
.preparation-tips {
  background: #E4E8F8;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px 0 #a1d6ce12;
  margin: 22px 0 0 0;
}
.preparation-tips h3 {
  margin-bottom: 12px;
  color: #21574B;
}

/* Confirmation & next steps */
.confirmation-message {
  background: #D6F3E8;
  color: #25675E;
  border-radius: 13px;
  padding: 20px 19px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px 0 #a1d6ce22;
  font-weight: 500;
}
.next-steps-information {
  background: #FCF7D1;
  color: #6B5838;
  border-radius: 11px;
  padding: 17px 15px;
  margin-bottom: 24px;
  box-shadow: 0 2px 7px 0 #FCF7D122;
}

/* Contact Details, Map */
.contact-details, .location-map {
  background: #D8ECF8;
  border-radius: 13px;
  padding: 20px 20px 16px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px 0 #84b6da2b;
  font-size: 1.02rem;
}
.contact-details img, .location-map img {
  margin-right: 8px;
  vertical-align: middle;
  height: 22px;
  border-radius: 6px;
}

/* Newsletter Signup */
.newsletter-signup {
  background: #F8D8D8;
  color: #851646;
  border-radius: 10px;
  padding: 17px 15px 16px 15px;
  font-weight: 500;
  margin-top: 18px;
  box-shadow: 0 2px 8px 0 #f8d8d822;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #F3F6FA;
  color: #1A2538;
  box-shadow: 0 -2px 24px 0 #A1D6CE55;
  padding: 22px 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  border-radius: 14px 14px 0 0;
  animation: fadein-banner 0.6s;
}
@keyframes fadein-banner {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 1 1 220px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  color: #2A3D54;
}
.cookie-banner .cookie-btn {
  background: var(--brand-accent2);
  color: #27404A;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
  margin-left: 7px;
  font-size: 0.99rem;
  font-weight: 600;
  transition: background 0.15s, color 0.12s;
  margin-right: 5px;
}
.cookie-banner .cookie-btn.accept {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #F8D8D8;
  color: #53324B;
}
.cookie-banner .cookie-btn.settings {
  background: #E4E8F8;
  color: #21574B;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  filter: brightness(0.97) contrast(1.08);
  outline: none;
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%) scale(1);
  z-index: 210;
  background: #FCF7D1;
  color: #21324B;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 #D8ECF888;
  width: 95vw;
  max-width: 410px;
  padding: 36px 27px 28px 27px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  animation: fadein-cookie-modal 0.38s;
}
@keyframes fadein-cookie-modal {
  from { opacity: 0; transform: translate(-50%, 50%) scale(0.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 11px;
  color: #255C4A;
  font-size: 1.18em;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #E4E8F8;
  border-radius: 9px;
  padding: 9px 13px;
  color: #1A2538;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: var(--brand-accent);
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.cookie-modal .category-title {
  font-weight: 600;
  color: #21574B;
  margin-right: 10px;
}
.cookie-modal .category-desc {
  font-size: 0.98em;
  color: #3B4A5E;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal .modal-actions button {
  padding: 8px 18px;
  font-size: 1em;
  border-radius: 22px;
  background: var(--brand-accent2);
  color: #2A3D54;
  border: none;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .modal-actions button.save {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-modal .modal-actions button:focus {
  outline: 2px solid var(--brand-accent);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 25px;
  color: #21324B;
  background: none;
  border: none;
  font-size: 1.32rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 215;
}
.cookie-modal .close-modal:hover {
  color: #087C63;
}

/* Hide cookie modal overlay by default */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,39,45,.16);
  z-index: 208;
}
.cookie-modal-overlay.active {
  display: block;
}

/* Responsive (Mobile First) Design */
@media (max-width: 1024px) {
  .header .container, header .container {
    flex-direction: row;
    gap: 15px;
    padding: 10px 10px 10px 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .hero-section .content-wrapper,
  .content-wrapper,
  .footer-nav {
    padding-left: 0;
    padding-right: 0;
  }
  .container {
    padding: 0 10px;
  }
  .features-grid, .trust-signals-grid, .values-grid, .benefits-grid, .blog-teasers-grid {
    flex-direction: column;
    gap: 18px;
  }
  .partner-logos {
    gap: 12px;
  }
  .footer-nav {
    gap: 10px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .step-timeline, .step-by-step-timeline {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.36rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  .section, section {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
  .hero-section .content-wrapper {
    padding: 28px 7px 34px 7px;
  }
  .footer-nav,
  .certifications,
  .partner-logos,
  .features-grid, .trust-signals-grid, .values-grid, .benefits-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cta-section {
    padding: 40px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 17px 7px 18px 7px;
    font-size: 0.95rem;
  }
}
@media (max-width: 539px) {
  .cookie-modal {
    max-width: 95vw;
    padding: 17px 7px 14px 12px;
  }
  .mobile-nav {
    margin-left: 13px;
    margin-top: 53px;
  }
  .blog-featured-post,
  .confirmation-message,
  .contact-details,
  .location-map,
  .next-steps-information,
  .newsletter-signup,
  .preparation-tips {
    padding: 14px 8px 13px 8px;
  }
  .section, section {
    padding: 13px 2px;
    margin-bottom: 24px;
  }
  header .container {
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 8px;
  }
  .footer-nav {
    gap: 5px;
    font-size: 0.95rem;
  }
}

/* Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-4 { margin-top: 4px !important; }

/* Hide visually */
.hide { display: none !important; }

