/* AutoSommo Auswahl Minimalist Responsive CSS - Flexbox only */
/* Reset & Normalize */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #fff;
  color: #17324D;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
a {
  color: #17324D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #EAC968;
  outline-offset: 2px;
}
/* Layout Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(23,50,77,0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(23,50,77,0.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(23,50,77,0.12);
}
.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: 20px;
  padding: 20px;
  background: #F4F6F9;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(23,50,77,0.06);
}
.testimonial-card blockquote {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  color: #17324D;
  margin-bottom: 6px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #17324D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(23,50,77,0.06);
  padding: 24px 20px;
}
/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #17324D;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.09;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}
h4, h5, h6 {
  font-size: 1.13rem;
  font-weight: 400;
}
p, ul li, ol li {
  font-size: 1rem;
}
strong {
  font-weight: 600;
  color: #17324D;
}
.tagline {
  color: #6B7A92;
  font-size: 0.97rem;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
blockquote {
  quotes: "\201C" "\201D";
  padding-left: 0;
}
/* Header & Nav */
header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(23,50,77,0.04);
  position: sticky;
  top: 0;
  z-index: 24;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
  margin-right: 12px;
  margin-top: 6px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.1s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F6F9;
  color: #17324D;
}
.main-nav .cta.primary {
  background: #17324D;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 10px rgba(23,50,77,0.10);
  margin-left: 10px;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #EAC968;
  color: #17324D;
  box-shadow: 0 4px 16px rgba(23,50,77,0.19);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #17324D;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 4px 30px rgba(23,50,77,0.13);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.27s cubic-bezier(.75,0,.25,1);
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #17324D;
  font-size: 2.2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #EAC968;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  padding: 10px 4px;
  color: #17324D;
  border-radius: 7px;
  transition: background 0.1s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAC968;
  color: #17324D;
}
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}
/* Main content spacing */
main {
  min-height: 60vh;
  padding-bottom: 60px;
  width: 100%;
}
section {
  margin-bottom: 60px;
}
/* Features Grid (landing page) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(23,50,77,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 18px 28px;
  transition: box-shadow 0.15s;
}
.features-grid > div:hover {
  box-shadow: 0 4px 18px rgba(23,50,77,0.13);
}
.features-grid img {
  width: 36px;
  height: 36px;
}
.features-grid h3 {
  margin-bottom: 4px;
}
/* Cities List */
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin-bottom: 16px;
}
.cities-list li {
  background: #F4F6F9;
  color: #17324D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.14s;
}
.cities-list li:hover {
  background: #EAC968;
  color: #17324D;
}
/* Locations Page Grid */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.locations-grid ul {
  margin-right: 24px;
  min-width: 200px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
}
.locations-grid p {
  flex: 1 1 220px;
}
/* Contact Details & Map Placeholder */
.contact-details, .business-hours, .map-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.contact-details img, .business-hours img, .map-placeholder img {
  width: 23px;
  height: 23px;
  margin-right: 8px;
  opacity: 0.82;
}
.contact-details p, address p, .business-hours p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #17324D;
}
.map-placeholder {
  background: #F4F6F9;
  border-radius: 7px;
  padding: 11px 16px;
}
.map-placeholder p {
  font-size: 0.95rem;
  color: #6B7A92;
}
/* Call To Action Buttons */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  padding: 11px 28px;
  margin-top: 8px;
  margin-bottom: 10px;
  box-shadow: 0 1px 8px rgba(23,50,77,0.07);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  text-align: center;
  outline: none;
}
.cta.primary {
  background: #17324D;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #EAC968;
  color: #17324D;
  box-shadow: 0 4px 16px rgba(23,50,77,0.12);
}
.cta.secondary {
  background: #EAC968;
  color: #17324D;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #17324D;
  color: #fff;
}
button.cta {
  border: none;
}
/* Faq Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F4F6F9;
  border-radius: 9px;
  box-shadow: 0 1px 5px rgba(23,50,77,0.05);
  padding: 17px 20px;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #17324D;
  margin-bottom: 5px;
}
.faq-item p {
  font-size: 0.97rem;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(23,50,77,0.10);
}
/* Case Study */
.case-study {
  background: #F4F6F9;
  border-radius: 9px;
  box-shadow: 0 1px 6px rgba(23,50,77,0.04);
  margin-bottom: 16px;
  padding: 20px 24px;
}
.case-study strong {
  color: #17324D;
  font-size: 1.05rem;
}
/* Footer */
footer {
  background: #fff;
  border-top: 1px solid #F4F6F9;
  padding: 40px 0 16px 0;
  margin-top: 30px;
  color: #17324D;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 9px;
}
.footer-nav a {
  font-size: 0.97rem;
  color: #6B7A92;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #EAC968;
}
footer p {
  font-size: 1rem;
  margin-bottom: 6px;
}
footer .tagline {
  margin-bottom: 0;
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #17324D;
  color: #fff;
  z-index: 1100;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 -2px 24px rgba(23,50,77,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s, opacity 0.3s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__actions {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 7px;
  padding: 9px 23px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: #EAC968;
  color: #17324D;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #17324D;
}
.cookie-btn.settings {
  background: #fff;
  color: #17324D;
  border: 1px solid #EAC968;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #EAC968;
  color: #17324D;
}
.cookie-btn.reject {
  background: #17324D;
  color: #fff;
  border: 1px solid #EAC968;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #EAC968;
  color: #17324D;
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,50,77,0.2);
  z-index: 1120;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -70%);
  background: #fff;
  color: #17324D;
  z-index: 1122;
  min-width: 315px;
  max-width: 95vw;
  width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 44px rgba(23,50,77,0.22);
  padding: 34px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -45%);
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #17324D;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1280;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #EAC968;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  appearance: none;
  background: #F4F6F9;
  border-radius: 14px;
  position: relative;
  outline: none;
  vertical-align: middle;
  border: 1.5px solid #EAC968;
  margin-right: 7px;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #EAC968;
}
.cookie-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
  border: 1px solid #EAC968;
}
.cookie-toggle:checked::before {
  left: 19px;
}
/* Cookie categories text */
.cookie-category span {
  font-size: 1rem;
  color: #17324D;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: unset;
    width: 94vw;
    padding: 20px 10px 18px 10px;
  }
}
/* Responsive Queries - mobile first approach! */
@media (max-width: 900px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.59rem;
  }
  .features-grid, .locations-grid, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .features-grid > div, .locations-grid ul, .locations-grid p {
    min-width: 0;
    width: 100%;
  }
  .section, section {
    padding: 28px 8px;
    margin-bottom: 44px;
  }
  .testimonial-card {
    padding: 16px 10px;
  }
  .card {
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
/* Utility Classes */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.d-flex {
  display: flex !important;
}
.align-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
.gap-20 {
  gap: 20px !important;
}
/* Cards general use */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
/* Accessibility & Micro-interactions */
a, button, .cta, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, border 0.16s;
}
a:active, .cta:active {
  filter: brightness(0.94);
}
input, textarea, select, button {
  font: inherit;
}
/* Hide visually but accessible (for accessibility) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
