:root {
  --primary: #257384;
  --accent: #e96596;
  --bg: #fef4f3;
  --highlight: #fcd77d;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #fef4f3, #ffffff);
  color: #0d0e0f;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (max-width: 500px) {
  .button-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .info-split img:hover {
    transform: scale(1.02) translateY(-4px);
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-group.full-width {
    grid-column: 1 / -1;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar img {
  height: 50px;
  transition: all 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.navbar img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.navbar nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #444;
  font-weight: 300;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}

.navbar.scrolled nav a {
  color: #0d0e0f;
}

.navbar:not(.scrolled) nav a:hover {
  color: var(--primary);
}

.navbar nav a:hover {
  color: var(--primary);
}

header {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  background:
    linear-gradient(0.25turn,
      rgba(29, 124, 135, 0.9),
      rgba(63, 162, 158, 0.9),
      rgba(95, 185, 181, 0.9),
      rgba(136, 211, 196, 0.9),
      rgba(180, 229, 233, 0.9)),
    url('img/const_bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(10px);
  padding: 0 2rem;

  position: relative;
  min-height: 100vh;
  height: 100vh;
  background:
    linear-gradient(0.25turn,
      rgba(29, 124, 135, 0.9),
      rgba(63, 162, 158, 0.9),
      rgba(95, 185, 181, 0.9),
      rgba(136, 211, 196, 0.9),
      rgba(180, 229, 233, 0.9)),
    url('img/const_bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  backdrop-filter: blur(10px);
  padding: 16rem 2rem 12rem;
}

.typed-text {
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 2.5rem;
  min-height: 12rem;
}

.caret {
  display: inline-block;
  animation: blink 1s step-start infinite;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

header p {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  margin-top: 1rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.since {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  margin-top: 0.5rem;
  color: var(--white);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.cta-btn {
  margin-top: 2rem;
  background: var(--highlight);
  color: black;
  font-size: clamp(1rem, 2vw, 1.1rem);
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(241, 201, 1, 0.4);
  cursor: pointer;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: #facc5a;
}

.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.glass-box {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
  padding-left: 1rem;
}

ul li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

blockquote {
  background: var(--bg);
  padding: 1.5rem;
  border-left: 6px solid var(--highlight);
  font-style: italic;
  margin: 2rem 0;
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  text-decoration: none;
}

footer a {
  text-decoration: none;
  color: var(--white);
}

footer small {
  display: block;
  margin-top: 1rem;
  opacity: 0.8;
}

.navbar img.fade-in {
  opacity: 0;
  animation: fadeOnly 0.5s ease forwards;
}

@keyframes fadeOnly {
  to {
    opacity: 1;
  }
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: floatBubble 10s infinite;
  opacity: 0.6;
  pointer-events: none;
}

.bubble.small {
  width: 15px;
  height: 15px;
  left: 20%;
  bottom: -50px;
  animation-delay: 0s;
}

.bubble.medium {
  width: 25px;
  height: 25px;
  left: 50%;
  bottom: -50px;
  animation-delay: 2s;
}

.bubble.large {
  width: 35px;
  height: 35px;
  left: 80%;
  bottom: -50px;
  animation-delay: 4s;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-50vh) translateX(10px) scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100vh) translateX(-10px) scale(1);
    opacity: 0;
  }
}


.sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 80%);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleFlash 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.sparkle.s1 {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
}

.sparkle.s2 {
  left: 45%;
  top: 40%;
  animation-delay: 2s;
}

.sparkle.s3 {
  left: 75%;
  top: 30%;
  animation-delay: 4s;
}

@keyframes sparkleFlash {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-btn.highlight {
  background: var(--highlight);
  color: #0d0e0f;
  box-shadow: 0 10px 25px rgba(252, 215, 125, 0.4);
}

.cta-btn.highlight:hover {
  background: #fbd155;
}

.section-enhanced {
  background: linear-gradient(135deg, #fef4f3, #ffffff);
}

.info-split {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.info-split img {
  width: 100%;
  max-width: 500px;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-out;
  will-change: transform;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.5s ease-out;
}

.desaturate-on-load.colorize {
  filter: grayscale(0%);
}

.grayscale-on-scroll {
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.grayscale-on-scroll.colorize {
  filter: grayscale(0%);
}

.info-split img:hover {
  filter: grayscale(0%);
  transform: scale(1.02) translateY(-4px);
}

.info-split div {
  flex: 1;
}

.info-split div h2 {
  font-size: 2.5rem;
  margin-top: 0;
}

.info-split div p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
}

.lottie-container {
  max-width: 400px;
  margin: 2rem auto;
}

lottie-player {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 150px;
}

.parallax-video-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 0;
}


.before-after-labels {
  position: absolute;
  top: 85%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  z-index: 2;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.before-label {
  text-align: left;
}

.after-label {
  text-align: right;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.service-card:hover .glow {
  opacity: 1;
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: var(--primary);
}

.service-card p {
  font-size: 1rem;
  color: #333;
}

.service-card .glow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, background-image 0.3s ease;
}

.choose-us-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  z-index: 2;
}

.choose-card {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.choose-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.choose-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.choose-card p {
  font-size: 1rem;
  color: #444;
}

.choose-card dotlottie-player {
  margin: 0 auto;
  display: block;
}

#why-choose-us {
  position: relative;
  overflow: hidden;
}

#why-choose-us .bubble,
#pricing .bubble {
  background: #c7ecf9;
  opacity: 0.4;
  filter: blur(0.5px);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  /* background: rgba(255, 255, 255, 0.15);*/
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  color: #0d0e0f;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 4rem;
  color: var(--highlight);
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.6;
  z-index: 0;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

#quote {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
}

#quote h2 {
  color: var(--primary);
}

#quote p {
  margin-bottom: 2.5rem;
}

.author {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  color: var(--primary);
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 3px var(--white);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19, 200, 245, 0.2);
}

.quote-form .form-group {
  margin-bottom: 0.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-width: 0;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-status {
  margin: 1rem 0;
  font-weight: bold;
  color: var(--primary);
}

.quote-form .cta-btn {
  border: none;
  box-shadow: 0 10px 25px rgba(241, 201, 1, 0.4);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.form-status {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1rem;
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status.hidden {
  display: none;
}

.form-disclaimer {
  display: block;
  font-size: 0.85rem;
  color: #555;
  margin-top: 1rem;
  text-align: center;
}
.form-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

/* Modal Backdrop */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Modal Visible State */
.modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

/* Modal Box Styling */
.modal-content {
  background: white;
  padding: 2rem 3rem;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 90%;
  animation: fadeInModal 0.4s ease;
}

/* Fade-In Animation */
@keyframes fadeInModal {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#pricing {
  position: relative;
  overflow: hidden;
}

.price {
  color: var(--primary);
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: #444;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #444;
  font-size: 1rem;
}

/* FAQ Layout */
#faq {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

/* FAQ Items */

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question button.collapsible {
  background: none;
  color: #444;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1rem 0;
  width: 100%;
  transition: color 0.3s ease;
}

.faq-question button.collapsible:hover {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 3.2rem;
}

.faq-answer p {
  margin: 0.5rem 0 1rem;
  color: #333;
}

/* Expanded state */
.faq-question.active+.faq-answer {
  max-height: 500px;
}

/* Nav Button Style */

.book-now-btn:hover {
  background: #facc5a;
}

.nav-logo-bg {
  display: none;
}

/*Mobile*/

.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-cta-bar a {
    color: var(--primary);
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .mobile-cta-bar a:hover {
    background: rgba(37, 115, 132, 0.1);
    /* light hover */
  }
  .before-after-labels {
    font-size: 1.5rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #0d0e0f;
  /* already applied */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.book-now-btn {
  padding: 0.4rem 1rem;
  background: var(--highlight);
  color: black;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  text-align: center;
  display: inline-block;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
    z-index: 10000;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: background-color 0.3s ease;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1000;
    opacity: 0;
  }

  .nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
  }

  .nav-links a {
    color: #0d0e0f !important;
    padding: 0.7rem 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links .book-now-btn {
    margin-top: 1rem;
    background: var(--highlight);
    color: black;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    display: block;
    width: 50%;
    text-align: center;
  }

  .navbar.scrolled .nav-links a {
    color: #0d0e0f;
  }

  .nav-links.open {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger.open span {
    background-color: #0d0e0f !important;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .typed-text {
    font-size: 3.3rem;
  }

  header p {
    font-size: 1.4rem;
  }

  .book-now-btn {
    margin: 1rem 0 0 0;
    width: 100%;
    text-align: center;
  }

  .navbar.scrolled .hamburger div,
  .nav-links.open~.hamburger div {
    background-color: #0d0e0f;
  }

  .navbar .logo,
  .navbar.scrolled .logo {
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open~.navbar {
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-logo-bg {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    opacity: 0.8;
    margin-bottom: 1rem;
    z-index: 0;
    pointer-events: none;
  }

  .nav-logo-bg img {
    max-width: 300px;
    width: 70vw;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: white;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--highlight);
  text-decoration: underline;
}

.cookie-banner button {
  background: var(--highlight);
  color: rgb(0, 0, 0);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--highlight);
  color: black;
  padding: 0.5rem 1rem;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}