/* =====================
   CSS RESET & BASE
   ===================== */
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: #f5f3ef;
  color: #243226;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Verdana, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #43765a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #285d37;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  margin-left: 25px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
hr {
  border: none;
  border-top: 1px solid #d5cfc4;
  margin: 24px 0;
}

/* ===========
   COLOR PALETTE & VARIABLES (with fallbacks)
   =========== */
:root {
  --color-primary: #193C61;
  --color-secondary: #f5f3ef;
  --color-accent: #78c0e0;
  --color-earth-dark: #4B5A4D;
  --color-earth-mid: #837358;
  --color-earth-light: #DED3C1;
  --color-leaf: #699e66;
  --color-leaf-dark: #3f6f3a;
  --color-leaf-bright: #a9cb86;
  --color-shadow: rgba(47, 67, 70, 0.07);
  --color-text-base: #2B342A;
  --color-text-dark: #233026;
  --color-text-light: #f5f3ef;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Verdana, sans-serif;
}

/* ===========
   TYPOGRAPHY
   =========== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--color-earth-dark);
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-leaf);
}
h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
}
p, .text-section {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-text-base);
}
.tagline {
  color: var(--color-leaf-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 16px;
  display: inline-block;
  font-style: italic;
  letter-spacing: 0.01em;
}
.datenschutz-hinweis {
  font-size: 0.89rem;
  color: var(--color-earth-mid);
  margin-top: 8px;
}

/* ===================
   LAYOUT: CONTAINER
   =================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  max-width: 720px;
}

/* ==============
   HEADER
   ============== */
header {
  background: var(--color-secondary);
  border-bottom: 1px solid #e3ded3;
  box-shadow: 0 2px 8px var(--color-shadow);
  z-index: 1000;
  position: relative;
}
header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.18s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-leaf);
  transition: width 0.2s;
  border-radius: 2px;
  margin-top: 2px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
header nav a.active {
  color: var(--color-leaf-dark);
  font-weight: 700;
}

/* ==============
   CTA BUTTONS
   ============== */
.cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  background: var(--color-leaf);
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 30px 30px 32px 28px/28px 32px 30px 30px; /* organic ellipse */
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.12s;
  display: inline-block;
  outline: none;
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta:hover,
.cta:focus {
  background: var(--color-leaf-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px 0 rgba(34,50,38,0.09);
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-accent);
  color: var(--color-text-base);
}

/* ==============
   MOBILE MENU
   ============== */
.mobile-menu-toggle {
  background: var(--color-leaf);
  color: #fff;
  border-radius: 100px;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.2s;
  margin-left: 22px;
  cursor: pointer;
  z-index: 2002;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-leaf-dark);
  color: #fffce0;
}
.mobile-menu {
  /* Overlay styles */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--color-secondary);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.54,-0.22,.48,1.22);
  box-shadow: 2px 0 30px 0 rgba(34,50,38,0.13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  width: 100vw;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #193C61;
  border-radius: 100px;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  margin: 22px auto 12px 18px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #193C61;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 32px;
  margin-right: 16px;
  margin-bottom: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-primary);
  padding: 15px 0;
  border-radius: 12px 24px 18px 18px/18px 24px 16px 18px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-leaf-bright);
  color: var(--color-leaf-dark);
}

@media only screen and (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex;
  }
}
@media only screen and (max-width: 991px) {
  header nav,
  .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ===========
   HERO SECTION
   =========== */
.hero {
  background: linear-gradient(120deg, #f5f3ef 50%, #e9f4e3 100%);
  border-radius: 0 0 60px 60px/0 0 42px 48px;
  padding: 38px 0 50px 0;
  margin-bottom: 48px;
  box-shadow: 0 8px 26px rgba(110, 134, 108, 0.08);
}
.hero .container {
  min-height: 226px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hero .content-wrapper {
  gap: 12px;
}
.hero p {
  font-size: 1.13rem;
  color: var(--color-earth-dark);
}

/* ===============
   SECTIONS RULES
   =============== */
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 36px 48px 28px 42px/42px 20px 52px 28px;
  box-shadow: 0 3px 14px 0 var(--color-shadow);
  position: relative;
}
section:nth-child(even) {
  background: #f9f6f3;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f4f9f2;
  border-radius: 22px 28px 32px 26px/26px 28px 24px 22px;
  box-shadow: 0 2px 16px 0 rgba(40, 56, 32, 0.08);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 390px;
  flex: 1 1 280px;
  border-left: 7px solid var(--color-accent);
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 18px 0 rgba(93,130,96,0.19);
  transform: translateY(-3px) scale(1.01);
}
.bewertung_stars {
  color: var(--color-leaf-dark);
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.testimonial-card p {
  color: var(--color-text-dark);
  font-size: 1rem;
}
.customer {
  color: #67836a;
  font-size: 0.97rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 3px;
}

.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 28px 36px 18px 24px/24px 22px 36px 30px;
  box-shadow: 0 2px 10px rgba(108, 120, 88, 0.09);
  transition: box-shadow 0.19s, transform 0.12s;
  flex: 1 1 280px;
  padding: 28px 22px 22px 22px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 18px rgba(80,110,84,0.15);
  transform: translateY(-2px) scale(1.014);
}

.feature-grid, .werte-grid, .event-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.feature, .wert, .event-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f6f7f3;
  border-radius: 22px 20px 30px 24px/28px 22px 14px 18px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  padding: 26px 22px 24px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: background 0.12s, box-shadow 0.15s, transform 0.11s;
}
.feature:hover, .wert:hover, .event-type:hover {
  background: #e2f7e3;
  box-shadow: 0 8px 22px 0 rgba(64, 110, 48, 0.09);
  transform: translateY(-2px) scale(1.015);
}
.feature img, .event-type img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.angebote-übersicht,
.leistungen-übersicht,
.preisbeispiele,
.destinations-summary {
  margin-top: 18px;
  font-size: 1rem;
}

ol {
  padding-left: 19px;
  margin-bottom: 16px;
}

/* ===========
   FAQ/ACCORDION
   =========== */
details {
  background: #f0f8ee;
  border-radius: 17px 25px 15px 19px/16px 20px 13px 18px;
  padding: 13px 16px 13px 18px;
  margin-bottom: 13px;
  border-left: 4px solid var(--color-leaf);
  transition: background 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 7px rgba(60, 88, 56, 0.06);
}
details[open] {
  background: #e2f7e3;
  box-shadow: 0 4px 13px rgba(76,119,70,0.08);
}
details summary {
  font-size: 1.01rem;
  color: var(--color-leaf-dark);
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  margin-bottom: 8px;
}
details div {
  font-size: 0.97rem;
  color: var(--color-earth-dark);
}

/* ===========
   FOOTER
   =========== */
footer {
  background: #f8f7f3;
  border-top: 1px solid #e6e2d6;
  color: var(--color-earth-dark);
  padding: 0 0 0 0;
  margin-top: 50px;
  box-shadow: 0 -2px 10px rgba(98, 124, 90, 0.04);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0 13px 0;
  align-items: flex-start;
  justify-content: space-between;
}
.logo-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-links a {
  background: var(--color-leaf);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
}
.social-links a:hover {
  background: var(--color-accent);
  box-shadow: 0 2px 12px var(--color-shadow);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--color-primary);
  transition: color 0.17s;
  border-radius: 8px;
  padding: 6px 9px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-leaf-dark);
  background: #e6efea;
}
.footer-bottom {
  font-size: 0.97rem;
  color: #888;
  text-align: left;
  padding: 12px 0 23px 0;
  border-top: 1px solid #e3ead9;
  margin-top: 6px;
}

.newsletter-signup {
  background: #e6efea;
  border-radius: 20px;
  padding: 16px 18px 16px 18px;
  min-width: 260px;
}
.newsletter-signup h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-leaf);
}

/* ===========
   COOKIE CONSENT BANNER
   =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5f3e7;
  color: var(--color-text-dark);
  box-shadow: 0 -4px 18px 0 rgba(61, 86, 54, 0.15);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 14px 18px 22px;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(.54,-0.22,.48,1.22), opacity 0.22s;
  border-radius: 36px 36px 0 0/46px 46px 0 0;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 auto;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-left: 18px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 22px 20px 18px 18px/18px 22px 16px 18px;
  border: none;
  background: var(--color-leaf);
  color: #fff;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 6px var(--color-shadow);
  outline: none;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-leaf-dark);
  color: #fffce0;
}
.cookie-btn.secondary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(39,64,48,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fafcf8;
  color: var(--color-text-base);
  border-radius: 36px 44px 29px 24px/34px 38px 21px 22px;
  padding: 40px 34px 32px 34px;
  box-shadow: 0 8px 33px 0 rgba(56,86,58,0.13);
  max-width: 400px;
  min-width: 260px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: modalIn 0.17s cubic-bezier(0.7, 0, 0.26, 1.21) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(70px) scale(.91); }
  to { opacity: 1; transform: none; }
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 13px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 4011;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--color-leaf-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--color-text-base);
}
.cookie-switch {
  width: 30px;
  height: 18px;
  border-radius: 12px;
  border: none;
  background: #e6efea;
  position: relative;
  cursor: pointer;
  transition: background 0.12s;
  margin-left: 9px;
}
.cookie-switch.enabled {
  background: var(--color-leaf-bright);
}
.cookie-switch-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1.5px 3px rgba(18,18,18,0.10);
  transition: left 0.12s;
}
.cookie-switch.enabled .cookie-switch-knob {
  left: 14px;
}
.cookie-category.always .cookie-switch, .cookie-category.always {
  opacity: 0.6;
  pointer-events: none;
}

/* =============
   CONFIRMATION
   ============= */
.confirmation-section {
  background: #f2faee;
  border-radius: 32px 48px 28px 44px/30px 24px 30px 40px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  padding: 56px 22px;
  margin-bottom: 60px;
  text-align: center;
}
.confirmation-section .text-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}
.confirmation-section .text-section a.cta {
  margin-top: 25px;
}

/* ===============
   RESPONSIVE
   =============== */
@media only screen and (max-width: 1080px) {
  .feature-grid, .werte-grid, .event-types-grid,
  .testimonials .testimonial-slider, .footer-main, .card-container, .content-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature, .wert, .event-type, .card {
    flex: 1 1 170px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding-right: 8px;
    padding-left: 8px;
  }
  .section, section {
    padding: 27px 6px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 23px 0 27px 0;
    border-radius: 0 0 32px 32px/0 0 22px 16px;
  }
  .footer-main, .feature-grid, .werte-grid, .event-types-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
}
@media only screen and (max-width: 660px) {
  h1, .hero h1 { font-size: 1.66rem; }
  h2 { font-size: 1.23rem; }
  .hero .container, .footer-main { flex-direction: column; align-items: flex-start; }
  .content-wrapper { gap: 14px; }
}
@media only screen and (max-width: 600px) {
  .hero {
    padding: 19px 0 16px 0;
  }
  .confirmation-section { padding: 28px 6px; }
}
@media only screen and (max-width: 480px) {
  .testimonial-card,
  .feature, .wert, .event-type, .card {
    padding: 13px 11px 9px 10px;
    min-width: 0;
    font-size: 0.98rem;
  }
  .testimonials .testimonial-slider,
  .card-container,
  .feature-grid,
  .werte-grid,
  .event-types-grid {
    gap: 13px;
  }
  .footer-bottom {
    padding-right: 7px;
  }
  .cookie-banner {
    padding: 16px 5px 16px 6px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 18px 18px 0 0/24px 24px 0 0;
    gap: 10px;
  }
  .cookie-buttons { margin-left: 0; gap: 6px; }
}

/* ================================
   ACCESSIBILITY & VISUAL FOCUS
   ================================ */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
  z-index: 2;
}
::-webkit-input-placeholder { color: #9b9b9b; }
::-moz-placeholder { color: #9b9b9b; }
:-ms-input-placeholder { color: #9b9b9b; }
::placeholder { color: #9b9b9b; }

/* ======================
   ORGANIC SHAPES & TEXTURES
   ======================
   (Background shapes, nature-inspired effects)
*/
.section::before, section::before {
  content: '';
  position: absolute;
  left: -30px; bottom: -32px;
  width: 140px; height: 56px;
  background: var(--color-leaf-bright);
  border-radius: 60px 40px 70px 20px/60px 30px 25px 25px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.section::after, section::after {
  content: '';
  position: absolute;
  right: -23px; top: -29px;
  width: 102px; height: 48px;
  background: var(--color-accent);
  border-radius: 60px 70px 30px 36px/50px 25px 45px 28px;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}

/* Hide organic shapes on mobile to save space */
@media (max-width: 660px) {
  .section::after,
  .section::before,
  section::after,
  section::before {
    display: none;
  }
}
