/* 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;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F7FAFC;
  color: #294263;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #294263;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}
hr {
  border: none;
  border-bottom: 1px solid #D9E2EC;
  margin: 32px 0;
}

/* BRAND FONT ------------------------------------------------------------- */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'),
       url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
}

/* TYPOGRAPHY ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  color: #294263;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 22px; }
h2 { font-size: 2rem; line-height: 1.17; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.22; margin-bottom: 13px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, ul, ol, label {
  font-size: 1rem;
  color: #294263;
  margin-bottom: 16px;
}
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; }

ul, ol {
  margin-left: 1.15em;
  margin-bottom: 16px;
}
ul { list-style: disc; }
ol { list-style: decimal inside; }
li { margin-bottom: 8px; line-height: 1.6; }

.hero-subheadline {
  font-size: 1.25rem;
  color: #294263;
  opacity: 0.85;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
}

/* LAYOUT: CONTAINER & WRAPPERS ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(41,66,99,0.07);
  /* Consistent Scandinavian white sections */
}

@media (max-width: 900px) {
  .container { padding: 0 12px; }
  .section { padding: 32px 12px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 38px; padding: 26px 5px; }
}

/* HEADER & NAVIGATION ------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(41,66,99,0.07);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 74px;
  gap: 18px;
}

header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 6px 12px;
  font-size: 1rem;
  color: #294263;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover,
header nav a.active {
  background: #D9E2EC;
  color: #294263;
}

header .button.primary {
  margin-left: 20px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 12px;
}

/* MOBILE NAV ------------------------------------------------------------- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #294263;
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  margin-left: 10px;
  z-index: 302;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #FFD600;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,66,99,0.97);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.3,1,.3,1);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 32px 32px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FFD600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 8px;
  border-radius: 6px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover,
.mobile-nav a.active {
  background: #FFD600;
  color: #294263;
}

@media (max-width: 900px) {
  header nav, header .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  header .container {
    padding: 0 10px;
  }
}

/* SECTIONS & FLEX LAYOUTS ------------------------------------------------------------- */
.feature-grid, .area-grid, .team-list, .articles-list, .card-container, .content-grid, .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7FAFC;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(41,66,99,0.04);
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 220px;
}
.feature-item h3 {
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .feature-grid, .area-grid, .team-list, .articles-list, .card-container, .content-grid, .testimonial-row {
    gap: 16px;
  }
  .feature-item, .area-item, .team-member {
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .area-grid, .team-list, .articles-list, .card-container, .content-grid, .testimonial-row {
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .feature-item, .area-item, .team-member {
    width: 100%;
    min-width: 0;
  }
}

.area-item {
  background: #F7FAFC;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(41,66,99,0.04);
  padding: 24px 20px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}

.team-member {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid #D9E2EC;
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(41,66,99,0.025);
  transition: box-shadow 0.18s, transform 0.13s;
}
.team-member:hover {
  box-shadow: 0 6px 20px 0 rgba(41,66,99,0.09);
  transform: translateY(-2px) scale(1.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px 0 rgba(41,66,99,0.055);
  padding: 24px 18px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #FFD600;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(41,66,99,0.11);
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.14s;
}
.testimonial-card p {
  color: #294263;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.testimonial-card .testimonial-author {
  color: #818B99;
  font-size: 0.97rem;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px 0 rgba(41,66,99,0.13);
  transform: translateY(-3px) scale(1.04);
}

/* Ensured High Readability on White for Testimonials */
@media (max-width: 768px) {
  .testimonial-row {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: unset;
    min-width: 0;
  }
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* BUTTONS ------------------------------------------------------------- */
.button {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 11px 32px;
  margin: 8px 0 8px 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
  box-shadow: 0 2px 8px 0 rgba(41,66,99,0.04);
  line-height: 1.3;
  display: inline-block;
}
.button.primary {
  background: #294263;
  color: #fff;
}
.button.primary:hover,
.button.primary:focus {
  background: #FFD600;
  color: #294263;
  box-shadow: 0 2px 15px 0 rgba(255,214,0,0.12);
}
.button.secondary {
  background: #D9E2EC;
  color: #294263;
}
.button.secondary:hover,
.button.secondary:focus {
  background: #294263;
  color: #fff;
  box-shadow: 0 2px 11px 0 rgba(41,66,99,0.13);
}
.button:disabled,
.button[aria-disabled='true'] {
  background: #E2E4EA;
  color: #b2b6bf;
  cursor: not-allowed;
}

/* SEARCH BAR ------------------------------------------------------------- */
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.search-bar label {
  font-size: 1rem;
}
.search-bar input[type="text"] {
  border: 1px solid #D9E2EC;
  border-radius: 7px;
  padding: 8px 12px;
  background: #F7FAFC;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  width: 230px;
  max-width: 75vw;
  transition: border 0.14s, box-shadow 0.14s;
}
.search-bar input[type="text"]:focus {
  border-color: #294263;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(41,66,99,0.09);
}
@media (max-width: 500px) {
  .search-bar { flex-direction: column; align-items: flex-start; gap: 7px; }
  .search-bar input[type="text"] { width: 100%; }
}

.articles-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.articles-list article {
  background: #fff;
  border: 1px solid #D9E2EC;
  border-radius: 10px;
  padding: 20px 16px;
  flex: 1 1 250px;
  min-width: 210px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(41,66,99,0.06);
  transition: box-shadow 0.13s, transform 0.12s;
}
.articles-list article:hover {
  box-shadow: 0 6px 18px 0 rgba(41,66,99,0.09);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 768px) {
  .articles-list { flex-direction: column; gap: 13px; }
  .articles-list article { min-width: 0; width: 100%; }
}

/* CATEGORIES ------------------------------------------------------------- */
.categories {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 14px;
  margin-bottom: 0px;
}
.categories span { font-weight: 700; }
.categories ul {
  display: flex;
  flex-direction: row;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.categories li {
  font-size: 0.97rem;
  background: #D9E2EC;
  color: #294263;
  border-radius: 6px;
  padding: 4px 10px;
}

@media (max-width: 600px) {
  .categories ul { flex-wrap: wrap; gap: 7px; }
  .categories { flex-direction: column; align-items: flex-start; gap: 7px; }
}

/* FORMS ------------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="number"], textarea, select {
  border: 1px solid #D9E2EC;
  border-radius: 8px;
  padding: 11px 14px;
  background: #F7FAFC;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.14s, box-shadow 0.14s;
  width: 100%;
  margin-bottom: 18px;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border-color: #294263;
  outline: none;
  box-shadow: 0 2px 11px 0 rgba(41,66,99,0.11);
}
label {
  font-weight: 600;
  margin-bottom: 3px;
}
textarea {
  min-height: 84px;
  resize: vertical;
}

/* TIMELINE ------------------------------------------------------------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #294263;
  list-style: none;
}
.timeline li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 7px;
}
.timeline li:before {
  content: "";
  width: 13px;
  height: 13px;
  background: #FFD600;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}

/* STEPS (Leistungen - Ablauf) --------------------------------------------------- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 0;
  padding-left: 0;
}
.steps-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F7FAFC;
  border-left: 4px solid #294263;
  border-radius: 9px;
  padding: 14px 16px;
}
.steps-list li img {
  width: 30px;
  height: 30px;
}

@media (max-width: 600px) {
  .steps-list li { flex-direction: column; align-items: flex-start; gap: 9px; }
}

/* FOOTER ------------------------------------------------------------- */
footer {
  background: #fff;
  border-top: 2px solid #D9E2EC;
  padding: 40px 0 0 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 35px;
}
.footer-logo-social {
  flex: 1 1 125px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
}
.footer-logo-social img {
  height: 38px;
  width: auto;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav a {
  font-size: 1rem;
  color: #294263;
  opacity: 0.8;
  transition: opacity 0.13s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 1;
  color: #FFD600;
}
.footer-contact {
  flex: 1 1 150px;
  font-size: 1rem;
  color: #818B99;
  margin-bottom: 22px;
}
.footer-contact p {
  color: #818B99;
  font-size: 0.98rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-nav { flex-wrap: wrap; gap: 14px; }
}

/* MISC ELEMENTS ------------------------------------------------------------- */
.location-map {
  margin: 16px 0 0 0;
  padding: 11px 18px;
  background: #D9E2EC;
  border-radius: 7px;
  color: #294263;
  font-size: 1rem;
}
.text-section {
  margin-bottom: 1.3em;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 1.2em;
}
.service-list li {
  background: #F7FAFC;
  border-radius: 9px;
  padding: 20px 15px;
  border-left: 4px solid #294263;
}

/* Micro-interactions: smooth card hover, buttons, etc. */
.card, .feature-item, .area-item, .team-member, .articles-list article, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .feature-item:hover, .area-item:hover, .team-member:hover, .articles-list article:hover, .testimonial-card:hover {
  box-shadow: 0 9px 32px 0 rgba(41,66,99,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* Cookie Consent Banner ---------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 22px 0 rgba(41,66,99,0.13);
  width: 100vw;
  z-index: 9999;
  padding: 21px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.19s, transform 0.23s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-text {
  max-width: 500px;
  font-size: 1rem;
  color: #294263;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
@media (max-width: 724px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 10px 25px 10px;
  }
  .cookie-consent-banner .cookie-buttons { width: 100%; flex-direction: column; gap: 7px; }
}

/* Cookie Consent Buttons */
.cookie-consent-banner .cookie-btn {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
  font-weight: 600;
  margin: 0;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #294263;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.accept:hover,
.cookie-consent-banner .cookie-btn.accept:focus {
  background: #FFD600;
  color: #294263;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #D9E2EC;
  color: #294263;
}
.cookie-consent-banner .cookie-btn.reject:hover,
.cookie-consent-banner .cookie-btn.reject:focus {
  background: #294263;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #fff;
  color: #294263;
  border: 1.5px solid #D9E2EC;
}
.cookie-consent-banner .cookie-btn.settings:hover,
.cookie-consent-banner .cookie-btn.settings:focus {
  background: #294263;
  color: #fff;
  border-color: #294263;
}

/* Cookie Modal --------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(41,66,99, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 6px 40px 0 rgba(41,66,99,0.20);
  min-width: 320px;
  max-width: 95vw;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 400;
  color: #294263;
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #294263;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  margin: 0 6px 0 0;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #D9E2EC;
  opacity: 0.8;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-modal .cookie-btn {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  font-weight: 600;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .cookie-btn.save {
  background: #294263;
  color: #fff;
}
.cookie-modal .cookie-btn.save:hover {
  background: #FFD600;
  color: #294263;
}
.cookie-modal .cookie-btn.cancel {
  background: #D9E2EC;
  color: #294263;
}
.cookie-modal .cookie-btn.cancel:hover {
  background: #294263;
  color: #fff;
}

@media (max-width: 500px) {
  .cookie-modal { min-width: 0; padding: 20px 6px; }
}

/* ACCESSIBILITY FOCUSED -------------------------------------------------------- */
a, .button, .cookie-btn {
  outline: none;
}
a:focus-visible,
.button:focus-visible,
.cookie-btn:focus-visible {
  outline: 2px solid #FFD600;
  outline-offset: 1.5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #294263;
}

/* Z-INDEX LAYERING: Header, MobileMenu, CookieBanner, Modal --------------- */
header { z-index: 100; }
.mobile-menu { z-index: 400; }
.cookie-consent-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 10000; }

/* UTILITIES ------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 18px !important; }
.mb-4 { margin-bottom: 32px !important; }

/* SPACING: Smaller screens --------------------------------------------- */
@media (max-width: 500px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.13rem; }
  .footer-nav { flex-direction: column; gap: 7px; }
}

/* Scandinavian-inspired details: lots of white, clean lines, SANS FUSS */
body,
input,
textarea {
  background: #F7FAFC;
}

.section, .card, .feature-item, .area-item, .testimonial-card, .team-member, .articles-list article {
  box-shadow: 0 2px 12px 0 rgba(41,66,99,0.08);
  border-radius: 13px;
}

/* Prevent overlap by never absolute/relative cards & always enough gap */
.section, .feature-grid, .area-grid, .testimonial-row, .card-container, .team-list, .articles-list, .content-grid {
  margin-bottom: 20px;
}
.section:last-child { margin-bottom: 0; }

/* Hide default scrollbar for clean appearance */
::-webkit-scrollbar {
  width: 9px;
  background: #D9E2EC;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #B2B6BF;
  border-radius: 8px;
}

/* Scrollbar for Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: #B2B6BF #D9E2EC;
}

/* ----- END OF FILE, FINITO! "scandinavian_clean" style assured! ----- */
