/* ------------------ CSS RESET & BASE ------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  min-height: 100vh;
  background: #F7FAFC;
  color: #2C3E50;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #8ABAD3;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 21px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}
strong, b {
  font-weight: bold;
}

/* ------------------ CONTAINER ------------------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ------------------ TYPOGRAPHY ------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2C3E50;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.34rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  font-weight: 500;
}
.subheadline {
  color: #4c6479;
  font-size: 1.19rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 1.5em;
  line-height: 1.55;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #374151;
}

/* Typography scale for hierarchy */
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.05rem;
  }
}

/* ------------------ LAYOUT / SECTIONS ------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44,62,80, 0.04);
}
.hero {
  background: #F2F4F7;
  padding: 50px 0 40px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (max-width: 700px) {
  .hero {
    padding: 28px 0 24px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 8px;
    border-radius: 10px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ------------------ BUTTONS ------------------ */
.cta-primary, .btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  background: #2C3E50;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.07);
  transition: background 0.21s, color 0.21s, box-shadow 0.22s, transform 0.13s;
  text-decoration: none;
}
.cta-primary:hover, .btn:hover, button:hover, input[type="submit"]:hover,
.cta-primary:focus, .btn:focus {
  background: #8ABAD3;
  color: #22303a;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(44,62,80,0.12);
}
button:active {
  transform: scale(0.98);
}
.btn-outline {
  background: #fff;
  color: #2C3E50;
  border: 2px solid #8ABAD3;
}
.btn-outline:hover {
  background: #8ABAD3;
  color: #2C3E50;
}
.btn-accent {
  background: #F6CC4B;
  color: #2C3E50;
  font-weight: bold;
}
.btn-accent:hover {
  background: #FFE884;
  color: #22303a;
}

/* ------------------ FLEXBOX GRIDS ------------------ */
.feature-grid, .guides-list, .card-container, .card-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card-container, .card-grid {
  justify-content: space-between;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .feature-grid, .guides-list, .card-container, .content-grid, .features, .card-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ------------------ FEATURE ITEM ------------------ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(44,62,80,0.07);
  padding: 18px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}

/* ------------------ CARDS & GUIDES ------------------ */
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.06);
  padding: 20px 22px;
  transition: box-shadow 0.18s, transform 0.10s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  transform: translateY(-4px) scale(1.02);
}
.guide-card {
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(44,62,80,0.06);
  padding: 20px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.10s;
}
.guide-card:hover {
  background: #F6F8FB;
  box-shadow: 0 6px 22px rgba(44,62,80,0.10);
  transform: translateY(-2px) scale(1.01);
}

/* ------------------ TESTIMONIALS ------------------ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F7FAFC;
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(44,62,80,0.07);
  padding: 20px;
  color: #22303a;
  font-size: 1.09rem;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #22303a !important;
  font-size: 1.09rem;
  margin-bottom: 2px;
}
.testimonial-card span {
  font-weight: 600;
  color: #506273;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.ratings-summary {
  background: #e9eef4;
  border-radius: 9px;
  padding: 9px 22px;
  display: inline-block;
  color: #2C3E50;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 1.01rem;
}

/* ------------------ HEADER & NAVIGATION ------------------ */
header {
  background: #fff;
  box-shadow: 0 1px 5px rgba(44, 62, 80, 0.07);
  padding: 0;
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 0 20px;
  min-height: 78px;
  justify-content: space-between;
}
.logo img {
  height: 42px;
  width: auto;
  vertical-align: middle;
  margin-right: 9px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 1rem;
  color: #2C3E50;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: #e8f2f8;
  color: #2C3E50;
}
@media (max-width: 900px) {
  header .container {
    gap: 14px;
    flex-wrap: wrap;
    min-height: 64px;
  }
  .main-nav {
    gap: 12px;
  }
}

/* ------------------ MOBILE NAVIGATION ------------------ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 1201;
  background: #2C3E50;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,62,80,0.13);
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #8ABAD3;
  color: #22303a;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,80,0.15);
  z-index: 1202;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu nav.mobile-nav {
  background: #fff;
  width: 84vw;
  max-width: 375px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 44px 0 0 0;
  box-shadow: 2px 0 28px rgba(44,62,80,0.16);
}
.mobile-menu-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #fff;
  border: 2px solid #2C3E50;
  border-radius: 7px;
  color: #2C3E50;
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8ABAD3;
  color: #fff;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  padding: 16px 30px;
  color: #2C3E50;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #eaf3f8;
  border-radius: 0;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e8f2f8;
  color: #22303a;
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* -------------- FOOTER -------------- */
footer {
  background: #fff;
  box-shadow: 0 -2px 10px rgba(44,62,80,0.05);
  padding: 42px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-right: 30px;
}
.footer-nav a {
  color: #4C6479;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.13s, text-decoration 0.13s;
}
.footer-nav a:hover {
  color: #8ABAD3;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #727b87;
  font-size: 0.96rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-right: 0;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px 0;
  }
  .footer-logo img {
    height: 38px;
  }
}

/* -------------- FORMS (for Kontakt) -------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #8ABAD3;
  background: #f7fafd;
  padding: 10px 15px;
  border-radius: 8px;
  resize: vertical;
  font-size: 1rem;
  margin-bottom: 12px;
  width: 100%;
  color: #2C3E50;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #8ABAD3;
  background: #fff;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  margin-bottom: 6px;
  color: #2C3E50;
  display: block;
}

/* -------------- FAQ TEASER -------------- */
.faq-teaser {
  background: #F3F8FC;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 24px;
  box-shadow: 0 1px 8px rgba(44,62,80,0.05);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2C3E50;
}
.faq-teaser h3 {
  margin-bottom: 11px;
  color: #2C3E50;
}
.faq-teaser a {
  color: #2C3E50;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s;
}
.faq-teaser a:hover {
  color: #8ABAD3;
}

/* -------------- ALERTS & HIGHLIGHTS -------------- */
.alert, .highlight {
  background: #F6CC4B;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(246,204,75,.06);
  color: #22303a;
  font-weight: 500;
  font-size: 1.02rem;
  margin-bottom: 16px;
}

/* -------------- ANIMATIONS & TRANSITIONS -------------- */
[tabindex]:focus,
button:focus, input:focus, .cta-primary:focus {
  outline: 2px solid #8ABAD3;
  outline-offset: 2px;
}
.section, .card, .feature-item, .guide-card {
  transition: box-shadow 0.16s, transform 0.12s;
}

/* ------------------ COOKIE CONSENT BANNER ------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffde7;
  box-shadow: 0 -2px 18px rgba(44,62,80,0.14);
  border-top: 2px solid #F6CC4B;
  z-index: 1400;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw 18px 7vw;
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieBannerIn 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  color: #3a3c3b;
  flex: 1 1 220px;
  margin-right: 14px;
}
.cookie-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button, .cookie-banner .btn {
  font-size: 0.97rem;
  padding: 8px 20px;
  min-width: 115px;
  box-shadow: none;
}
.cookie-banner .btn-settings {
  background: #F6CC4B;
  color: #2C3E50;
  font-weight: 600;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #FFE884;
  color: #22303a;
}
.cookie-banner .btn-outline {
  background: #fff;
  color: #2C3E50;
  border: 1.5px solid #8ABAD3;
}

/* ------------------ COOKIE MODAL ------------------ */
.cookie-modal {
  position: fixed;
  z-index: 1650;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(44,62,80, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.28s cubic-bezier(.77,0,.18,1);
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 92vw;
  width: 400px;
  padding: 33px 26px 24px 26px;
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: #f7fafc;
  color: #2C3E50;
  border: none;
  border-radius: 5px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.23rem;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #8ABAD3;
  color: #fff;
}
.cookie-modal h2 {
  margin-bottom: 0;
  font-size: 1.15rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 4px;
  border-radius: 7px;
  background: #f3f6f8;
}
.cookie-cat-row label {
  margin: 0 5px 0 0;
  font-size: 1rem;
}
.cookie-cat-row input[type="checkbox"][disabled] {
  accent-color: #2C3E50;
  opacity: 0.44;
  cursor: default;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  font-size: 0.98rem;
  padding: 8px 20px;
  min-width: 100px;
}

@media (max-width: 480px) {
  .cookie-modal-content {
    width: 99vw;
    min-width: unset;
    border-radius: 8px;
    padding: 20px 7px 17px 11px;
  }
  .cookie-modal h2 {
    font-size: 1rem;
  }
}

/* -------------- MISC: SPACINGS -------------- */
section, .section {
  margin-bottom: 60px;
}
.card, .feature-item, .guide-card, .testimonial-card, .faq-teaser {
  margin-bottom: 20px;
}
.card-container, .card-grid, .content-grid, .features {
  gap: 24px;
}
.text-image-section {
  gap: 30px;
}

/* -------------- SCANDINAVIAN CLEAN AESTHETIC -------------- */
body, .section, .hero, .card, .feature-item, .testimonial-card, .footer, .footer-contact, .faq-teaser, .content-wrapper {
  background: #F7FAFC;
}
.section, .card, .guide-card, .feature-item, .testimonial-card {
  background: #fff;
}
.hero {
  background: #F2F4F7;
}
.button, .cta-primary, .btn, input[type="submit"] {
  box-shadow: 0 2px 8px rgba(44,62,80,0.07);
  border-radius: 32px;
}

/* Subtle neutral shadow for cards and sections */
.card, .section, .feature-item, .testimonial-card {
  box-shadow: 0 2px 10px rgba(44,62,80,0.05);
}

/* -- NATURAL MATERIAL FEEL (Color accents, light) -- */
hr {
  border: 0;
  border-top: 1px solid #e3e5ea;
  margin: 24px 0;
}

/* Light outline for form sections only */
form, fieldset {
  border-radius: 13px;
  border: 1.5px solid #d7e6f5;
  background: #FAFBFD;
  padding: 24px 18px;
  box-shadow: 0 1px 7px rgba(44,62,80, 0.03);
}

/* -------------- UTILITIES -------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* -------------- RESPONSIVE -------------- */
@media (max-width: 600px) {
  header .container, .footer .container, .feature-grid, .card-container, .content-grid, .guides-list, .features, .card-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  .section {
    margin-bottom: 26px;
    padding: 16px 2px;
  }
  .hero {
    padding: 16px 0 10px 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 17px 3vw 13px 3vw;
    font-size: 0.98rem;
  }
}

/* -------------- END OF STYLE.CSS -------------- */