/* --- 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;
}
body {
  line-height: 1.5;
  background-color: #F5F4EE;
  color: #1C2541;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
  color: inherit;
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- SOFT PASTEL PALETTE (BRAND + PASTEL) --- */
:root {
  --primary: #18649C;
  --secondary: #5AB3A8;
  --accent: #F5F4EE;
  --pastel-blue: #C7E7F5;
  --pastel-teal: #B5E5E0;
  --pastel-lavender: #EDE6F7;
  --pastel-yellow: #FFF7DA;
  --pastel-pink: #FFDDE7;
  --pastel-green: #D9FDED;
  --text-main: #203354;
  --text-dark: #1C2541;
  --text-light: #fff;
  --shadow-card: 0 2px 12px rgba(77, 120, 170, 0.12);
  --shadow-hover: 0 4px 24px rgba(77, 120, 170, 0.18);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius: 12px;
  --radius-sm: 8px;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 600;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.1;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}

p, ul, ol, li, a, strong, small, label, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 16px;
  font-weight: 400;
}
strong {
  font-weight: 600;
}
small {
  font-size: 0.9375rem;
  opacity: 0.75;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1192px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* --- FLEXBOX-BASED SPECIAL CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: var(--accent);
  position: relative;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.012);
}
.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: 16px;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  background: var(--pastel-lavender);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  max-width: 400px;
  min-width: 260px;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #263153;
  font-size: 1rem;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- PAGES / SECTIONS --- */
.hero {
  display: flex;
  align-items: center;
  min-height: 420px;
  background:
    linear-gradient(110deg, var(--pastel-blue) 40%, var(--pastel-lavender) 100%),
    var(--accent);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-bottom: 40px;
  box-shadow: 0 5px 28px rgba(77, 120, 170, 0.10);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 18px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
.feature-card {
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 330px;
  background: var(--pastel-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.feature-card img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}

.teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.teaser-card {
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 18px 20px 18px;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.teaser-card h3 {
  color: var(--primary);
}
.teaser-card a {
  color: var(--secondary);
  font-weight: 500;
  margin-top: 6px;
  font-size: 1rem;
  transition: color 0.16s;
}
.teaser-card a:hover {
  text-decoration: underline;
  color: var(--primary);
}
.teaser-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.012);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-detail {
  flex: 1 1 270px;
  min-width: 250px;
  background: var(--pastel-green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.service-detail h3 { color: var(--secondary); }
.service-detail a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  margin-top: 10px;
  font-size: 0.99rem;
  transition: color 0.17s;
}
.service-detail a:hover { color: var(--secondary); }

.services-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.services-icon-grid a {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pastel-pink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 12px 17px;
  color: var(--primary);
  font-weight: 500;
  transition: background 0.15s, box-shadow 0.15s;
}
.services-icon-grid a:hover {
  box-shadow: var(--shadow-hover);
  background: var(--pastel-yellow);
}
.services-icon-grid img {
  width: 30px; height: 30px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.info-box {
  flex: 1 1 200px;
  background: var(--pastel-lavender);
  border-radius: var(--radius);
  padding: 24px 16px 16px 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* About/Team */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
}
.team-member-profile {
  flex: 1 1 230px;
  background: var(--pastel-teal);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.qual-abschluesse, .qual-abschluesse ul {
  margin-top: 12px;
  gap: 8px;
}
.qual-abschluesse ul {
  padding-left: 12px;
}

.map-snippet {
  margin-top: 10px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  padding: 14px 12px;
  box-shadow: var(--shadow-card);
}

.text-section {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-top: 6px;
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 7px;
  list-style: disc inside;
  font-size: 1rem;
  color: var(--primary);
}
.text-section li strong {
  color: var(--secondary);
}

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 10px;
  margin-top: 7px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--text-main);
}
.contact-details img {
  width: 20px;
  height: 20px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.faq-item {
  flex: 1 1 230px;
  background: var(--pastel-yellow);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 19px 13px 13px 16px;
  margin-bottom: 20px;
}
.faq-item h3 {
  color: var(--secondary);
  font-size: 1.07rem;
  margin-bottom: 7px;
  font-weight: 600;
}

/* --- CTA BANNERS --- */
.cta-banner {
  background: var(--pastel-pink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 40px 0 36px 0;
  text-align: center;
  margin: 50px 0 30px 0;
}
.cta-banner h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-main);
  margin-bottom: 18px;
  font-size: 1.04rem;
}

/* --- BUTTONS --- */
.primary-btn, .cta {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 30px;
  margin-top: 10px;
  box-shadow: 0 2px 12px rgba(71, 107, 144, 0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  border: none;
  outline: none;
}
.primary-btn:hover, .cta:hover, .primary-btn:focus {
  background: var(--secondary);
  color: var(--text-light);
  box-shadow: 0 6px 25px rgba(34,100,156,0.12);
  transform: translateY(-3px) scale(1.03);
}

.secondary-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: 0 2px 10px rgba(90,179,168,0.10);
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.14s, box-shadow 0.14s, transform 0.10s;
}
.secondary-btn:hover, .secondary-btn:focus {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 5px 18px rgba(90,179,168,0.12);
  transform: translateY(-3px) scale(1.02);
}

.ghost-btn {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 7px;
  transition: background 0.14s, color 0.14s, border 0.16s, box-shadow 0.15s;
  cursor: pointer;
}
.ghost-btn:hover, .ghost-btn:focus {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(34,100,156,0.11);
}

/* --- HEADER/NAVIGATION --- */
header {
  width: 100%;
  background: var(--pastel-blue);
  box-shadow: 0 2px 12px rgba(77,120,170,0.10);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  position: relative;
}
header img {
  height: 52px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.11s, color 0.17s;
  letter-spacing: -0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  z-index: 201;
  transition: background 0.14s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}

/* --- MOBILE MENU STYLES --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(223,235,251,0.85);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.77,.17,.36,1.14), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 18px 8px 0;
  padding: 7px 16px 7px 8px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  transition: background 0.18s;
  cursor: pointer;
  z-index: 502;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 36px;
  padding-top: 18px;
  width: 80vw;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 10px 4px 10px 0;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.10s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--text-light);
}

/* --- TESTIMONIAL SLIDER --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}

/* --- FOOTER --- */
footer {
  background: var(--pastel-blue);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 60px;
  width: 100%;
  box-shadow: 0 -2px 18px rgba(46,98,153,0.10);
}
footer .container {
  padding: 36px 20px 18px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  flex-direction: row;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 2px 0;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--secondary);
  font-size: 0.98rem;
  transition: color 0.12s;
}
.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.97rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 18px; height: 18px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 32px; height: 32px;
  opacity: 0.88;
  transition: opacity 0.13s, transform 0.15s;
}
.footer-social img:hover {
  opacity: 1;
  transform: scale(1.07) translateY(-3px);
}
.footer-legal {
  width: 100%;
  margin-top: 17px;
  text-align: right;
  flex-basis: 100%;
}
.footer-legal small {
  font-size: 0.91rem;
  color: #666e7c;
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  display: flex;
  align-items: center;
  min-height: 370px;
  padding-top: 48px;
  text-align: center;
}
.thank-you-section h1 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
  background: var(--pastel-blue);
  box-shadow: 0 -2px 18px rgba(46,98,153,0.12);
  padding: 18px 10px 18px 10px;
  gap: 34px;
  transition: transform 0.45s cubic-bezier(.86,.13,.36,1.12), opacity 0.25s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner__text {
  font-size: 1rem;
  color: var(--text-main);
  max-width: 540px;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 11px;
}
.cookie-banner .primary-btn, .cookie-banner .secondary-btn, .cookie-banner .ghost-btn {
  margin-top: 0;
  font-size: 0.98rem;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 1003;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,49,76,0.24);
  backdrop-filter: blur(2px);
}
.cookie-modal-backdrop.active {
  display: block;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 12%;
  transform: translate(-50%, 0);
  background: var(--pastel-yellow);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 40px rgba(21, 60, 80, 0.18);
  z-index: 1005;
  min-width: 320px;
  max-width: 93vw;
  padding: 36px 30px 28px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: fadeInUp 0.25s cubic-bezier(.86,.13,.36,1.12);
}
.cookie-modal.active {
  display: flex;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 60px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal__desc {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 12px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: var(--primary);
  cursor: pointer;
}
.cookie-category.essential label {
  color: var(--primary);
  font-weight: 600;
  opacity: 0.80;
}
.cookie-modal .primary-btn, .cookie-modal .ghost-btn {
  margin-top: 0;
  min-width: 120px;
}
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.10s;
}
.cookie-modal .close-btn:hover {
  background: var(--secondary);
  color: #fff;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 992px) {
  .footer-contact, .footer-links, .footer-social {
    min-width: 210px;
  }
}
@media (max-width: 900px) {
  .footer-nav nav, .footer-links, .footer-contact, .footer-social {
    font-size: 0.96rem;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 260px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: 32px;
    padding: 14px 0;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 5px 22px 5px;
  }
  .header-flex {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content-grid, .features-grid, .teaser-grid, .services-list, .team-section, .faq-list, .info-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav nav {
    flex-direction: column;
    gap: 6px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.37rem; margin-bottom: 12px; }
  h2 { font-size: 1.09rem; margin-bottom: 8px; }
  .container { padding: 0 8px; }
  .hero .container { min-height: 190px; }
  .primary-btn, .cta { font-size: 1.017rem; padding: 11px 18px; }
  .footer-legal { text-align: left; margin-top: 13px; }
  .footer-social img { width: 27px; height: 27px; }
}
@media (max-width: 520px) {
  .testimonial-card {
    padding: 15px 5px;
    min-width: 175px;
    max-width: 98vw;
  }
  .card, .feature-card, .service-detail, .info-box, .team-member-profile, .faq-item {
    padding: 15px 7px 15px 9px;
    min-width: 150px;
  }
}
@media (max-width: 460px) {
  .cookie-modal {
    min-width: 92vw;
    max-width: 99vw;
    padding: 22px 4vw 18px 4vw;
  }
  .cookie-banner__text {
    font-size: 0.87rem;
    margin-right: 0;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 8px;
  }
}
