/* ============================================================
   CSS RESET & NORMALIZE (mobile-first)
   ============================================================ */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F5F5F5;
  color: #1A237E;
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
h1,h2,h3,h4,h5,h6 {
  color: #1A237E;
  font-family: 'Montserrat', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
h2 { font-size: 1.6rem; margin-bottom: 18px; line-height: 1.25; }
h3 { font-size: 1.25rem; margin-bottom: 14px; font-weight: 600; }
h4,h5,h6 { font-size: 1.05rem; margin-bottom: 10px; }

p {
  margin-bottom: 18px;
  color: #273375;
}

strong {
  font-weight: 700;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 26px;
}
ul li, ol li {
  margin-bottom: 8px;
  color: #1A237E;
}
a {
  color: #1A237E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0A143C;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

/* =============================================================
   LAYOUT STRUCTURE
   ============================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px 0 rgba(34,44,77,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 260px;
  min-width: 250px;
}

.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 {
  background: #F5F5F5;
  border-left: 5px solid #1A237E;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(26,35,126,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  color: #1A237E;
  font-size: 1.05rem;
  position: relative;
}
.testimonial-card p {
  color: #1A237E;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #273375;
  font-size: 0.99rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Card for tables (pricing) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(26,35,126,0.07);
}
thead {
  background: #E8EAF6;
}
th, td {
  padding: 12px 20px;
  text-align: left;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1A237E;
  border-bottom: 1px solid #E0E0E0;
}
th {
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/*
   ===============================
        HEADER & NAVIGATION
   ===============================
*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(26,35,126,0.04);
  position: relative;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 38px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A237E;
  padding: 8px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #FFD600;
  border-radius: 3px;
  transition: width .18s ease-in;
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-button {
  background: #1A237E;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  padding: 11px 28px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #273375;
  box-shadow: 0 4px 20px rgba(26,35,126,0.10);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1A237E;
  font-size: 2rem;
  cursor: pointer;
  z-index: 102;
  margin-left: auto;
  padding: 2px 12px;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #FFD600;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,35,126,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.67,.21,.38,1.19);
}

.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -2px 0 10px rgba(26,35,126,0.13);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #FFD600;
  margin: 16px 22px 24px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1100;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
  padding-bottom: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 9px 0;
  border-radius: 2px;
  transition: background 0.16s, color 0.16s;
  margin-right: 15px;
  text-align: left;
  min-width: 150px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #FFD600;
  color: #1A237E;
}

/* Hide main-nav, show burger on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Ensure mobile menu always on top of all content */
.mobile-menu, .mobile-menu.open {
  z-index: 1050;
}

/* =============================================================
   HERO, FEATURE, & UTILITY SECTIONS
   ============================================================= */
.hero {
  background: linear-gradient(105deg, #1A237E 85%, #273375 100%);
  color: #fff;
  padding: 50px 0 60px 0;
  min-height: 260px;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-button {
  background: #FFD600;
  color: #1A237E;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #fff;
  color: #1A237E;
  box-shadow: 0 6px 22px rgba(26,35,126,.13);
}

.features {
  background: #fff;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features ul li {
  flex: 1 1 220px;
  min-width: 180px;
  background: #F5F5F5;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.045);
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.06rem;
  margin-bottom: 20px;
  transition: transform 0.13s, box-shadow 0.16s;
}
.features ul li:hover {
  transform: translateY(-2px) scale(.99);
  box-shadow: 0 6px 24px rgba(26,35,126,0.14);
}
.features ul li img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin-right: 6px;
}

/* Card style for service & value lists (services page, etc.) */
.services-list ul, .services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: disc inside;
  margin: 16px 0 24px 0;
  padding: 0 0 0 18px;
}
.services-list ul li, .services-overview ul li {
  background: #fff;
  box-shadow: 0 1px 10px rgba(26,35,126,.04);
  border-radius: 8px;
  padding: 16px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  font-size: 1.06rem;
  margin-bottom: 10px;
}
.services-list ul li strong, .services-overview ul li strong {
  color: #1A237E;
}

/* Utility: use-service-now, contact-brief, etc. */
.use-service-now, .contact-brief, .still-have-questions, .thank-you-section {
  background: #fff;
  box-shadow: 0 1px 14px 0 rgba(26,35,126,0.06);
  border-radius: 15px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.use-service-now h3, .contact-brief h2, .still-have-questions h2, .thank-you-section h1 {
  margin-bottom: 16px;
}

/* FAQ, Category Lists */
.faq-list ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.faq-list ul li {
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,35,126,0.05);
  border-radius: 9px;
  padding: 18px 20px 14px 20px;
  margin-bottom: 14px;
  font-size: 1.07rem;
}
.faq-list strong {
  color: #273375;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.category-list li {
  background: #E8EAF6;
  border-radius: 7px;
  padding: 7px 15px;
  color: #1A237E;
  font-size: 0.97rem;
  font-weight: 500;
}

/* Legal/DSGVO */
.legal-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 9px rgba(26,35,126,.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: #1A237E;
}
.legal-section ul {
  margin-bottom: 16px;
}
.legal-section ul li {
  margin-bottom: 8px;
  color: #273375;
}

/* Contact Cards */
.contact-form-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.contact-form-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 10px 14px 10px 10px;
  font-size: 1.09rem;
}
.contact-form-info ul li img {
  width: 26px;
  height: 26px;
}

/* Addresses */
address {
  font-style: normal;
  color: #1A237E;
  background: #E8EAF6;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 1rem;
}

/* Map box in contact */
.contact-info div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.contact-info div img {
  width: 36px;
  height: 36px;
}
.contact-info span {
  font-size: 1rem;
  color: #273375;
}

/* =============================================================
   TESTIMONIALS
   (already included .testimonial-card above) 
   ============================================================= */
.testimonials h2,
.testimonials .content-wrapper > h2 {
  margin-bottom: 20px;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #1A237E;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 80px;
  width: 100%;
  font-size: 1rem;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #FFD600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  color: #fff;
  font-size: 0.99rem;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 46px;
  width: auto;
  vertical-align: middle;
}

/* =============================================================
   BUTTONS & FORM ELEMENTS
   ============================================================= */
button, .cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  outline: none;
}
button:active, .cta-button:active {
  outline: none;
}

input[type="text"], input[type="email"], textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 11px 15px;
  margin-bottom: 16px;
  border: 1px solid #B6BFE0;
  border-radius: 6px;
  background: #F5F5F5;
  color: #1A237E;
  transition: border-color 0.14s, box-shadow 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #1A237E;
  box-shadow: 0 2px 16px rgba(26,35,126,0.14);
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #273375;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -3px 20px rgba(26,35,126,0.12);
  z-index: 1200;
  font-size: 1rem;
  gap: 12px;
  animation: cookie-banner-in 0.39s cubic-bezier(.77,.15,.96,.33);
}
@keyframes cookie-banner-in {
  0% { transform: translateY(60px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner button {
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  padding: 9px 19px;
  transition: background 0.12s, color 0.12s, box-shadow 0.08s;
}
.cookie-banner .accept-btn {
  background: #FFD600;
  color: #1A237E;
}
.cookie-banner .accept-btn:hover {
  background: #fff;
  color: #1A237E;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #1A237E;
  border: 1.5px solid #FFD600;
}
.cookie-banner .reject-btn:hover {
  background: #FFD600;
  color: #1A237E;
}
.cookie-banner .settings-btn {
  background: #273375;
  color: #FFD600;
  border: 1.5px solid #FFD600;
}
.cookie-banner .settings-btn:hover {
  background: #FFD600;
  color: #1A237E;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,35,126,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 38px rgba(26,35,126,0.13);
  max-width: 380px;
  width: 94vw;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #1A237E;
  animation: cookie-modal-in 0.33s cubic-bezier(.56,.41,0,1.26);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(-45px) scale(.96) rotateX(7deg); opacity:0; }
  100% { transform: none; opacity:1; }
}
.cookie-modal-content h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal-content label {
  font-size: 1.02rem;
  font-weight: 500;
}
.cookie-modal-content .cookie-toggle {
  margin-left: 10px;
}
.cookie-modal-content .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
}

/* Cookie toggles */
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #B6BFE0;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #1A237E;
}
.cookie-toggle:before {
  content: '';
  display: block;
  height: 18px;
  width: 18px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 24px;
}

/* Dismiss and close (X) button for cookie modal */
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #1A237E;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD600;
}

/* =============================================================
   RESPONSIVE: MOBILE/TABLET
   ============================================================= */
@media (max-width: 1020px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .footer-brand img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1rem; }
  .card, .card-container {
    flex-direction: column;
    min-width: unset;
  }
  .card {
    padding: 16px 10px 14px 10px;
  }
  .section,
  .use-service-now, .contact-brief, .still-have-questions, .thank-you-section, .legal-section {
    padding: 24px 8px;
    margin-bottom: 34px;
  }
  .footer-menu {
    gap: 11px;
    flex-wrap: wrap;
    font-size: 0.97rem;
  }
  .container {
    gap: 16px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero {
    padding: 30px 0 36px 0;
    min-height: 180px;
  }
  .features ul, .services-list ul, .services-overview ul {
    flex-direction: column;
    gap: 13px;
  }
  .features ul li, .services-list ul li, .services-overview ul li {
    flex: 1 1 100%;
    min-width: unset;
    padding: 13px 10px 10px 10px;
    font-size: 0.98rem;
  }
  .card-container, .content-grid, .features, .testimonials {
    gap: 11px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px 9px;
    font-size: 0.98rem;
  }
  .text-image-section { flex-direction: column; gap: 12px; }
  .contact-form-info ul li, .contact-info span { font-size: 0.99rem; }
}

@media (max-width: 600px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .footer-brand img {
    height: 30px;
  }
  .cta-button {
    font-size: 0.96rem;
    padding: 8px 16px;
    margin-left: 0;
    width: 100%;
  }
}

/* Hide the cookie consent banner on print */
@media print {
  .cookie-banner, .cookie-modal {
    display: none !important;
  }
}

/* Focus visible accessibility */
:focus-visible {
  outline: 2.5px solid #FFD600;
  outline-offset: 2px;
}

/* Utility: visually hidden (for ARIA, etc.) */
.visually-hidden { 
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px; width: 1px;
  margin: -1px; padding: 0; border: 0;
}

/* END */
