/* ========================
   CSS RESET & NORMALIZE
   ======================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', serif;
  background: #F1F5F8;
  color: #232323;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #114C6D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB400;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(17,76,109,0.03);
  overflow: hidden;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #E7EDF2;
}
th {
  background: #F1F5F8;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.1rem;
}


/* =========================
   TYPOGRAPHY & HEADINGS
   ========================= */
h1, .hero h1 {
  font-family: 'Montserrat', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #114C6D;
  margin-bottom: 24px;
  line-height: 1.22;
}
h2 {
  font-family: 'Montserrat', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #18415c;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #18415c;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: #114C6D;
  margin-bottom: 12px;
}
p, li, dt, dd {
  font-size: 1rem;
  color: #232323;
}
p {
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #114C6D;
}

/* ========================
   UTILITIES & CONTAINERS
   ======================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(17,76,109,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(17,76,109,0.045);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 12px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0 8px 0;
  color: #18415c;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFB400;
  border-color: #FFB400;
}
.btn-primary {
  background: #114C6D;
  color: #fff !important;
  padding: 10px 32px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border-radius: 32px;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 9px rgba(17,76,109,0.10);
  transition: background 0.21s, box-shadow 0.16s;
  margin-left: 8px;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFB400;
  color: #232323 !important;
  box-shadow: 0 3px 12px rgba(255,180,0,0.12);
}
.btn-secondary {
  background: #fff;
  color: #114C6D !important;
  border: 2px solid #114C6D;
  padding: 10px 26px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border-radius: 32px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  margin-top: 16px;
  margin-bottom: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #114C6D;
  color: #fff !important;
  border-color: #FFB400;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #114C6D;
  cursor: pointer;
  margin-left: 20px;
  outline: none;
  z-index: 36;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
  .logo img {
    height: 31px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
  header .container {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================
     MOBILE MENU
   ================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,76,109, 0.98);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.7,.2,.18,1.0);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 36px;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 26px;
  cursor: pointer;
  z-index: 99;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 0;
  transition: color 0.22s;
  width: 78vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFB400;
}


/* ===============================
     HERO, FEATURES, CARDS, etc.
   =============================== */
.hero {
  background: linear-gradient(90deg, #ffffff 75%, #F1F5F8 100%);
  padding: 48px 0 44px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero p {
  color: #114C6D;
}
.hero p {
  font-size: 1.16rem;
  margin-bottom: 24px;
  color: #23425B;
}
.hero .btn-primary {
  margin-top: 8px;
  margin-left: 0;
}

.features {
  margin-bottom: 60px;
}
.features .content-wrapper {
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(17,76,109,0.07);
  padding: 28px 22px;
  flex: 1 1 228px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px rgba(255,180,0,0.055), 0 2px 18px rgba(17,76,109,0.12);
  transform: translateY(-2px) scale(1.02);
}
.feature-item img {
  height: 38px;
  width: 38px;
}
.feature-item h3 {
  margin-bottom: 6px;
  color: #114C6D;
}
.feature-item p {
  color: #23425B;
  font-size: 1.04rem;
}

/* Flexbox helpers (for required classes) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2.5px 16px rgba(17,76,109,0.06);
  padding: 30px 24px;
  flex: 1 1 310px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(255,180,0,0.065), 0 2.5px 24px rgba(17,76,109,0.12);
  transform: translateY(-2px) scale(1.015);
}
.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;
  align-items: center;
  gap: 20px;
  background: #F1F5F8;
  border-left: 6px solid #FFB400;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(17,76,109,0.06);
  color: #20405E;
  font-size: 1.07rem;
  font-family: 'Roboto', serif;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #20405E;
}
.testimonial-card span {
  font-family: 'Montserrat', serif;
  color: #18415c;
  font-size: 0.96rem;
  opacity: 0.94;
  margin-left: 12px;
}

.highlights ul, .trends-summary ul, .trusted-partners, .user-ratings {
  margin-bottom: 22px;
}
.highlights ul li, .trends-summary ul li, .trusted-partners, .user-ratings {
  margin-bottom: 10px;
}

ol {
  list-style: decimal inside;
  margin-left: 16px;
  margin-bottom: 18px;
}

/* ===============
    COMPARISON TABLES
 ================ */
.company-table, .profit-table table, .comparison-table table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(17,76,109,0.04);
  margin-bottom: 24px;
  font-size: 1rem;
  overflow-x: auto;
}
.company-table th, .profit-table th, .comparison-table th {
  background-color: #F1F5F8;
  color: #114C6D;
  font-size: 1.06rem;
}
.company-table td, .profit-table td, .comparison-table td {
  color: #20405E;
  background: #fff;
}
.company-table tr:last-child td, .profit-table tr:last-child td, .comparison-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .company-table th, .company-table td, .profit-table th, .profit-table td, .comparison-table th, .comparison-table td {
    padding: 8px 6px;
    font-size: 0.98rem;
  }
}

/* ===============
   CREDIBILITY, INSIGHTS, etc.
 =============== */
.credibility ul, .insights ul, .about ul, .usp ul, .team ul, .guide-articles ul, .faq dl {
  margin: 0 0 16px 0;
}
.credibility li, .insights li, .about ul li, .usp ul li, .team ul li, .guide-articles ul li {
  margin-bottom: 10px;
  font-size: 1.03rem;
}
.trusted-partners {
  font-family: 'Montserrat', serif;
  color: #18415c;
  font-size: 1.06rem;
  padding: 12px 0;
  margin-bottom: 0;
}

.guide-articles ul, .faq dl {
  margin-bottom: 26px;
}
.faq dt {
  font-family: 'Montserrat', serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #114C6D;
}
.faq dd {
  margin-bottom: 12px;
  margin-left: 18px;
}

/* CONTACT PAGE SPECIALS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #114C6D;
  font-family: 'Montserrat', serif;
}
.map-location {
  background: #F1F5F8;
  border-radius: 10px;
  padding: 18px 16px;
  color: #23425B;
  font-size: 1rem;
}
.customer-service .btn-secondary {
  margin-left: 12px;
  margin-top: 12px;
}

/* FOOTER */
footer {
  background: #114C6D;
  color: #fff;
  padding: 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding: 48px 20px 20px 20px;
}
.footer-logo img {
  height: 42px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  margin-left: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  opacity: 0.94;
  margin-bottom: 4px;
  padding: 2px 0;
  transition: color 0.22s;
}
.footer-nav a:hover {
  color: #FFB400;
  opacity: 1.0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
  margin-top: 4px;
}
.footer-contact img {
  height: 15px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-impressum {
  width: 100%;
  color: #eaeaea;
  font-size: 0.92rem;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 10px 10px 10px;
    gap: 24px;
  }
  .footer-impressum {
    font-size: 0.98rem;
    margin-top: 12px;
  }
}

/* ===============
   RESPONSIVE FLEX ADJUSTMENTS
 =============== */
@media (max-width: 800px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 12px;
  }
  .feature-item, .card {
    padding: 16px 9px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-main {
    padding: 23px 4px 4px 4px;
  }
  .section {
    padding: 26px 4px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 10px;
  }
  .feature-item {
    min-width: unset;
  }
  .card {
    min-width: unset;
    padding: 10px 6px;
  }
  .company-table, .profit-table table, .comparison-table table {
    font-size: 0.95rem;
  }
}

/* ===============
   COOKIE CONSENT BANNER
 =============== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #18415c;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 -2px 24px rgba(17,76,109,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9980;
  gap: 16px;
  transition: transform 0.28s cubic-bezier(.7,.2,.18,1.0), opacity 0.13s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-consent-banner p {
  color: #18415c;
  font-size: 1.08rem;
  margin-bottom: 0;
  text-align: center;
}
.cookie-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
}
.cookie-btn {
  border: none;
  padding: 8px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
}
.cookie-btn.accept {
  background: #114C6D;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #FFB400;
  color: #232323;
}
.cookie-btn.reject {
  background: #E7EDF2;
  color: #20405E;
  border: 2px solid #114C6D;
}
.cookie-btn.reject:hover {
  background: #FFB400;
  color: #232323;
  border-color: #FFB400;
}
.cookie-btn.settings {
  background: #fff;
  color: #114C6D;
  border: 2px solid #114C6D;
}
.cookie-btn.settings:hover {
  background: #F1F5F8;
  color: #FFB400;
  border-color: #FFB400;
}

@media (max-width: 500px) {
  .cookie-btn-container {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,76,109,0.45);
  z-index: 9998;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 42px rgba(17,76,109,0.22);
  max-width: 400px;
  width: 92vw;
  padding: 36px 27px 31px 27px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 9999;
  animation: cookieModalFadeIn 0.3s cubic-bezier(.7,.2,.18,1.0);
}
@keyframes cookieModalFadeIn {
  from {transform: scale(0.93); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #114C6D;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Montserrat', serif;
  font-size: 1.01rem;
  color: #18415c;
}
.cookie-switch {
  position: relative;
  width: 46px; height: 24px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: #E7EDF2;
  border-radius: 24px;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #114C6D;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(17,76,109,0.10);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 16px;
  background: none;
  border: none;
  color: #114C6D;
  font-size: 2rem;
  cursor: pointer;
}

/* ===============
   MICROINTERACTIONS
 =============== */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.20s, color 0.18s, box-shadow 0.19s, border-color 0.18s;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:active, .feature-item:active {
  transform: scale(0.98);
}

/* ===============
   ELEGANT SHADOWS & RADIUS
 =============== */
.section, .feature-item, .card, .testimonial-card, .cookie-modal {
  box-shadow: 0 2.5px 18px rgba(17,76,109,0.05);
  border-radius: 12px;
}

/* ===============
   SCROLLBAR STYLE (modern look)
 =============== */
::-webkit-scrollbar {
  width: 10px;
  background: #E7EDF2;
}
::-webkit-scrollbar-thumb {
  background: #c0ccd6;
  border-radius: 5px;
}

/* ===============
   ACCESSIBILITY
 =============== */
:focus {
  outline: 2px solid #FFB400;
  outline-offset: 1px;
}

/* END OF STYLE.CSS */
