/* 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, input, textarea, button, select, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #233B56;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  flex: 1;
  width: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
input, textarea, button, select {
  font: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #5CA8A5;
  outline-offset: 2px;
}

/* TYPOGRAPHY ----------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #233B56;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
p, li, span {
  font-size: 1rem;
  color: #233B56;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
  color: #233B56;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}

/* GEOMETRIC STRUCTURED THEME COLORS ----------- */
:root {
  --primary: #233B56;
  --secondary: #5CA8A5;
  --accent: #F7EDE0;
  --light: #fff;
  --grey: #EDF2F4;
  --dark: #1A2533;
  --danger: #c82828;
  --success: #248b52;
}

/* CONTAINERS & LAYOUT------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(35, 59, 86, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(35, 59, 86, 0.05);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 260px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(35, 59, 86, 0.10);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .container, .section, .content-wrapper {
    padding: 16px !important;
  }
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* HEADER & NAV --------------------- */
header {
  width: 100%;
  background: var(--primary);
  padding: 0;
  box-shadow: 0 2px 18px 0 rgba(35, 59, 86, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
  color: #233B56;
}
header nav img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
.cta-primary {
  background: var(--secondary);
  color: #233B56 !important;
  border-radius: 16px;
  font-weight: 700;
  padding: 10px 28px;
  font-size: 1.07rem;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 16px 0 rgba(92,168,165,0.15);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid var(--secondary);
  margin-left: auto;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff !important;
  color: var(--secondary) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px 0 rgba(92,168,165,0.20);
}
.cta-secondary {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--secondary);
  border-radius: 16px;
  font-weight: 700;
  padding: 9px 22px;
  font-size: 1.07rem;
  letter-spacing: 1.2px;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.13s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary) !important;
  color: #fff !important;
  border: 2px solid var(--secondary);
  transform: translateY(-1px) scale(1.02);
}
@media (max-width: 1024px) {
  header nav {
    gap: 8px;
    padding: 0 10px;
  }
  .cta-primary {
    padding: 9px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE HAMBURGER MENU --------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 18px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 59, 86, 0.92);
  transition: transform 0.32s cubic-bezier(.66,0,.23,1), opacity 0.31s;
  transform: translateX(100vw);
  opacity: 0;
}
.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 34px;
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  z-index: 2001;
  transition: background 0.15s;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.mobile-menu-close:hover { background: var(--secondary); color: var(--primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 80px;
  margin-left: 34px;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 12px 28px 12px 8px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  position: relative;
  transition: background 0.28s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #233B56;
}

@media (max-width: 600px) {
  .mobile-nav {
    margin-left: 10px;
    margin-top: 64px;
    gap: 15px;
  }
  .mobile-nav a {
    font-size: 1.12rem;
    padding: 10px 16px 10px 5px;
    border-radius: 10px;
  }
}

/* HERO ------------------------------ */
.hero {
  width: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px 0 rgba(92, 168, 165, 0.09);
  border-radius: 0 0 44px 44px / 0 0 24px 24px;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 48px 20px 36px 20px;
}
.hero h1 {
  color: var(--primary);
}
.hero p {
  font-size: 1.2rem;
  color: var(--primary);
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    margin-bottom: 32px;
    border-radius: 0 0 22px 22px / 0 0 12px 12px;
  }
  .hero .content-wrapper {
    padding: 32px 8px 18px 8px;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* FEATURES & LISTS ----------------- */
.features-list, .service-list, .trend-list, .tips-category-list, .step-list, .faq-summary ul, .inspiration-cards ul, .contact-info, .company-details ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features-list li, .service-list li, .trend-list li, .tips-category-list li, .step-list li, .contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  background: #fff;
  padding: 10px 18px 10px 10px;
  border-radius: 10px;
  box-shadow: 0 1px 4px 0 rgba(35,59,86,0.04);
  position: relative;
}
.features-list li img, .service-list li img, .contact-info li img {
  width: 32px;
  height: 32px;
}

@media (max-width: 600px) {
  .features-list li, .service-list li, .trend-list li, .tips-category-list li, .step-list li, .contact-info li {
    font-size: 0.95rem;
    padding: 8px 8px 8px 8px;
    min-width: 0;
  }
}

/* BADGES / ICON GROUP------------------ */
.trusted-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
}
.trusted-badges img {
  width: 48px;
  height: 48px;
  filter: grayscale(0.2);
}

/* FILTER TAGS (Inspiracje) ------------- */
.filter-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}
.filter-tags span {
  background: var(--secondary);
  color: #fff;
  padding: 7px 16px;
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  box-shadow: 0 1px 4px 0 rgba(92,168,165,0.06);
}

/* CARDS & BLOCKS---------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tip-cards, .inspiration-cards, .faq-summary, .step-descriptions, .step-checklist, .company-details {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 14px 0 rgba(35,59,86,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-summary ul, .inspiration-cards ul, .step-checklist ul {
  gap: 12px;
}

/* ACCORDION FAQ (static) -------------- */
.accordion-faq h3 {
  font-size: 1.12rem;
  background: var(--secondary);
  padding: 12px 20px 8px 16px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0px;
  margin-top: 18px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-faq p {
  background: #fff;
  padding: 12px 20px;
  margin-bottom: 0;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #ececec;
}
/* No JS version: all open */

/* TESTIMONIALS -------------------------- */
.testimonial-card p {
  font-size: 1.11rem;
  color: #233B56;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  background: var(--accent);
  border-radius: 8px;
  padding: 3px 12px;
  margin-right: 4px;
  margin-bottom: 6px;
}
.testimonial-card .star-ratings {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
}
.testimonial-card .star-ratings img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(35,59,86,0.09));
}

/* BUTTONS ---------------------------- */
button, .btn, input[type='submit'], input[type='button'] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 28px;
  font-size: 1.02rem;
  background: var(--secondary);
  color: #233B56;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(92,168,165,0.09);
  transition: background 0.17s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
button:hover, .btn:hover, input[type='submit']:hover, input[type='button']:hover {
  background: #233B56;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(35,59,86,0.13);
  transform: translateY(-2px) scale(1.04);
}

/* FORMS ----------------------------- */
input[type='search'],
input[type='text'],
input[type='email'],
input[type='tel'],
textarea {
  width: 100%;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border: 2px solid var(--secondary);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #fff;
  color: var(--primary);
  transition: border 0.17s, box-shadow 0.17s;
  outline: none;
}
input[type='search']:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
textarea:focus {
  border: 2px solid var(--primary);
  box-shadow: 0 1px 8px 0 rgba(35,59,86,0.11);
}

/* MAP / LOCATION ---------------------------------- */
.map-location {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--accent);
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 1.06rem;
}
.map-location img {
  width: 28px;
  height: 28px;
}

/* PROGRESS BAR (Krok po kroku) ------------------- */
.progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  user-select: none;
}
.progress-bar span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.93rem;
  background: var(--secondary);
  color: #fff;
  padding: 7px 16px;
  border-radius: 0 12px 12px 0;
  margin-right: 7px;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
}
.progress-bar span:first-child {
  border-radius: 12px 0 0 12px;
}
.progress-bar span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #233B56;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
@media (max-width: 600px) {
  .progress-bar span {
    font-size: 0.83rem;
    padding: 6px 9px;
    margin-right: 3px;
  }
  .progress-bar span:not(:last-child):after {
    width: 12px;
    margin-left: 3px;
  }
}

/* FOOTER ------------------------------ */
footer {
  width: 100%;
  background: #233B56;
  color: #fff;
  padding: 22px 0 12px 0;
  margin-top: 40px;
  border-radius: 28px 28px 0 0 / 12px 12px 0 0;
  box-shadow: 0 -2px 14px 0 rgba(35, 59, 86, 0.09);
  position: relative;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 6px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  padding: 0 7px;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
}
footer span {
  text-align: center;
  display: block;
  font-size: 0.99rem;
  color: #C7D6E7;
  margin-top: 5px;
}

/* COOKIE CONSENT BANNER ------------------------------ */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 5000;
  background: #fff;
  color: #233B56;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 -2px 18px 0 rgba(35,59,86,0.07);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 20px 20px 26px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: cookie-slide-in 0.5s cubic-bezier(.75,0,.38,1) 1;
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner .cookie-text {
  flex: 1 1 360px;
  max-width: 800px;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
#cookie-banner button {
  padding: 10px 24px;
  font-size: 0.96rem;
  border-radius: 9px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 2px solid var(--secondary);
  background: #fff;
  color: var(--primary);
  transition: background 0.17s, color 0.17s;
  min-width: 110px;
  margin-right: 2px;
}
#cookie-banner button.accept {
  background: var(--secondary);
  color: #fff;
  border: none;
}
#cookie-banner button.accept:hover { background: var(--primary); color: #fff; }
#cookie-banner button.reject {
  background: #fff;
  color: var(--danger);
  border: 2px solid var(--danger);
}
#cookie-banner button.reject:hover {
  background: var(--danger);
  color: #fff;
}
#cookie-banner button.settings {
  background: none;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
#cookie-banner button.settings:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 12px 8px 12px 8px;
    font-size: 0.99rem;
  }
  #cookie-banner .cookie-btns {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* COOKIE MODAL -------------------------------------- */
#cookie-modal {
  display: none;
  position: fixed;
  z-index: 6000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  color: #233B56;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(35, 59, 86, 0.19);
  max-width: 380px;
  width: 91vw;
  padding: 36px 28px 28px 28px;
  animation: cookie-modal-fade-in 0.41s cubic-bezier(.75,0,.38,1) 1;
}
@keyframes cookie-modal-fade-in {
  from { opacity: 0; transform: translate(-50%, -66%) scale(.93); }
  to   { opacity: 1; transform: translate(-50%, -52%) scale(1); }
}
#cookie-modal.open {
  display: block;
}
#cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.cookie-category {
  padding: 12px 12px 12px 0px;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 600;
  min-width: 155px;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  border-radius: 11px;
  background: #ececec;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 22px;
}
.cookie-category .essential-label {
  color: var(--success);
  font-weight: 600;
  font-size: 0.98rem;
}
#cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-end;
}
#cookie-modal button {
  padding: 9px 20px;
  font-size: 0.98rem;
}
#cookie-modal .close-modal {
  position: absolute;
  right: 19px;
  top: 16px;
  background: none;
  color: #233B56;
  font-size: 1.75rem;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.13s;
}
#cookie-modal .close-modal:hover { opacity: 1; }
@media (max-width: 480px) {
  #cookie-modal {
    padding: 22px 8px 18px 8px;
    max-width: 96vw;
  }
  #cookie-modal h2 {
    font-size: 1.1rem;
  }
  .cookie-category label {
    min-width: 100px;
    font-size: 1rem;
  }
}

/* GEOMETRIC ELEMENTS ---------------------- */
/* Large geometric SVG or pseudo-shapes if present */

/* SPACING UTILS (do not remove, used by JS/templates!) */
.spacing-20 { margin-bottom: 20px !important; }
.spacing-24 { margin-bottom: 24px !important; }
.spacing-32 { margin-bottom: 32px !important; }
.spacing-40 { margin-bottom: 40px !important; }

/* SHADOWS & EFFECTS (Consistent UI) --------- */
.box-shadow-md { box-shadow: 0 2px 12px 0 rgba(35, 59, 86, 0.07); }
.box-shadow-lg { box-shadow: 0 8px 32px 0 rgba(35, 59, 86, 0.13); }

/* UTILITIES ---------------------------------- */
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 1.7px; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-primary { background: var(--primary); color: #fff; }
.bg-secondary { background: var(--secondary); color: #fff; }

/* PRINT ------------------------------------- */
@media print {
  header, .mobile-menu, #cookie-banner, #cookie-modal, footer { display: none !important; }
  body { background: #fff; }
  .content-wrapper, .section { box-shadow: none !important; background: #fff !important; color: #233B56; }
}
