/* ===== MEERESREZEPT - GRADIENT MODERN STYLE.CSS ===== */
/* ---------- CSS RESET & NORMALIZATION ---------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #f7f6f2 60%, #72B3D8 100%);
  min-height: 100vh;
  color: #184A6C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #184A6C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0079a4;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* ---------- BRAND TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #184A6C;
  line-height: 1.18;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #184A6C;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #184A6C;
}
strong {
  font-weight: 700;
}

/* ---------- LAYOUT CONTAINERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(24,74,108,0.07);
  padding: 32px 22px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
@media (max-width:768px) {
  .content-wrapper {
    padding: 20px 10px;
    margin-bottom: 24px;
  }
}
/* Section margin/padding */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media(max-width:768px){
  section {
    margin-bottom: 36px;
    padding: 24px 4px;
  }
}

/* Flex utility for various containers */
.card-container, .card-grid, .features, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(24,74,108,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(24,74,108,0.14);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* Desktop */
}
@media (max-width:768px){
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* -------- FEATURE ITEMS --------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  width: 100%;
  background: linear-gradient(90deg, #184A6C 64%, #72b3d8 100%);
  box-shadow: 0 2px 12px 0 rgba(24,74,108,0.09);
  z-index: 31;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header a img {
  height: 42px;
  width: auto;
}
/* Main nav */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  padding: 7px 11px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #72B3D8;
  color: #184A6C;
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 32px;
  background: linear-gradient(90deg, #72B3D8 0%, #184A6C 100%);
  color: #fff;
  border-radius: 60px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1.5px 10px 0 rgba(24,74,108,0.07);
  letter-spacing: 0.02em;
  transition: background 0.21s, box-shadow 0.21s, color 0.21s;
  margin-left: 14px;
  outline: none;
  display: inline-block;
  line-height: 1.4;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #184A6C 0%, #72B3D8 100%);
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(24,74,108,0.16);
  text-decoration: none;
}
/* Hamburger Button Mobile */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  margin-left: 14px;
  border-radius: 6px;
  padding: 3px 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #72B3D8;
  color: #184A6C;
}

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

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #184A6C;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  translate: none;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.55,.09,.68,.53), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.1rem;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 6px 0;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #72B3D8;
  color: #184A6C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 11px 12px;
  border-radius: 6px;
  width: 100%;
  display: block;
  font-weight: 600;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #72B3D8;
  color: #184A6C;
}

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

/* ---------- FOOTER ---------- */
footer {
  background: #184A6C;
  color: #fff;
  padding: 42px 0 22px 0;
  margin-top: 30px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #72B3D8;
  color: #184A6C;
}
.footer-contact {
  font-size: 0.98rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  vertical-align: top;
  display: inline-block;
  margin-right: 3px;
  height: 1.2em;
  width: auto;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #72B3D8;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px 0 rgba(24,74,108,0.05);
  transition: background 0.16s, box-shadow 0.16s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  background: #72B3D8;
  box-shadow: 0 6px 14px 0 rgba(24,74,108,0.16);
}
footer p {
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.97rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 20px;
  margin-bottom: 24px;
  background: #f7f6f2;
  border-left: 6px solid #72B3D8;
  border-radius: 12px;
  box-shadow: 0 3px 12px 0 rgba(24,74,108,0.06);
  color: #184A6C;
  font-size: 1.05rem;
  max-width: 680px;
  transition: box-shadow 0.15s;
}
.testimonial-card strong { color: #184A6C; }
.testimonial-card span { color: #eabf3c; font-size: 1.1em; margin-left: 14px; letter-spacing: 1px; }
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(24,74,108,0.12);
}

/* Always dark text on testimonial cards! */
.testimonial-card p {
  color: #184A6C;
}

/* ---------- SPECIAL SECTION STYLES ---------- */
.text-section {
  margin-bottom: 18px;
  padding: 0 0 11px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.text-section h2, .text-section h3 { margin-top: 8px; }

/* ---------- CARDS, GRIDS, FLEX ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
}

/* ---------- BUTTONS & CONTROLS ---------- */
button,
input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 11px 32px;
  background: linear-gradient(90deg, #72B3D8 0%, #184A6C 100%);
  color: #fff;
  border-radius: 60px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.14s, box-shadow 0.21s;
  box-shadow: 0 1px 9px 0 rgba(24,74,108,0.06);
  outline: none;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: linear-gradient(90deg, #184A6C 0%, #72B3D8 100%);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(24,74,108,0.14);
}

/* ---------- FORMS & INPUTS ---------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 8px;
  border: 1px solid #72B3D8;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #184A6C;
  outline: none;
}
label {
  font-size: 1rem;
  margin-bottom: 7px;
  color: #184A6C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ---------- COOKIE CONSENT BANNER ----------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 -4px 20px 0 rgba(24,74,108,0.10);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 18px 18px 22px;
  font-size: 1.05rem;
  transition: transform 0.45s cubic-bezier(.72,.13,.59,.97),opacity 0.21s;
  transform: translateY(0%);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #184A6C;
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 6px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  font-size: 1rem;
  padding: 11px 22px;
  border-radius: 22px;
  font-weight: 600;
  background: #72B3D8;
  color: #184A6C;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 1px 7px 0 rgba(24,74,108,0.06);
}
.cookie-banner button.accept {
  background: #184A6C;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #184A6C;
  border: 1.5px solid #184A6C;
}
.cookie-banner button.settings {
  background: #72b3d8;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #184A6C;
  color: #fff;
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 6px 16px 8px;
  }
  .cookie-banner .cookie-btn-group {
    flex-direction: column;
    gap:10px;
  }
}

/* ---------- COOKIE PREFERENCES MODAL ---------- */
.cookie-modal {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(24,74,108, 0.24);
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.33s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(24,74,108,0.17);
  padding: 34px 30px 26px 30px;
  min-width: 310px;
  max-width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  color: #184A6C;
}
.cookie-modal-dialog h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #184A6C;
}
.cookie-modal-dialog label {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 8px;
  color: #184A6C;
}
.cookie-modal-dialog .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0 7px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 1rem;
}
.cookie-modal-dialog .category:last-child {
  border-bottom: none;
}
.cookie-modal-dialog input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #184A6C;
}
.cookie-modal-dialog .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal-dialog .close-modal {
  position: absolute;
  top: 14px; right: 20px;
  font-size: 1.2rem;
  background: none;
  border: none;
  color: #184A6C;
  cursor: pointer;
  opacity: 0.66;
  transition: opacity 0.14s;
}
.cookie-modal-dialog .close-modal:hover {
  opacity: 1;
}

/* ---------- RESPONSIVE GLOBAL ---------- */
@media (max-width:1200px){
  .container {max-width: 98vw;}
}
@media (max-width:980px){
  .container {padding-left:12px;padding-right:12px;}
}
@media (max-width:768px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 13px;
  }
  h2 { font-size: 1.1rem; margin-bottom: 11px; }
  .footer-contact { font-size: 0.95rem; }
  .footer-social { gap: 10px; }
  .content-wrapper { padding: 14px 3px; margin-bottom: 12px; }
  .section { margin-bottom: 36px; padding: 23px 0px; }
  .testimonial-card { padding: 14px; margin-bottom: 16px; font-size: 0.98rem; }
}

/* ---------- UTILITY SPACING & FLEX LAYOUTS ---------- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ---------- MISC ---------- */
::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

/* Remove number input arrows for better looks on forms */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* ------------- PRINT & ACCESSIBILITY ---------- */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
}

:focus {
  outline: 2px dashed #72B3D8;
  outline-offset: 2px;
}

/* ENDE */
