/* 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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F8FAFC;
  color: #203045;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #203045;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.47,1.64,.41,.8);
}
a:hover, a:focus {
  color: #7DC0DC;
}
:focus {
  outline: 2px solid #7DC0DC;
  outline-offset: 2px;
}
ul, ol {
  margin: 0 0 1.2em 1.6em;
  padding: 0;
}
li {
  margin-bottom: 0.6em;
}

/* GEOMETRIC-STRUCTURED CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #203045;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 8px;
}
h2 {
  font-size: 2rem;
  line-height: 1.17;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p, li, span, .btn, a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #203045;
}
p {
  font-size: 1.05rem;
  margin-bottom: 0.6em;
  line-height: 1.75;
}
strong {
  font-weight: 700;
}

/* BUTTONS */
.btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85em 2.25em;
  border-radius: 32px;
  border: none;
  background: #7DC0DC;
  color: #203045;
  box-shadow: 0 3px 12px 0 rgb(32 48 69 / 7%);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s cubic-bezier(.47,1.64,.41,.8), color 0.2s cubic-bezier(.47,1.64,.41,.8), transform 0.07s;
  margin-top: 12px;
  min-width: 180px;
  display: inline-block;
}
.btn-primary {
  background: #7DC0DC;
  color: #203045;
  border: 2px solid #203045;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #203045;
  color: #FEEA8C;
  border-color: #7DC0DC;
  transform: translateY(-2px) scale(1.045);
}
.btn-secondary {
  background: #FEEA8C;
  color: #203045;
  border: 2px solid #7DC0DC;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #7DC0DC;
  color: #FFF;
  border-color: #203045;
}

/* HEADER & NAVIGATION */
header {
  background: #203045;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 8px 0 rgb(32 48 69 / 7%);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav a {
  color: #FEEA8C;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 6px;
  border-radius: 4px;
  transition: background 0.18s cubic-bezier(.47,1.64,.41,.8);
}
.main-nav a:hover, .main-nav a.active {
  background: #7DC0DC;
  color: #203045;
}
header .btn-primary {
  margin-left: 20px;
  min-width: 150px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FEEA8C;
  cursor: pointer;
  z-index: 1200;
  margin-left: 8px;
  padding: 0 8px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #7DC0DC;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #203045;
  z-index: 999;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 4px 27px rgb(32 48 69 / 24%);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FEEA8C;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 24px 18px 4px 18px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #7DC0DC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 36px 0 0 0;
  align-items: flex-start;
  padding-left: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.mobile-nav a {
  color: #FEEA8C;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0 0 6px 0;
  padding: 10px 0;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
  min-width: 210px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #7DC0DC;
  color: #203045;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 8px;
  }
}

/* HERO SECTION */
.hero {
  background: #FEEA8C;
  border-bottom: 3px solid #7DC0DC;
  padding: 56px 0 60px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 20px;
  padding: 0;
  align-items: flex-start;
}
.hero h1 {
  color: #203045;
  font-size: 2rem;
  margin-bottom: 8px;
}
@media (min-width: 700px) {
  .hero .content-wrapper {
    max-width: 600px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}

/* FEATURES SECTION */
.features {
  margin-bottom: 60px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 260px;
  background: #fff;
  border: 2.5px solid #203045;
  border-radius: 14px 14px 0 18px;
  box-shadow: 0 2px 16px rgb(32 48 69 / 7%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 34px 22px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature:hover,
.feature:focus-within {
  box-shadow: 0 6px 28px 2px rgb(125 192 220 / 16%);
  transform: translateY(-6px) scale(1.025);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature h3 {
  margin-bottom: 4px;
  font-size: 1.18rem;
  color: #203045;
}

.features ul, .features ol {
  margin: 10px 0 0 1.4em;
}
.features li {
  margin-bottom: 0.8em;
  font-size: 1.08rem;
}

/* SERVICES SECTION */
.services .service-list,
.services .service-detail-list,
.services .service-list-extended {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.service-item {
  background: #fff;
  border-radius: 24px 8px 24px 8px;
  border: 2px solid #7DC0DC;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 2px 14px 0 rgb(32 48 69 / 8%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 286px;
  margin-bottom: 20px;
  position: relative;
  transition: border 0.18s, box-shadow 0.18s, transform 0.13s;
}
.service-item span {
  display: inline-block;
  background: #FEEA8C;
  color: #203045;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 52px;
  margin-left: 7px;
}
.service-item:hover,
.service-item:focus-within {
  border: 2px solid #203045;
  box-shadow: 0 10px 22px 0 rgb(32 48 69 / 13%);
  transform: translateY(-5px) scale(1.017);
}
.service-item ul {
  margin: 12px 0 0 16px;
  font-size: 1rem;
}
.service-item li {
  margin-bottom: 0.5em;
}

/* WEEKEND TRIPS SECTION */
.weekend-trip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.trip-item {
  background: #fff;
  border: 2px solid #7DC0DC;
  border-radius: 18px 18px 0 18px;
  padding: 28px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow 0.18s, transform 0.13s;
}
.trip-item span {
  background: #FEEA8C;
  color: #203045;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 52px;
  margin-left: 7px;
}
.trip-item:hover,
.trip-item:focus-within {
  border: 2px solid #203045;
  box-shadow: 0 10px 22px 0 rgb(125 192 220 / 13%);
  transform: translateY(-5px) scale(1.017);
}

.activity-overview ul {
  margin: 12px 0 0 20px;
}

/* TESTIMONIALS SECTION */
.testimonials {
  margin-bottom: 60px;
  background: #fff;
  border-top: 3px solid #7DC0DC;
  border-bottom: 3px solid #7DC0DC;
  padding: 32px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #F8FAFC;
  border: 2.5px solid #7DC0DC;
  border-radius: 18px 32px 8px 22px;
  box-shadow: 0 2px 16px 0 rgb(32 48 69 / 8%);
  padding: 24px 24px 18px 24px;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow 0.18s, transform 0.13s;
  color: #203045;
}
.testimonial-card .stars {
  color: #fdc400;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 2px;
}
.testimonial-card p {
  color: #203045;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card .customer {
  color: #203045;
  font-size: 0.93rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 4px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border: 2.5px solid #203045;
  box-shadow: 0 5px 24px 0 rgb(125 192 220 / 14%);
  transform: translateY(-4px) scale(1.021);
}

/* CTA SECTION */
.cta {
  background: #7DC0DC;
  margin-bottom: 60px;
  padding: 44px 0 48px 0;
  border-radius: 32px 32px 0 0;
  text-align: center;
  box-shadow: 0 7px 32px 0 rgb(32 48 69 / 7%);
}
.cta h1, .cta h2 {
  color: #203045;
}
.cta p {
  color: #203045;
  opacity: 0.93;
}
.cta .btn-primary {
  background: #203045;
  color: #7DC0DC;
  border-color: #203045;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #7DC0DC;
  color: #203045;
  border-color: #203045;
}

/* ABOUT SECTION */
.about ul {
  margin: 10px 0 10px 1.5em;
}
.about li {
  margin-bottom: 0.8em;
  font-size: 1.07rem;
}

/* CUSTOMER STORIES */
.customer-stories {
  background: #FEEA8C;
  border-radius: 18px 18px 0 18px;
  border: 2px solid #7DC0DC;
  padding: 24px 18px 18px 18px;
  margin: 14px 0 10px 0;
  font-size: 1.01rem;
}
.customer-stories .customer {
  display: block;
  font-weight: 600;
  margin-top: 9px;
  color: #203045;
  font-size: 0.95rem;
}

/* CONTACT PAGE SECTIONS */
.contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info {
  background: #FEEA8C;
  border-radius: 12px 36px 12px 12px;
  padding: 18px 20px 14px 20px;
  border: 1.5px solid #7DC0DC;
  margin-bottom: 0;
  font-size: 1.01rem;
}
.map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  color: #203045;
  font-size: 0.97rem;
}
.opening-hours ul {
  margin: 8px 0 0 18px;
}
.opening-hours strong {
  display: block;
  margin-bottom: 7px;
}
.faq-snippet {
  background: #fff;
  border-left: 4px solid #7DC0DC;
  padding: 16px 22px 12px 18px;
  margin: 16px 0 0 0;
  border-radius: 12px 12px 20px 0;
  font-size: 1.01rem;
  box-shadow: 0 1px 6px 0 rgb(32 48 69 / 5%);
}
.faq-snippet h3 {
  margin: 0 0 2px 0;
  font-size: 1.08rem;
  color: #203045;
}
.faq-snippet ul {
  margin: 8px 0 0 12px;
  font-size: 1rem;
}

/* LEGAL TEXT PAGES */
.legal {
  background: #fff;
  border-radius: 24px 24px 0 24px;
  border: 2px solid #7DC0DC;
  min-height: 440px;
  padding: 60px 10px 32px 10px;
  margin-bottom: 60px;
  box-shadow: 0 3px 23px 0 rgb(32 48 69 / 4%);
}
.legal h1, .legal h2, .legal h3 {
  color: #203045;
}
.legal ul, .legal ol {
  margin: 10px 0 10px 1.3em;
  font-size: 1.01rem;
}
.legal li {
  margin-bottom: 0.7em;
}

/* FOOTER */
footer {
  background: #203045;
  color: #FEEA8C;
  padding: 38px 0 0 0;
  border-radius: 36px 0 0 0;
  margin-top: 20px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 23px;
}
.footer-logo img {
  height: 46px;
}
.footer-contact {
  font-size: 1rem;
  color: #FEEA8C;
  line-height: 1.6;
  min-width: 225px;
  max-width: 320px;
}
.footer-contact a {
  color: #7DC0DC;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #7DC0DC;
  font-size: 0.98rem;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:active {
  color: #FEEA8C;
}
.footer-copy {
  font-size: 0.9rem;
  color: #FEEA8C;
  opacity: 0.8;
  text-align: right;
  padding-bottom: 16px;
}

/* --- SPACING UTILS --- */
.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;
}

/* --- RESPONSIVE RULES / MOBILE-FIRST --- */
@media (max-width: 900px) {
  .features .feature-grid, .service-list, .service-detail-list, .service-list-extended, .testimonial-list, .weekend-trip-list {
    gap: 16px;
    justify-content: center;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  footer .content-wrapper {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 30px 0 32px 0;
  }
  .features .feature-grid,
  .service-list,
  .service-detail-list,
  .service-list-extended,
  .testimonial-list,
  .weekend-trip-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature,
  .testimonial-card,
  .service-item,
  .trip-item {
    max-width: 100%;
    min-width: 0;
  }
  .card-container,
  .content-grid,
  .testimonial-list,
  .text-image-section,
  .weekend-trip-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer-copy {
    text-align: left;
    padding-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.35rem;
  }
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .btn {
    min-width: 127px;
    font-size: 0.98rem;
    padding: 0.7em 1.3em;
  }
  .about, .features, .testimonials, .services, .cta, .legal, .section {
    padding: 20px 4px;
  }
  .footer-logo img {
    height: 33px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #203045;
  color: #FEEA8C;
  z-index: 2100;
  box-shadow: 0px -1px 8px 0 rgb(32 48 69 / 14%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 24px 18px;
  font-size: 1rem;
  transition: transform 0.4s;
  flex-wrap: wrap;
  gap: 20px;
}
.cookie-banner.closed {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  color: #FEEA8C;
  line-height: 1.5;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner .btn {
  font-size: 0.98rem;
  padding: 7px 18px;
  min-width: 120px;
  border-radius: 13px 4px 13px 4px;
}
.cookie-banner .btn-accept {
  background: #7DC0DC;
  color: #203045;
  border: 2px solid #7DC0DC;
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: #203045;
  color: #FEEA8C;
  border-color: #7DC0DC;
}
.cookie-banner .btn-reject {
  background: transparent;
  color: #FEEA8C;
  border: 2px solid #7DC0DC;
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  background: #7DC0DC;
  color: #203045;
}
.cookie-banner .btn-settings {
  background: transparent;
  color: #7DC0DC;
  border: 2px solid #7DC0DC;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: #FEEA8C;
  color: #203045;
}

@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.97rem;
    padding: 15px 7px 18px 10px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 2201;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(32 48 69 / 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #203045;
  border-radius: 18px 8px 32px 8px;
  max-width: 430px;
  width: 96vw;
  padding: 32px 20px 21px 24px;
  box-shadow: 0 6px 44px 0 rgb(32 48 69 / 32%);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.06rem;
}
.cookie-modal-content h2 {
  font-size: 1.22rem;
  margin-bottom: 11px;
  color: #203045;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #e0e8ef;
  border-radius: 11px;
  position: relative;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #7DC0DC;
  border-radius: 10px;
  transition: left 0.22s;
}
.cookie-toggle input:checked + .slider {
  left: 20px;
  background: #203045;
}
.cookie-toggle input:disabled + .slider {
  background: #7DC0DC;
  opacity: 0.6;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn {
  min-width: 120px;
  font-size: 0.97rem;
  padding: 7px 18px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #203045;
  font-size: 1.55rem;
  position: absolute;
  top: 11px;
  right: 14px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #7DC0DC;
}

@media (max-width: 420px) {
  .cookie-modal-content {
    padding: 14px 5px 12px 8px;
    font-size: 0.9rem;
  }
}

/* --- ANIMATIONS --- */
@keyframes menuSlideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes menuSlideOut {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.mobile-menu.open {
  animation: menuSlideIn 0.37s cubic-bezier(.77,0,.175,1) 1;
}
.mobile-menu:not(.open) {
  animation: menuSlideOut 0.4s cubic-bezier(.77,0,.175,1) 1;
}

/* --- ACCESSIBLE HIDDEN CLASS (for cookie/modal) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
