/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  color: #222;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
main {
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: #28327E;
  margin-top: 0;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, ul, ol {
  margin-top: 0;
  margin-bottom: 1em;
}
p {
  font-size: 1rem;
  color: #222;
}
a {
  color: #28327E;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #111860;
  text-decoration: underline;
  outline: none;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 1.3em;
}
li {
  margin-bottom: 0.5em;
}
blockquote {
  color: #28327E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-left: 4px solid #28327E;
  margin: 0 0 8px 0;
  padding: 8px 0 8px 16px;
  background: #F5F5F5;
}
cite {
  display: block;
  color: #28327E;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 4px;
}

/* --- CONTAINERS & LOGO --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 4px solid #28327E;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}
header img {
  height: 48px;
  width: auto;
  margin: 16px 0 16px 0;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1rem;
  padding: 6px 0;
  color: #28327E;
  border-bottom: 2px solid transparent;
  transition: border, color 0.18s;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2px solid #97A1C9;
  color: #111860;
}
.cta.primary {
  background: #28327E;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 11px 32px;
  margin-left: 16px;
  letter-spacing: 1.2px;
  border: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(40,50,126,0.08);
  transition: background 0.19s, color 0.19s, box-shadow 0.21s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #4352ad;
  color: #fff;
  box-shadow: 0 8px 20px rgba(40,50,126,0.15);
  outline: none;
}
.cta {
  background: #97A1C9;
  color: #28327E !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 28px;
  margin-top: 8px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s;
}
.cta:hover, .cta:focus {
  background: #28327E;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(40,50,126,0.12);
  outline: none;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1002;
  width: 48px;
  height: 48px;
  background: #28327E;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(40,50,126,0.12);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #4352ad;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1200;
  background: #28327E;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0.2,0.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 36px;
  padding-bottom: 40px;
  align-items: flex-end;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 8px 26px 8px 12px;
  cursor: pointer;
  margin-bottom: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-end;
  margin-right: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #97A1C9;
  border-bottom: 2px solid #97A1C9;
  outline: none;
}
@media (max-width:1024px){
  header .container nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width:767px){
  .mobile-menu-toggle {
    top: 18px;
    right: 14px;
    font-size: 1.75rem;
    width: 42px;
    height: 42px;
  }
  .mobile-menu {
    padding-top: 22px;
  }
  .mobile-nav {
    margin-right: 15vw;
    gap: 21px;
  }
}

/* --- HERO / SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 22px rgba(40,50,126,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background: inherit;
}

.subheadline {
  color: #4352ad;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 1em;
}

/* --- FEATURE / SERVICE GRIDS --- */
.feature-grid, .service-grid, .price-list-grid, .values-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 18px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid > div, .service-grid > div, .price-list-grid > li, .values-grid > div {
  background: #F5F5F5;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,50,126,0.07);
  padding: 24px 22px;
  min-width: 230px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.feature-grid img, .values-grid img {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 2.5px 8px rgba(40,50,126,0.12);
  margin-bottom: 6px;
}
.service-grid strong, .price-list-grid span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #28327E;
  font-weight: 800;
  margin-top: 8px;
}
.price-list-grid {
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px 0;
}
.values-grid > div {
  min-width: 225px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  list-style: none;
  padding-left: 0;
}
.services-list li {
  background: #F5F5F5;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px rgba(40,50,126,0.06);
  padding: 18px 22px;
  margin-bottom: 10px;
}
.qualification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 0 0;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F5F5F5;
  color: #222;
  border-left: 7px solid #28327E;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(40,50,126,0.09);
  transition: box-shadow 0.21s, background 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fff;
  box-shadow: 0 8px 32px rgba(40,50,126,0.13);
}
.testimonial-card blockquote {
  color: #28327E;
  font-size: 1.1rem;
  background: transparent;
  margin: 0;
  border: none;
  padding: 0;
}
.testimonial-card cite {
  color: #222;
  font-weight: 600;
  margin-bottom: 0;
}

/* --- OTHER CARDS & HIGHLIGHTS --- */
.included-services-highlight, .success-cases-preview, .google-maps-embed-placeholder, .arrival-description, .parking-info {
  background: #E7EBFC;
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #28327E;
  box-shadow: 0 2px 10px rgba(40,50,126,0.06);
}

/* --- FOOTER --- */
footer {
  background: #28327E;
  color: #fff;
  border-top: 5px solid #97A1C9;
  padding: 32px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
footer nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #97A1C9;
}
footer .imprint,
footer .contact-details-short{
  font-size: 0.94rem;
  color: #c5cae9;
  margin-bottom: 4px;
}

/* --- COOKIE BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #28327E;
  color: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -2px 16px rgba(40,50,126,0.19);
  z-index: 2000;
  animation: cookie-banner-in 0.45s;
}
@keyframes cookie-banner-in {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  transition: background 0.17s, color 0.15s, box-shadow 0.18s;
  margin-right: 6px;
  margin-bottom: 5px;
}
.cookie-consent-banner .accept-btn {
  background: #97A1C9;
  color: #28327E;
}
.cookie-consent-banner .accept-btn:focus, .cookie-consent-banner .accept-btn:hover {
  background: #fff;
  color: #28327E;
}
.cookie-consent-banner .reject-btn {
  background: transparent;
  border: 2px solid #97A1C9;
  color: #fff;
}
.cookie-consent-banner .reject-btn:focus, .cookie-consent-banner .reject-btn:hover {
  background: #fff;
  color: #28327E;
}
.cookie-consent-banner .settings-btn {
  background: transparent;
  color: #97A1C9;
  border: 2px solid #97A1C9;
}
.cookie-consent-banner .settings-btn:focus, .cookie-consent-banner .settings-btn:hover {
  background: #97A1C9;
  color: #28327E;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(40,50,126,0.78);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.35s;
}
@keyframes cookie-modal-in {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #28327E;
  border-radius: 20px;
  padding: 36px 24px 26px 24px;
  max-width: 95vw;
  width: 410px;
  box-shadow: 0 12px 44px rgba(40,50,126,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  animation: cookie-modal-slide-in 0.31s;
}
@keyframes cookie-modal-slide-in {
  from { transform: translateY(46px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 12px;
}
.cookie-modal .category-toggle {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #97A1C9;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
}
.cookie-modal .category-toggle[aria-checked="true"] {
  background: #28327E;
}
.cookie-modal .category-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 80%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.21s;
}
.cookie-modal .category-toggle[aria-checked="true"] span {
  left: 17px;
}
.cookie-modal .category-info {
  font-weight: 400;
  font-size: 0.98rem;
  color: #4352ad;
  margin-left: 41px;
  margin-bottom: 4px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal .cookie-modal-btns button {
  border-radius: 22px;
  padding: 9px 21px;
  font-size: 0.98rem;
  font-weight: 800;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  color: #28327E;
  border: none;
  font-size: 1.42rem;
  cursor: pointer;
}
.cookie-modal .close-modal:focus {
  outline: none;
  color: #4352ad;
}

/* --- UTILITY / FLEX CLASSES (for cards etc.) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  background: #F5F5F5;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(40,50,126,0.07);
  padding: 22px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .feature-grid, .service-grid, .price-list-grid, .values-grid {
    gap: 20px;
  }
  section, .section {
    padding: 30px 7px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.84rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .content-wrapper, .feature-grid, .service-grid, .price-list-grid, .values-grid, .services-list, .card-container {
    gap: 14px !important;
  }
  .feature-grid, .service-grid, .price-list-grid, .values-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  section, .section {
    padding: 20px 4vw;
    margin-bottom: 42px;
    border-radius: 14px;
  }
  .card, .card-content, .testimonial-card {
    padding: 13px 12px;
    border-radius: 10px;
  }
}
@media (max-width: 512px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  section, .section {
    padding: 12px 2vw;
    margin-bottom: 28px;
    border-radius: 8px;
  }
  .feature-grid > div, .service-grid > div, .price-list-grid > li, .values-grid > div {
    min-width: 0;
    padding: 14px 7px;
  }
}

/* --- MICRO-INTERACTIONS & ANIMATION --- */
button, .cta, .cta.primary, .cookie-consent-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.17s;
}
button:active, .cta:active, .cta.primary:active {
  transform: scale(0.98);
}
.card:hover, .card:focus-within, .feature-grid > div:hover, .service-grid > div:hover, .values-grid > div:hover {
  box-shadow: 0 8px 22px rgba(40,50,126,0.19);
  background: #fff;
}

/* --- ACCESSIBILITY & SELECTION --- */
:focus {
  outline: 2px solid #97A1C9;
  outline-offset: 2px;
}
::selection {
  background: #97A1C9;
  color: #fff;
}

/* --- MISC UTILS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #97A1C9;
  border-radius: 7px;
}

/* --- END --- */
