/* CSS Reset & Normalize */
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 {
  font-size:16px;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F6EF;
  color: #222E38;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%; display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #395B84;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #66A390;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
strong, b {
  font-weight: 700;
}
p {
  margin-bottom: 16px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
/* Header and Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(57,91,132,0.04);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 14px 16px;
}
header img {
  height: 44px; width: auto;
  flex-shrink: 0;
}
.main-nav {
  display: flex; gap: 20px;
  align-items: center;
  margin-left: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #395B84;
  border-radius: 20px;
  padding: 8px 14px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #66A390;
  color: #fff;
}
.cta-btn {
  background: #66A390;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 12px 28px;
  margin-left: auto;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px 0 rgba(57,91,132,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.15s;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #395B84;
  color: #fff;
  box-shadow: 0 5px 14px 0 rgba(102,163,144, 0.13);
  transform: translateY(-2px) scale(1.055);
}
.cta-btn.secondary {
  background: #fff;
  color: #395B84;
  border: 2px solid #395B84;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #395B84;
  color: #fff;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  font-size: 2rem;
  color: #395B84;
  border-radius: 10px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.18s;
  display: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(57,91,132,0.08);
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #395B84;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.75,.16,.32,1);
  z-index: 8888;
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 18px 18px 18px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(102,163,144,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 16px 6px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #66A390;
  color: #395B84;
}
/* Responsive Navigation */
@media (max-width: 1024px) {
  .main-nav {
    gap: 14px; margin-left: 10px;
  }
  .cta-btn { padding: 10px 18px; font-size: 1rem; }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px; padding: 10px 6px;
  }
  .main-nav a { padding: 7px 10px; }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    padding: 10px 8px;
    gap: 8px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* FOOTER STYLES */
footer {
  background: #fff;
  box-shadow: 0 -2px 10px 0 rgba(57,91,132,0.055);
  padding: 22px 0 6px 0;
  margin-top: 60px;
}
footer .container {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-nav a {
  color: #395B84;
  font-size: 1rem;
  padding: 3px 10px;
  border-radius: 8px;
  transition: background 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #66A390;
  color: #fff;
}
footer p {
  font-size: 0.93rem;
  color: #395B84;
}

/* SECTION AND LAYOUT SPACING */
.section,
.hero,
.features,
.services-overview,
.about-intro,
.cta-banner,
.team-story,
.brand-values,
.services-hero,
.service-list,
.pricing-hero,
.pricing-table,
.pricing-faq,
.policy-intro,
.privacy-details,
.gdpr-details,
.cookies-details,
.terms-details,
.contact-hero,
.contact-details,
.contact-form,
.thank-you-message,
.testimonials-hero,
.testimonial-list,
.testimonials-preview
 { margin-bottom: 60px; padding: 40px 20px; }

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .content-wrapper{
    gap: 24px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(57,91,132,0.10);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  transition: box-shadow 0.20s, transform 0.17s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px rgba(102,163,144,0.16);
  transform: translateY(-3px) scale(1.025);
}
.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: 900px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #283C55;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(57,91,132,0.08);
  min-width: 280px;
  margin-bottom: 24px;
  margin-right: 20px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card p {
  font-size: 1.05rem; font-style: italic;
}
.testimonial-card span {
  display: block;
  font-size: 0.97rem;
  color: #66A390;
  margin-top: 8px;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 18px rgba(102,163,144,0.17);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & CTA BANNER STYLES */
.hero, .about-hero, .services-hero, .pricing-hero, .testimonials-hero, .policy-intro, .thank-you-message, .contact-hero {
  background: #66A390;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(57,91,132,0.16);
  margin-bottom: 60px;
  padding: 52px 14px;
}
.hero h1, .about-hero h1, .services-hero h1, .pricing-hero h1, .testimonials-hero h1, .policy-intro h1,.thank-you-message h1, .contact-hero h1 {
  color: #fff;
}
.cta-banner {
  background: #395B84;
  color: #fff;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(102,163,144,0.12);
}
.cta-banner .cta-btn {
  margin-top: 12px;
  background: #F9F6EF;
  color: #395B84;
  border: 2px solid #66A390;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #66A390;
  color: #fff;
}

/* FEATURES / SERVICE OVERVIEW */
.features ul, .about-intro ul, .brand-values ul, .service-list ul, .cookies-details ul, .terms-details ul, .privacy-details ul, .gdpr-details ul {
  margin-left: 20px !important;
  margin-bottom: 8px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features ul li, .about-intro ul li, .brand-values ul li, .service-list ul li, .cookies-details ul li, .terms-details ul li, .privacy-details ul li, .gdpr-details ul li {
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 24px;
}
.features ul li:before, .about-intro ul li:before, .brand-values ul li:before, .service-list ul li:before {
  content: '\2022';
  font-size: 1.3em; color: #66A390;
  position: absolute; left: 0; top: 0;
}

/* SERVICE LISTING / GRID STYLES */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(57,91,132,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px 22px 22px;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
  min-width: 230px;
  margin-bottom: 20px;
}
.service-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  flex-shrink: 0;
  border-radius: 9px;
  background: #F9F6EF;
  box-shadow: 0 1px 6px rgba(57,91,132,0.08);
  padding: 6px;
}
.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #395B84;
}
.service-item .price {
  margin-top: 16px;
  color: #66A390;
  font-weight: bold;
  font-size: 1rem;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 22px rgba(57,91,132,0.17);
  transform: translateY(-2px) scale(1.017);
}

/* PRICING TABLE */
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 14px rgba(57,91,132,0.07);
  margin-bottom: 30px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  font-family: 'Roboto', Arial, sans-serif;
  text-align: left;
  padding: 14px 14px;
  color: #222E38;
}
.pricing-table th {
  background: #395B84;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  border-right: 2px solid #F9F6EF;
}
.pricing-table tr {
  border-radius: 20px;
}
.pricing-table tbody tr {
  box-shadow: 0 2px 11px rgba(57,91,132,0.05);
  border-radius: 13px;
  transition: box-shadow 0.14s, transform 0.15s;
}
.pricing-table tbody tr:hover {
  box-shadow: 0 5px 19px rgba(102,163,144,0.07);
  background: #EFF7F2;
}

/* FAQ and DL/DT/DD */
dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #395B84;
  margin-top: 12px;
}
dd {
  margin-left: 0;
  color: #395B84;
  margin-bottom: 10px;
}

/* FORM STYLES (kontakt) */
input, textarea, button, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #DDDDDD;
  padding: 10px;
  margin-bottom: 16px;
  outline: none;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #395B84;
  box-shadow: 0 2px 7px #395b842e;
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  color: #283C55;
  box-shadow: 0 -3px 24px 0 rgba(57,91,132,0.13);
  padding: 24px 6vw 18px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 9999;
  transition: transform 0.27s cubic-bezier(.86,.07,.25,1);
}
.cookie-banner.closed {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.17s;
  box-shadow: 0 2px 8px 0 rgba(57,91,132,0.05);
}
.cookie-banner .accept-btn {
  background: #66A390;
  color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #395B84;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #395B84;
  border: 2px solid #395B84;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #395B84;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #fffbe6;
  color: #395B84;
  border: 2px solid #66A390;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #66A390;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%
  ;top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  background: #fff;
  color: #222E38;
  box-shadow: 0 8px 36px 0 rgba(57,91,132,0.19);
  border-radius: 22px;
  z-index: 10000;
  padding: 38px 24px 32px 24px;
  width: 94vw;
  max-width: 420px;
  min-width: 250px;
  display: none;
  flex-direction: column;
  gap: 12px;
  animation: modalIn 0.37s cubic-bezier(.86,.07,.25,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes modalIn {
  0% { opacity: 0; transform: translate(-50%, -60%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  color: #395B84;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-switch {
  display: inline-flex; align-items: center;
  width: 40px; height: 22px;
  background: #EFF7F2;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-switch input{
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-modal .cookie-slider {
  position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #66A390;
  border-radius: 50%;
  transition: left 0.16s, background 0.22s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  left: 20px;
  background: #395B84;
}
.cookie-modal .desc {
  font-size: 0.97rem;
  color: #395B84;
  margin-bottom: 6px;
}
.cookie-modal .modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 14px;
  padding: 9px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  color: #fff;
  background: #66A390;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal button.cancel {
  background: #fff;
  color: #395B84;
  border: 2px solid #395B84;
}
.cookie-modal button.cancel:hover { background: #395B84; color: #fff; }
.cookie-modal button:hover { background: #395B84; }

/* THANK YOU PAGE BUTTON */
.thank-you-message .cta-btn {
  margin-top: 20px;
}

/* RESPONSIVE/SINGLE COLUMN FIXES */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
  .service-grid, .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .service-grid {
    gap: 16px;
  }
  .service-item {
    padding: 18px 11px 16px 11px;
  }
  .testimonial-card {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .section, .hero, .about-hero, .services-hero, .pricing-hero, .testimonials-hero, .policy-intro, .thank-you-message, .contact-hero, .features, .services-overview, .about-intro, .cta-banner, .team-story, .brand-values, .service-list, .pricing-table, .pricing-faq, .privacy-details, .gdpr-details, .cookies-details, .terms-details, .contact-details, .contact-form, .thank-you-message, .testimonials-hero, .testimonial-list, .testimonials-preview {
    padding: 24px 5px;
    margin-bottom: 44px;
  }
  .service-grid, .card-container, .content-grid, .content-wrapper{
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex: 1 1 100%;
    width: 100%;
    align-items: flex-start;
    min-width: 0;
    margin-right: 0;
  }
  .testimonials-preview .content-wrapper, .testimonial-list .content-wrapper {
    gap: 10px;
  }
}
@media (max-width: 420px) {
  header img {
    height: 36px;
  }
  .mobile-menu {
    padding: 18px 5px;
  }
  .cookie-banner { padding: 18px 4vw 12px 4vw; font-size: 0.95rem; }
  .cookie-modal { padding: 22px 8px 18px 8px; }
}

/* MICROINTERACTIONS */
button, .cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
@media (hover: hover) {
  button:hover, .cta-btn:hover {
    transform: scale(1.03);
  }
}

/* ACCENT BACKGROUNDS */
.bg-accent {
  background: #F9F6EF;
}
.bg-primary {
  background: #395B84;
  color: #fff;
}
.bg-secondary {
  background: #66A390;
  color: #fff;
}
/* Accessibility: Remove outline but keep for keyboard nav */
:focus-visible {
  outline: 2.5px solid #395B84;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #90a4b7; opacity:0.99; }
::-moz-placeholder { color: #90a4b7; opacity:0.99; }
:-ms-input-placeholder { color: #90a4b7; opacity:0.99; }
::placeholder { color: #90a4b7; opacity:0.99; }

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