/* ========================
   Pearl Voyage Ernährung
   Elegant Classic Style CSS
   ========================*/

/* ========================
   1. 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: #F9F9F9;
  color: #232323;
  font-family: 'Open Sans', Georgia, serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

*, *:before, *:after { box-sizing: inherit; }

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
strong, b { font-weight: 700; }

/* ======================
   2. Typography Hierarchy
   ======================*/

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #22567A;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 15px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
p, li, span, label { font-size: 1rem; color: #313A3C; }
.subheadline {
  font-size: 1.2rem;
  color: #336889;
  margin-bottom: 20px;
  font-family: 'Open Sans', 'Georgia', serif;
}
.text-section p { margin-bottom: 22px; }


/* ======================
   3. Layout & Spacing
   ======================*/

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.content-wrapper.text-section {
  max-width: 760px;
  margin: 0 auto 20px auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  padding: 0 0 10px 0;
}

/* Spacing patterns for content containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,86,122,0.09);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  padding: 28px 24px;
  transition: box-shadow .28s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(34,86,122,0.16);
}
.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;
  margin-bottom: 40px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(34,86,122,0.08);
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 360px;
  flex: 1 1 270px;
  font-size: 1rem;
  transition: box-shadow .25s, transform .21s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 26px rgba(34, 86, 122, 0.14);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  color: #232323;
}
.testimonial-card span {
  color: #22567A;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-style: italic;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F9F9F9;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(34, 86, 122, 0.05);
  padding: 20px 18px 22px 18px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow .2s, background .18s;
}
.feature-item:hover {
  background: #f1f7fa;
  box-shadow: 0 4px 20px rgba(34, 86, 122, 0.12);
}


/****** Responsive Card/Grid layouts (mobile-first) ******/
@media (max-width: 1024px) {
  .feature-grid,
  .testimonials,
  .card-container,
  .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .card,
  .testimonial-card,
  .feature-item {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .feature-grid,
  .card-container,
  .testimonials,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ======================
   4. NAVIGATION & HEADER
   ======================*/
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(34,86,122,0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.08rem;
  color: #22567A;
  padding: 2px 4px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #70C1B3;
}
.btn-primary {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.1rem;
  background: #22567A;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,86,122,0.09);
  transition: background 0.2s, box-shadow 0.2s, transform 0.14s;
  margin-left: 12px;
  letter-spacing: 0.01em;
  outline: none;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #18415B;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 22px rgba(34,86,122,0.14);
}
.btn-secondary {
  font-family: 'Montserrat', 'Georgia', serif;
  background: #70C1B3;
  color: #18415B;
  border: none;
  border-radius: 24px;
  padding: 9px 28px;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(34,86,122,0.08);
  transition: background 0.2s, color 0.1s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #5ca497;
}
.btn-link {
  font-family: 'Montserrat', 'Georgia', serif;
  background: none;
  color: #22567A;
  border: none;
  font-size: 1rem;
  padding: 0;
  margin-top: 10px;
  text-decoration: underline;
  cursor: pointer;
  transition: color .2s;
  box-shadow: none;
}
.btn-link:hover,
.btn-link:focus {
  color: #70C1B3;
  text-decoration: underline dotted;
}
.btn-primary, .btn-secondary {
  transition: box-shadow .2s, transform .18s;
}

/* Hamburger mobile menu */
.mobile-menu-toggle {
  display: none;
  background: #70C1B3;
  color: #18415B;
  border: none;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(34,86,122,0.13);
  transition: background 0.2s, color 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #229083;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(34, 86, 122, 0.16);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.5,.1,.22,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #22567A;
  border: 1px solid #70C1B3;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 18px 28px 0 0;
  cursor: pointer;
  transition: background .18s, color .17s;
  z-index: 202;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #70C1B3;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-end;
  margin: 48px 36px 0 0;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #22567A;
  font-size: 1.28rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 6px;
  transition: background .15s, color .17s;
  min-width: 210px;
  text-align: right;
  box-shadow: 0 2px 14px rgba(34,86,122,0.11);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #70C1B3;
  color: #fff;
}

/* Hide header buttons by default on small */
@media (max-width: 768px) {
  header .container { flex-wrap: wrap; gap: 6px; }
  .logo img { height: 38px; }
  .btn-primary { font-size: 0.98rem; padding: 8px 18px; }
  .mobile-menu-close { width: 40px; height: 40px; font-size: 1.5rem; margin: 14px 16px 0 0; }
  .mobile-nav { margin: 30px 16px 0 0; }
}

/* ======================
   5. HERO SECTIONS
   ======================*/
.hero {
  background: #F9F9F9;
  padding: 60px 0 50px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e1eaf1;
}
.hero .content-wrapper {
  gap: 28px;
  text-align: left;
  align-items: flex-start;
  max-width: 760px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 22px 0;
  }
  .hero .content-wrapper {
    gap: 18px;
    max-width: 100%;
  }
}

/* ======================
   6. CTA BANNERS
   ======================*/
.cta-banner {
  background: #22567A;
  color: #fff;
  padding: 44px 0 38px 0;
  margin-bottom: 54px;
  border-radius: 22px;
  box-shadow: 0 6px 28px rgba(112,193,179,0.16);
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  background: #70C1B3;
  color: #18415B;
}
.cta-banner .btn-primary:hover,
.cta-banner .btn-primary:focus {
  background: #229083;
  color: #fff;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 22px 0 24px 0;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* ======================
   7. TABLES
   ======================*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(34,86,122,0.06);
  overflow: hidden;
}
thead {
  background: #22567A;
  color: #fff;
}
thead th {
  padding: 14px 12px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.07rem;
}
tbody td {
  padding: 13px 10px;
  border-bottom: 1px solid #e1eaf1;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even){
  background: #f4fbfa;
}
@media (max-width: 600px) {
  table { font-size: 0.86rem; }
  td, th { padding: 7px 4px; }
}

/* =========================
   8. RECIPE & FAQ Cards
   =========================*/
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0 0;
}
.recipe-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,86,122,0.06);
  padding: 18px 16px 16px 16px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: box-shadow .19s, transform .17s;
  margin-bottom: 20px;
}
.recipe-card:hover {
  box-shadow: 0 2px 26px rgba(112,193,179,0.19);
  transform: translateY(-2px) scale(1.04);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  color: #22567A;
  margin-bottom: 16px;
}
@media (max-width: 650px) {
  .recipe-grid { flex-direction: column; gap: 10px; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.faq-item {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 17px 14px 16px 14px;
  box-shadow: 0 1px 6px rgba(34,86,122,0.04);
  border-left: 4px solid #70C1B3;
  transition: border-color .16s;
}
.faq-item:hover {
  border-left: 4px solid #22567A;
}
.faq-item h3 { color: #22567A; font-size: 1.05rem; margin-bottom: 7px; }
.faq-item p { margin-bottom: 0; }

/* Notes */
.note {
  font-size: .98rem;
  color: #18415B;
  background: #f1f7fa;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 20px 0 0 0;
  font-style: italic;
}

/* =========================
   9. FOOTER STYLES
   =========================*/
footer {
  background: #f3f7fa;
  border-top: 1px solid #e1eaf1;
  padding: 40px 0 16px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', 'Georgia', serif;
  color: #22567A;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.footer-branding img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.footer-nav a {
  color: #22567A;
  font-size: 1rem;
  font-family: 'Montserrat', 'Georgia', serif;
  transition: color .17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #229083;
}
.footer-contact {
  color: #313A3C;
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  color: #70C1B3;
  text-decoration: underline dotted;
}
.newsletter-signup {
  margin-top: 12px;
  color: #22567A;
  font-family: 'Montserrat', 'Georgia', serif;
  max-width: 300px;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; }
  .footer-branding { margin-bottom: 15px; }
}
@media (max-width: 650px) {
  footer { padding: 22px 0 8px 0; margin-top: 30px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 12px; min-width: unset; }
  .footer-contact { font-size: 0.93rem; }
  .footer-branding img { height: 28px; }
}

/* =========================
   10. FORMS (future-proof)
   =========================*/
input,
select,
textarea {
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #a8bac7;
  padding: 10px 13px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(34,86,122,0.07);
  margin-bottom: 18px;
  outline: none;
  transition: border-color .17s, box-shadow .13s;
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #22567A;
  box-shadow: 0 2px 14px rgba(34,86,122,0.13);
}
label {
  font-size: 1rem;
  font-family: 'Montserrat', 'Georgia', serif;
  color: #22567A;
  display: block;
  margin-bottom: 8px;
}
.button-row {
  display: flex;
  gap: 18px;
  margin-top: 23px;
  justify-content: flex-end;
}

/* =========================
   11. COOKIE CONSENT BANNER
   =========================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #22567A;
  font-family: 'Open Sans', 'Georgia', serif;
  box-shadow: 0 -2px 16px 0 rgba(34,86,122,0.18);
  padding: 18px 24px 18px 24px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
  animation: fadeSlideInUp .7s cubic-bezier(.65,.02,.53,1);
}
@media (max-width: 750px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 18px 10px; }
}
.cookie-banner .cookie-banner-msg {
  flex: 1 1 300px;
  font-size: 1.03rem;
  margin-right: 16px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Georgia', serif;
  border-radius: 18px;
  padding: 8px 24px;
  font-size: 1rem;
  border: none;
  background: #70C1B3;
  color: #18415B;
  font-weight: 700;
  margin: 0 2px;
  box-shadow: 0 2px 10px rgba(34,86,122,0.08);
  cursor: pointer;
  transition: background .18s, color .13s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #229083;
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-btn-secondary {
  background: #eaeaea;
  color: #22567A;
  font-weight: 600;
}
.cookie-banner .cookie-btn.cookie-btn-secondary:hover {
  background: #f7f7f7;
  color: #18415B;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  color: #22567A;
  border-radius: 18px;
  box-shadow: 0 6px 42px rgba(34,86,122,0.26);
  min-width: 330px;
  max-width: 92vw;
  padding: 36px 26px 30px 26px;
  z-index: 600;
  transform: translate(-50%,-50%) scale(.9);
  opacity: 0;
  pointer-events: none;
  transition: transform .24s, opacity .22s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
  animation: fadeSlideInUp .47s cubic-bezier(.7,.02,.46,.99);
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #18415B;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .cookie-category label {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: #22567A;
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 19px;
  border-radius: 11px;
  background: #eaeaea;
  position: relative;
  cursor: pointer;
  transition: background .23s;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #70C1B3;
  transition: left .17s, background .23s;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider {
  left: 17px;
  background: #22567A;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
}

.cookie-modal .cookie-btn {
  font-family: 'Montserrat', 'Georgia', serif;
  border-radius: 16px;
  background: #22567A;
  color: #fff;
  border: none;
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(34,86,122,0.09);
  transition: background .21s, color .14s;
}
.cookie-modal .cookie-btn.cookie-btn-secondary {
  background: #eaeaea;
  color: #22567A;
  font-weight: 600;
}
.cookie-modal .cookie-btn:hover,
.cookie-modal .cookie-btn:focus {
  background: #229083;
  color: #fff;
}
.cookie-modal .cookie-btn.cookie-btn-secondary:hover {
  background: #70C1B3;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal { max-width: 98vw; min-width: 210px; padding: 20px 9px 17px 9px; }
  .cookie-modal h3 { font-size: 1.14rem; }
}

@keyframes fadeSlideInUp {
  from { opacity: 0; transform: translateY(36px) scale(.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================
   12. ACCESSIBILITY / MISC
   =========================*/
:focus {
  outline: 2px solid #22567A !important;
  outline-offset: 2px;
}

/* Hide visually (for screen-reader-only elements) */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================
   13. ELEGANT EFFECTS
   =========================*/
.card, .feature-item, .testimonial-card, .recipe-card {
  transition: box-shadow .2s, background .18s, transform .19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .recipe-card:hover {
  box-shadow: 0 6px 30px rgba(34, 86, 122, 0.11);
  background: #f9fefc;
  transform: translateY(-2px) scale(1.02);
}

/* Elegant section separators */
section:not(.hero):not(.cta-banner) {
  border-bottom: 1px solid #e1eaf1;
  margin-bottom: 44px;
}
section:last-child { border-bottom: none; margin-bottom: 0; }

/***** Special for .contact-details (Kontaktseite) *****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
  font-size: 1.01rem;
  color: #22567A;
}
.contact-details a { color: #70C1B3; text-decoration: underline; }
.contact-details a:hover { color: #22567A; }

/***** Elegant classic muted color overrides *****/
body, .section, .text-section, .feature-item, .recipe-card, .faq-item, .cookie-banner, .card, .testimonial-card {
  background: #F9F9F9;
}

.card, .feature-item, .recipe-card, .faq-item, .testimonial-card {
  background: #fff;
}

/***** Responsive font sizes (mobile-first) *****/
@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.42rem; }
  .subheadline { font-size: .98rem; }
}

/***** Elegant ol/ul lists *****/
ul, ol {
  margin-left: 16px;
  margin-bottom: 16px;
  padding-left: 13px;
}
ul li, ol li {
  padding-left: 2px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #313A3C;
}

/***** Elegant blockquote *****/
blockquote {
  border-left: 4px solid #22567A;
  background: #f1f7fa;
  padding: 12px 20px;
  font-size: 1.1rem;
  color: #22567A;
  margin: 20px 0;
  border-radius: 7px;
  font-style: italic;
}

/***** Elegant classic muted links *****/
a {
  color: #22567A;
  text-decoration: underline;
  transition: color .17s;
}
a:hover, a:focus {
  color: #229083;
  text-decoration: underline dotted;
}

/***** Elegant highlight for strong text *****/
strong, b {
  color: #18415B;
  font-weight: 700;
}

/***** SECTION utility rules *****/
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, section { padding: 24px 6px; margin-bottom: 32px; }
}

/***** Hide elements visually (for menu/modal overlays) *****/
.mobile-menu,
.cookie-modal {
  display: flex;
}
.mobile-menu:not(.active), .cookie-modal:not(.active) {
  display: none !important;
}


/****** Animation for menu (reuse slide) ******/
@keyframes slideInRight {
  0% { transform: translateX(100%); opacity: 0.2; }
  100% { transform: translateX(0); opacity: 1; }
}

/***** Z-INDEX LAYERING for overlays *****/
.mobile-menu { z-index: 200; }
.cookie-modal { z-index: 600; }
.cookie-banner { z-index: 500; }
header { z-index: 100; }

/* ===============================
   END Pearl Voyage Ernährung CSS
   ===============================*/
