/* RESET & NORMALIZATION */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  background: #F2F6FA;
  color: #205072;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #205072;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #86C7F3;
}
ul, ol {
  margin-left: 1.3em;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #205072;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: #205072;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #205072;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #205072;
  margin-bottom: 10px;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: #205072;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(32,80,114,0.04);
}

@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  .section {
    padding: 30px 8px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 22px 4vw;
    margin-bottom: 38px;
  }
  .h1,h1 {font-size:2rem}
  .h2,h2 {font-size:1.4rem}
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E2EAF0;
  box-shadow: 0 1px 6px 0 rgba(32,80,114, 0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #205072;
  padding: 6px 0 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #86C7F3;
  border-bottom: 2px solid #86C7F3;
}
.cta-primary {
  background: #205072;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 28px 12px 28px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(32,80,114, 0.07);
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  margin-left: 24px;
  text-align: center;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #338dbf;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px 0 rgba(134,199,243,0.18);
  text-decoration: none;
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #205072;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: 18px;
  z-index: 120;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #338dbf;
  background: #F2F6FA;
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 330px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 30px 0 rgba(32,80,114,0.14);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.45,0,.3,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 18px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #205072;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #338dbf;
  background: #F2F6FA;
  border-radius: 50%;
}
.mobile-nav {
  margin-top: 38px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #205072;
  font-weight: 500;
  padding: 14px 4px 12px 2px;
  border-radius: 8px;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2F6FA;
  color: #338dbf;
}
@media (max-width: 1000px) {
  .main-nav, .cta-primary:not(.mobile-cta) {display:none;}
  .mobile-menu-toggle {display:block;}
}
@media (max-width: 480px) {
  .mobile-menu {padding:20px 6vw 14px 10vw; max-width:99vw;}
}

/* MAIN SECTION AND FLEX LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(32,80,114,0.04);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s, transform 0.1s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(32,80,114,0.10);
  transform: translateY(-2px) scale(1.01);
}

.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;align-items:flex-start;}
}

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

/* FEATURES & GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top:18px;
}
.feature-grid li {
  flex: 1 1 270px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.05);
  border-radius: 14px;
  padding: 22px 20px 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.feature-grid li img {
  width: 40px;
  margin-bottom: 6px;
}
.feature-grid li h3 {
  margin-bottom: 4px;
}
.feature-grid li:hover {
  box-shadow: 0 4px 16px 0 rgba(134,199,243,0.11);
}

/* SERVICE LISTS */
.service-list, .tips-list, .team-shortlist, .faq-accordion, .faq-accordion .faq-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(32,80,114,0.06);
  padding: 18px 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
}
.service-list li .price {
  font-size: 1.1rem;
  background: #F2F6FA;
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 4px 12px;
  margin-top: 4px;
  font-weight:bold;
}
.read-more {
  color: #338dbf;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 6px;
  display: inline-block;
  transition: color 0.15s;
}
.read-more:hover,
.read-more:focus {
  color: #205072;
  text-decoration: underline;
}

/* Service grid (Services page) */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.service-grid li {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 8px 0 rgba(32,80,114,0.06);
  padding: 24px 24px 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
  min-width: 240px;
}
.service-grid li:hover {
  box-shadow: 0 6px 22px 0 rgba(134,199,243,0.13);
}
.price-tag {
  margin-top: 10px;
  color: #205072;
  background: #F2F6FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 7px;
  padding: 5px 14px;
  display: inline-block;
}

/* TESTIMONIALS */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 20px;
}
.testimonial-card {
  background: #fff;
  color: #205072;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(32,80,114,0.06);
  padding: 20px 24px 20px 24px;
  flex: 1 1 320px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  font-size: 1.09rem;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.08s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 36px rgba(134,199,243,0.11);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-author {
  color: #338dbf;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  margin-top: 8px;
}
/* Ensure readability and contrast */
.testimonial-card, .testimonial-grid .testimonial-card {
  background: #fff;
  color: #205072;
}

.average-rating {
  background: #F2F6FA;
  color: #205072;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 14px;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  height: 36px;
  width: auto;
  display: block;
  filter: grayscale(0.5) opacity(0.7);
  transition: filter 0.18s;
}
.client-logos img:hover { filter: grayscale(0) opacity(1); }

/* CTA BANNERS */
.cta-banner {
  background: #205072;
  border-radius: 16px;
  color: #fff;
  padding: 38px 24px 32px 24px;
  margin-top: 12px;
  box-shadow: 0 6px 32px 0 rgba(32,80,114, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-banner h2, .cta-banner p,
.cta-banner a, .cta-banner strong {
  color: #fff;
}
.cta-banner .cta-primary {
  background: #fff;
  color: #205072;
  margin-left: 0;
  margin-top: 17px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px 0 rgba(134,199,243,0.16);
}
.cta-banner .cta-primary:hover,
.cta-banner .cta-primary:focus {
  background: #F2F6FA;
  color: #205072;
}
.contact-short-info {
  margin-top: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 9px 16px 7px 13px;
  color: #fff;
  font-size: 0.99rem;
}

/* FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(32,80,114,0.09);
  padding: 20px 22px 17px 22px;
  margin-bottom: 16px;
}
.faq-item h2 {
  font-size: 1.15rem;
  margin-bottom: 7px;
  color: #205072;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.faq-item p {
  margin-bottom: 0;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 0 17px 0;
  counter-reset: stepnum;
}
.process-steps li {
  font-size: 1.07rem;
  background: #F2F6FA;
  padding: 12px 16px 12px 38px;
  border-radius: 9px;
  position: relative;
}
.process-steps li::before {
  content: counter(stepnum);
  counter-increment: stepnum;
  background: #205072;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.timeline {
  margin-top: 13px;
  color: #338dbf;
  background: #F2F6FA;
  border-radius: 7px;
  padding: 10px 17px 8px 12px;
  font-size: 0.99rem;
}

/* TEAM SHORTLIST */
.team-shortlist {
  gap: 10px;
  margin-bottom: 16px;
}
.team-shortlist li {
  background: #F2F6FA;
  border-radius: 7px;
  padding: 9px 13px;
  font-size: 1.08rem;
}

/* GENERAL BUTTONS & LINKS */
button, .button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: 24px;
  border: none;
  background: #205072;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.16s, transform 0.13s;
  font-weight: 500;
  outline: none;
  margin: 0 6px 0 0;
}
button:hover, .button:hover, .btn:hover,
button:focus, .button:focus, .btn:focus {
  background: #338dbf;
  color: #fff;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 3px 11px 0 rgba(134,199,243,0.13);
}

/* MAP/LOCATION (Kontakt) */
.map {
  background: #F2F6FA;
  color: #205072;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1em;
  margin-top: 20px;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #E2EAF0;
  padding: 0;
  width:100%;
  min-height: 90px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 32px 16px 24px 16px;
  gap: 0;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #338dbf;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
  margin-bottom: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #205072;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.98rem;
  color: #205072;
  margin-left: 14px;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .logo img {
  height: 34px;
  width: auto;
  margin-bottom: 0;
}

/* CONTACT DETAILS ON PAGES */
.contact-details,
.contact-short-info {
  font-size: 1.02rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #205072;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 8vw 12px 8vw;
  z-index: 12000;
  box-shadow: 0 -6px 22px 0 rgba(32,80,114,0.20);
  font-size: 1rem;
  gap: 28px;
  transition: transform 0.36s;
}
.cookie-banner .btn, .cookie-banner button {
  margin: 0 4px;
  padding: 8px 22px;
  border-radius: 18px;
  background: #fff;
  color: #205072;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 3px 11px 0 rgba(134,199,243,0.10);
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus, .cookie-banner button:hover, .cookie-banner button:focus {
  background: #338dbf;
  color: #fff;
}
.cookie-banner.hide {
  transform: translateY(110%);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,80,114,0.35);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.18s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #205072;
  border-radius: 16px;
  box-shadow: 0 5px 42px 0 rgba(32,80,114,0.16);
  max-width: 94vw;
  width: 410px;
  padding: 28px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: appearScale 0.5s cubic-bezier(.18,0,.36,1);
}
@keyframes appearScale {
  0% {transform: scale(0.97); opacity:0;}
  100% {transform: scale(1); opacity:1;}
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  font-weight: 700;
  color: #205072;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  background: #F2F6FA;
  border-radius: 9px;
  padding: 8px 13px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #205072;
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  font-weight: 600;
  color: #205072;
}
.cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #205072;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover { color: #338dbf; }

/* RESPONSIVE LAYOUTS */
@media (max-width: 960px) {
  .feature-grid, .service-grid, .testimonial-grid, .testimonial-slider, .content-grid, .card-container {gap:18px;}
}
@media (max-width: 820px) {
  .feature-grid li, .service-grid li, .testimonial-card, .card {
    flex-basis: 100%;
    min-width: 95%;
  }
  footer .container, header .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-nav {margin-top:7px;}
}
@media (max-width: 634px) {
  .card, .service-list li, .feature-grid li, .testimonial-card {
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonial-card, .feature-grid li, .service-grid li, .card {
    min-width: 96vw;
  }
}
@media (max-width: 500px) {
  .cta-banner {padding:14px 8px 11px 8px;}
  .cookie-modal-content {padding:14px 7vw 12px 7vw;}
}

/* ACCESSIBILITY */
a:focus, button:focus, .cta-primary:focus, .btn:focus, .mobile-menu-toggle:focus, .cookie-modal-close:focus {
  outline: 2px solid #338dbf;
  outline-offset: 1px;
}

/* MICRO-INTERACTIONS */
.card, .feature-grid li, .service-grid li, .testimonial-card, .cta-primary {
  transition: box-shadow 0.14s, transform 0.10s, background 0.13s, color 0.14s;
}
.card:active, .feature-grid li:active, .testimonial-card:active {
  transform: scale(0.99);
}

/****** HELPER CLASSES (if needed by js or html) ******/
.hide {display:none!important;}

/****** END ******/
