/* --- 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF9F6;
  color: #2F3A3D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #005B82;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e86c7f;
}
ul, ol {
  margin-left: 1.5em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 16px 12px;
  border-bottom: 1px solid #f0f0f0;
}
th {
  background: #fbead3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* --- FONT FACE --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* --- BRAND COLOR VARIABLES --- */
:root {
  --color-primary: #005B82;
  --color-secondary: #A8E2F0;
  --color-accent: #FFEEE2;
  --color-bg: #FFF9F6;
  --color-text: #293640;
  --color-warm: #FFD7B3;
  --color-warm-strong: #FFC092;
  --color-warm-alt: #FFF5DD;
  --color-success: #4FD18B;
  --color-error: #FA6D64;
  --radius-sm: 12px;
  --radius-md: 20px;
  --shadow-soft: 0 2px 12px 0 rgba(50,30,10,0.06);
  --shadow-strong: 0 6px 32px 0 rgba(72, 51, 20, 0.11);
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
@media (max-width: 500px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #BB875C;
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
}
p {
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-accent);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}

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

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 16px 16px;
}
header img {
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  padding: 6px 13px;
  transition: box-shadow 0.2s;
  box-shadow: 0 1.5px 6px 0 rgba(0,70,130,0.08);
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.button.primary {
  background: var(--color-warm-strong);
  color: var(--color-primary);
  padding: 12px 30px;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 24px;
  box-shadow: var(--shadow-soft);
  transition: background 0.15s, box-shadow 0.2s, transform 0.15s;
}
.button.primary:hover, .button.primary:focus {
  background: #FFD7B3;
  color: var(--color-primary);
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px) scale(1.04);
}
.button {
  display: inline-block;
  text-align: center;
  outline: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}
button.button {
  cursor: pointer;
}

/* --- BURGER/MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-warm);
  color: var(--color-primary);
  font-size: 2rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 6px 16px;
  margin-left: 16px;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px 0 rgba(0,90,130,0.11);
}
.mobile-menu-toggle:active {
  box-shadow: 0 4px 12px 0 rgba(0,90,130,0.21);
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.67,-0.1,.34,1.12);
  box-shadow: -3px 0 28px -6px rgba(70,38,11,0.13);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 2px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #e86c7f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin: 50px 26px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0 8px 0;
  border-radius: var(--radius-md);
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-warm-strong);
  color: #003b4e;
}

@media (max-width: 950px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  nav {
    gap: 11px;
  }
  .button.primary { margin-left: 6px; }
}
@media (max-width: 768px) {
  nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 30px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  padding-bottom: 18px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-warm-strong);
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-warm);
  color: var(--color-primary);
}
.imprint {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.social-links a img {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 80%;
  box-shadow: 0 1px 6px 0 rgba(0,80,130,0.10);
  padding: 4px;
  transition: transform 0.14s, box-shadow 0.14s;
}
.social-links a:hover img {
  transform: scale(1.12);
  box-shadow: 0 4px 16px 0 rgba(255,170,80,0.23);
}

/* --- FLEXBOX LAYOUTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 30px 24px;
  min-width: 260px;
  max-width: 390px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.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;
  padding: 20px;
  margin-bottom: 22px;
  background: var(--color-warm-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(245,153,70,0.07);
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  color: #2F3A3D;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  box-shadow: var(--shadow-soft);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- CUSTOMER FAQ ACCORDION & CTA --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--color-warm-alt);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px 0 rgba(230,139,30,0.07);
  padding: 23px 19px;
}
.faq-accordion h2 {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 600;
}
.faq-accordion p {
  font-size: 1rem;
  color: var(--color-text);
}
.faq-support-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 18px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 21px 16px;
}
.faq-support-cta a.button.primary {
  margin-left: 0;
}

/* --- TABLES --- */
table {
  margin-bottom: 26px;
  box-shadow: 0 1px 6px 0 rgba(245,153,70,0.07);
}
thead tr {
  border-radius: var(--radius-sm);
}
th, td {
  font-size: 1rem;
}

/* --- BUTTONS (SHARED) --- */
.button, button {
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.button.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 12px 24px;
  font-size: 1rem;
  margin-right: 12px;
}
.button.secondary:hover,
.button.secondary:focus {
  background: var(--color-warm);
  color: var(--color-primary);
}
.button.outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 22px;
  font-size: 1rem;
}
.button.outline:hover,
.button.outline:focus {
  background: var(--color-warm);
  color: #333;
}

/* --- CONTENT BLOCKS --- */
ul > li {
  margin-bottom: 10px;
  font-size: 1.03rem;
  color: #37444a;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
ul > li img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
}

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

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff5e0;
  color: #293640;
  box-shadow: 0 -3px 24px 0 rgba(220,106,27,0.20);
  padding: 26px 18px 18px 18px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookie-slide-in 0.7s cubic-bezier(.86,.09,.36,1.15);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
/* Cookie Banner Buttons */
.cookie-banner .cookie-btn {
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  border: none;
  box-shadow: 0 1.5px 4px 0 rgba(219,128,31,0.09);
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-banner .cookie-accept:hover { background: #37c478; }
.cookie-banner .cookie-reject {
  background: var(--color-error);
  color: #fff;
}
.cookie-banner .cookie-reject:hover { background: #df2c20; }
.cookie-banner .cookie-settings {
  background: var(--color-warm);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-secondary);
}

/* --- COOKIE BANNER MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(60,47,18,0.25);
  z-index: 4100;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 38px 0 rgba(220,106,27,0.22);
  max-width: 420px;
  width: 92vw;
  padding: 38px 24px 24px 24px;
  position: relative;
  margin-bottom: 34px;
  animation: cookie-slide-in-modal 0.62s cubic-bezier(.86,.09,.36,1.15);
}
@keyframes cookie-slide-in-modal {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.34rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 13px; right: 13px;
  font-size: 1.7rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: var(--color-primary);
  flex: 1 1 0%;
}
.cookie-modal .cookie-category input[type=checkbox]{
  accent-color: var(--color-primary);
  width: 22px;
  height: 22px;
  border-radius: 8px;
}
.cookie-modal .cookie-category input[type=checkbox][disabled] {
  accent-color: #aaa;
  background: #eee;
}
.cookie-modal .cookie-modal-save {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 22px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-save:hover, .cookie-modal .cookie-modal-save:focus {
  background: var(--color-success);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1080px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .section {
    padding: 36px 8px;
  }
  .content-wrapper { gap: 18px; }
  .footer-nav { gap: 10px; }
  .card { min-width: 200px; max-width: 100%; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  header .container { padding: 12px 6px; }
  main { padding-bottom: 32px; }
  .section { margin-bottom: 39px; padding: 24px 4px; }
  .card-container, .content-grid { gap: 12px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .card { padding: 17px 9px; min-width: unset; }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 14px 5px; }
  .text-section { padding: 12px 7px; }
  .faq-accordion { padding: 13px 7px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.49rem; margin-bottom: 14px; }
  h2 { font-size: 1.01rem; margin-bottom: 10px; }
  .section { border-radius: 15px; }
}

/* --- MISC & INTERACTIVE --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 2px solid #d8e2eb;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 18px;
  outline: none;
  color: #222;
  background: #fff;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
}
::-webkit-input-placeholder {
  color: #aaa;
}
::-moz-placeholder {
  color: #aaa;
}
:-ms-input-placeholder {
  color: #aaa;
}
::placeholder {
  color: #aaa;
}

/* --- MODAL BACKDROP SHADOW --- */
.modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.06);
  z-index: 3999;
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2px;
}

/* --- SPECIAL: HOME PAGE ICONS --- */
ul > li > img {
  vertical-align: middle;
  margin-right: 7px;
  background: var(--color-secondary);
  padding: 4px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 6px 0 rgba(110,196,216,0.07);
}

/* --- TABLE ULTS LISTS (SECTION) --- */
.section ul {
  list-style-type: disc;
}

/* --- THANK YOU PAGE BUTTON --- */
.thank-you-btn {
  margin-left: 0;
  margin-top: 22px;
}

/* --- SCROLLBAR STYLING (modern browsers) --- */
body::-webkit-scrollbar { width: 10px; background: #fbead3; }
body::-webkit-scrollbar-thumb { background: #ffd7b3; border-radius: 12px; }
body { scrollbar-color: #ffd7b3 #fbead3; scrollbar-width: thin; }
