h1 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1440px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1440px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 1.3rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1440px) {
  h4 {
    font-size: 1.5rem;
  }
}

p,
li {
  font-size: 0.875rem;
  font-weight: 400;
  color: #525252;
}
@media (min-width: 768px) {
  p,
  li {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  p,
  li {
    font-size: 1.125rem;
  }
}

.footer {
  padding: 48px 0 24px;
  background-color: #f5f5f5;
}
@media (min-width: 768px) {
  .footer {
    padding: 72px 0 32px;
  }
}
@media (min-width: 1440px) {
  .footer {
    padding: 96px 0 40px;
  }
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .footer__main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (min-width: 1440px) {
  .footer__brand {
    grid-column: 1;
  }
}
.footer__logo {
  font-size: 32px;
  font-family: "Bebas Neue", sans-serif;
  color: #009959;
}
@media (min-width: 768px) {
  .footer__logo {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .footer__logo {
    font-size: 64px;
    max-width: 250px;
  }
}
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__section {
    gap: 20px;
  }
}
.footer__section-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
@media (min-width: 768px) {
  .footer__section-title {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .footer__section-title {
    font-size: 18px;
  }
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer__nav-list {
    gap: 14px;
  }
}
.footer__nav-link {
  color: #525252;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .footer__nav-link {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
.footer__nav-link:hover {
  color: #009959;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer__contact {
    gap: 14px;
  }
}
.footer__contact-item {
  color: #525252;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .footer__contact-item {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .footer__contact-item {
    font-size: 16px;
  }
}
.footer__contact-item--phone:hover, .footer__contact-item--email:hover, .footer__contact-item--address:hover {
  color: #009959;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer__social {
    gap: 14px;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #525252;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer__social-link {
    font-size: 15px;
    gap: 14px;
  }
}
@media (min-width: 1440px) {
  .footer__social-link {
    font-size: 16px;
  }
}
.footer__social-link:hover {
  color: #009959;
  transform: translateX(4px);
}
.footer__social-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .footer__social-icon {
    width: 20px;
    height: 20px;
  }
}
.footer__social-link:hover .footer__social-icon {
  transform: scale(1.1);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
  }
}
@media (min-width: 1440px) {
  .footer__bottom {
    padding-top: 40px;
  }
}
.footer__copyright {
  order: 2;
}
@media (min-width: 768px) {
  .footer__copyright {
    order: 1;
  }
}
.footer__copyright-text {
  font-size: 13px;
  color: #525252;
  margin: 0;
}
@media (min-width: 768px) {
  .footer__copyright-text {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .footer__copyright-text {
    font-size: 15px;
  }
}
.footer__legal {
  order: 1;
}
@media (min-width: 768px) {
  .footer__legal {
    order: 2;
  }
}
.footer__legal-link {
  color: #525252;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .footer__legal-link {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .footer__legal-link {
    font-size: 15px;
  }
}
.footer__legal-link:hover {
  color: #009959;
  text-decoration: underline;
}

.header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.99);
}
.header.scrolled .header__inner {
  padding: 16px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  transition: padding 0.3s ease;
}

.logo {
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  color: #009959;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .logo {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .logo {
    font-size: 28px;
    max-width: 250px;
  }
}

.menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .menu {
    display: flex;
  }
}
.menu li {
  position: relative;
}
.menu a {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}
.menu a:hover {
  color: #009959;
}
.menu__button {
  display: none;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.menu__desktop--button {
  display: none !important;
  margin-left: 1rem;
}
@media (min-width: 992px) {
  .menu__desktop--button {
    display: inline-block !important;
  }
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  z-index: 2000;
  padding: 2rem;
  transition: left 0.3s ease;
  overflow-y: auto;
}
@media (min-width: 481px) {
  .mobile-menu {
    left: -300px;
    width: 300px;
  }
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__logo {
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  color: #009959;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
}
.mobile-menu__nav {
  list-style: none;
  margin: 32px 0;
}
.mobile-menu__nav li {
  margin-bottom: 1rem;
}
.mobile-menu__nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  display: block;
  transition: color 0.3s ease;
  padding: 0.75rem 0;
}
.mobile-menu__nav a:hover {
  color: #009959;
}

.mobile-menu:focus {
  outline: none !important;
}

.badge-wrapper {
  display: flex;
  width: 100%;
}
.badge-wrapper .badge {
  padding: 6px 12px;
  border-radius: 9999px;
  width: max-content;
  background-color: red;
}
.badge-wrapper .badge span {
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .badge-wrapper .badge span {
    font-size: 16px;
  }
}
.badge-wrapper .badge--dark {
  background-color: #fff;
}
.badge-wrapper .badge--dark span {
  color: #009959;
}
.badge-wrapper .badge--light {
  background-color: #f7fafa;
}
.badge-wrapper .badge--light span {
  color: #009959;
}

.badge-centered {
  justify-content: center;
}

.hero-subpage {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-subpage {
    height: 85vh;
    min-height: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage {
    height: 50vh;
    min-height: 550px;
  }
}
@media (min-width: 1580px) {
  .hero-subpage {
    height: 70vh;
    min-height: 600px;
    text-align: center;
  }
}
.hero-subpage__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.hero-subpage__image.loaded {
  opacity: 1;
}
.hero-subpage__image[loading=eager] {
  opacity: 1;
}
.hero-subpage__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background-color: #fff;
  width: 90%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px 20px;
  margin-bottom: 0;
  z-index: 2;
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .hero-subpage__inner {
    max-width: 85%;
    padding: 48px 32px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage__inner {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    padding: 64px 32px;
    margin: 0 auto;
    margin-bottom: 0;
  }
}
@media (min-width: 1580px) {
  .hero-subpage__inner {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    padding: 64px 32px;
    margin: 0 auto;
    margin-bottom: 0;
  }
}
.hero-subpage__inner h1 {
  margin-bottom: 1rem;
  color: #000;
}
@media (min-width: 768px) {
  .hero-subpage__inner h1 {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage__inner h1 {
    max-width: 620px;
  }
}
.hero-subpage__inner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-subpage__inner-text {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage__inner-text {
    max-width: 620px;
  }
}

.hero-subpage {
  will-change: transform;
}
.hero-subpage::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-subpage__image {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .hero-subpage__image:not(.loaded) {
    transform: scale(1.02);
  }
  .hero-subpage__image.loaded {
    transform: scale(1);
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../../assets/wave-hero.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: 999;
}
@media (min-width: 768px) {
  .hero {
    height: 95vh;
  }
}
@media (min-width: 1440px) {
  .hero {
    height: 95vh;
  }
}
@media (min-width: 1580px) {
  .hero {
    height: 65vh;
  }
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero__inner {
    max-width: 650px;
  }
}
@media (min-width: 1440px) {
  .hero__inner {
    max-width: 850px;
  }
}
.hero__inner h1 {
  margin-bottom: 1rem;
  color: #fff;
}
.hero__inner p {
  margin-bottom: 2rem;
  color: #fff;
}
@media (min-width: 1440px) {
  .hero__inner p {
    max-width: 450px;
  }
}
.hero_btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.hero_btns a {
  width: 100%;
}
@media (min-width: 1440px) {
  .hero_btns a {
    width: max-content;
  }
}
@media (min-width: 1440px) {
  .hero_btns {
    display: flex;
    flex-direction: row;
  }
}

.features {
  padding: 48px 0;
  background-color: #f7fafa;
  display: flex;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .features {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .features {
    padding: 96px 0;
  }
}
.features .container .features-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features .container .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .features .container .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    padding: 40px 0;
  }
}
@media (min-width: 1440px) {
  .features .container .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 96px 40px;
    padding: 48px 0;
  }
}
.features .container .features-grid .feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .features .container .features-grid .feature-item {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .features .container .features-grid .feature-item {
    gap: 24px;
  }
}
.features .container .features-grid .feature-item .feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .features .container .features-grid .feature-item .feature-content {
    gap: 14px;
  }
}
@media (min-width: 1440px) {
  .features .container .features-grid .feature-item .feature-content {
    gap: 16px;
  }
}
.features .container .features-grid .feature-item .feature-content > p {
  font-weight: 400;
}

.about-us {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .about-us {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .about-us {
    padding: 96px 0;
  }
}
.about-us__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-us__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: center;
  }
}
.about-us__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .about-us__content {
    gap: 32px;
    margin-top: 0;
  }
}
.about-us__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-us__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1rem;
}
.about-us__text p {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.about-us__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .about-us__features {
    gap: 24px;
  }
}
.about-us__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .about-us__feature {
    gap: 16px;
  }
}
.about-us__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.about-us__feature-text {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.about-us__button {
  align-self: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .about-us__button {
    margin-top: 16px;
  }
}
.about-us__media {
  width: 100%;
}
@media (min-width: 768px) {
  .about-us__media {
    display: flex;
    justify-content: flex-end;
  }
}
.about-us__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .about-us__image {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .about-us__image {
    max-width: 600px;
  }
}

.gallery {
  background-color: #f7fafa;
  display: flex;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .gallery {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .gallery {
    padding: 96px 0;
  }
}
.gallery__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .gallery__header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .gallery__header {
    margin-bottom: 48px;
  }
}
.gallery__header .gallery__description {
  max-width: 550px;
  margin: 0 auto;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    margin-bottom: 48px;
  }
}
.gallery__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gallery__item:hover {
  cursor: default;
}
@media (min-width: 1440px) {
  .gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 1440px) {
  .gallery__item:hover .gallery__overlay {
    opacity: 1;
  }
}
@media (min-width: 1440px) {
  .gallery__item:hover .gallery__tag {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
  }
}
@media (min-width: 1440px) {
  .gallery__item:hover .gallery__image {
    transform: scale(1.05);
  }
}
.gallery__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .gallery__image {
    height: 280px;
  }
}
@media (min-width: 1440px) {
  .gallery__image {
    height: 320px;
  }
}
.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery__tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(10px);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .gallery__tag {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .gallery__tag {
    font-size: 22px;
  }
}
.gallery__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.booking {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .booking {
    padding-bottom: 72px;
  }
}
@media (min-width: 1440px) {
  .booking {
    padding-bottom: 96px;
  }
}
.booking .container {
  width: 100%;
}
.booking__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #ebfff8;
  padding: 32px 20px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .booking__wrapper {
    padding: 72px 40px;
    flex-direction: row;
    background-color: #ebfff8;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .booking__wrapper {
    gap: 60px;
    padding: 72px;
  }
}
.booking__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .booking__content {
    gap: 28px;
  }
}
@media (min-width: 1440px) {
  .booking__content {
    gap: 32px;
  }
}
.booking__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .booking__header {
    gap: 20px;
  }
}
.booking__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .booking__actions {
    flex-direction: row;
  }
}
.booking__media {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (min-width: 1440px) {
  .booking__media {
    justify-content: flex-end;
  }
}
.booking__image-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
}
@media (min-width: 768px) {
  .booking__image-wrapper {
    max-width: 450px;
  }
}
@media (min-width: 1440px) {
  .booking__image-wrapper {
    max-width: 500px;
  }
}
.booking__image {
  display: none;
}
@media (min-width: 1440px) {
  .booking__image {
    display: inline-block;
    width: 100%;
    height: auto;
  }
}

.booking-social__button--primary {
  color: black;
  text-decoration: underline;
  transition: 0.3s ease-in-out;
  font-size: 16px;
}
.booking-social__button--primary:hover {
  color: #009959;
}

.testimonials {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .testimonials {
    padding: 96px 0;
  }
}
.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .testimonials__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1440px) {
  .testimonials__header {
    margin-bottom: 56px;
  }
}
.testimonials__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .testimonials__content {
    gap: 16px;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .testimonials__content {
    gap: 16px;
    max-width: 55%;
  }
}
.testimonials__description {
  max-width: 100%;
}
@media (min-width: 1440px) {
  .testimonials__description {
    max-width: 400px;
  }
}
.testimonials__brand-text {
  display: none;
}
@media (min-width: 1440px) {
  .testimonials__brand-text {
    font-family: "Bebas Neue", sans-serif;
    color: #009959;
    display: inline-block;
    font-size: 64px;
    max-width: 250px;
  }
}
.testimonials__slider {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .testimonials__slider {
    margin-bottom: 48px;
  }
}
@media (min-width: 1440px) {
  .testimonials__slider {
    margin-bottom: 56px;
  }
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
  }
}
@media (min-width: 1440px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
  }
}
.testimonials__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
  .testimonials__card {
    padding: 28px;
  }
}
@media (min-width: 1440px) {
  .testimonials__card {
    padding: 32px;
  }
}
.testimonials__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .testimonials__card-header {
    margin-bottom: 20px;
  }
}
.testimonials__rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonials__stars {
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 768px) {
  .testimonials__stars {
    font-size: 16px;
  }
}
.testimonials__score {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}
@media (min-width: 768px) {
  .testimonials__score {
    font-size: 13px;
  }
}
.testimonials__author {
  text-align: right;
  flex: 1;
}
.testimonials__author-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
}
@media (min-width: 768px) {
  .testimonials__author-name {
    font-size: 17px;
  }
}
.testimonials__author-info {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  font-style: italic;
}
@media (min-width: 768px) {
  .testimonials__author-info {
    font-size: 13px;
  }
}
.testimonials__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin: 0 0 16px 0;
  font-style: italic;
}
@media (min-width: 768px) {
  .testimonials__quote {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.testimonials__quote::before {
  content: '"';
  color: #9ca3af;
}
.testimonials__quote::after {
  content: '"';
  color: #9ca3af;
}
.testimonials__source {
  font-size: 12px;
  font-weight: 500;
  color: #009959;
  text-align: right;
}
@media (min-width: 768px) {
  .testimonials__source {
    font-size: 13px;
  }
}
.testimonials__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .testimonials__actions {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.attractions {
  padding: 48px 0;
  background-color: #f7fafa;
}
@media (min-width: 768px) {
  .attractions {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .attractions {
    padding: 96px 0;
  }
}
.attractions__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .attractions__wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .attractions__wrapper {
    gap: 60px;
  }
}
.attractions__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .attractions__content {
    gap: 28px;
  }
}
@media (min-width: 1440px) {
  .attractions__content {
    gap: 32px;
  }
}
.attractions__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .attractions__header {
    gap: 20px;
  }
}
.attractions__description {
  margin: 0;
}
.attractions__description p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}
@media (min-width: 768px) {
  .attractions__description p {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .attractions__description p {
    font-size: 18px;
  }
}
.attractions__map {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.attractions__map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.attractions__map-iframe {
  display: block;
  width: 100%;
  height: 240px;
}
@media (min-width: 768px) {
  .attractions__map-iframe {
    height: 280px;
  }
}
@media (min-width: 1440px) {
  .attractions__map-iframe {
    height: 320px;
  }
}
.attractions__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .attractions__media {
    gap: 28px;
  }
}
@media (min-width: 1440px) {
  .attractions__media {
    gap: 32px;
  }
}
.attractions__list {
  border-radius: 8px;
  padding: 12px 0;
}
@media (min-width: 768px) {
  .attractions__list {
    padding: 28px;
    background-color: #fff;
  }
}
@media (min-width: 1440px) {
  .attractions__list {
    padding: 32px;
    background-color: #fff;
  }
}
.attractions__list-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .attractions__list-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1440px) {
  .attractions__list-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}
.attractions__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .attractions__items {
    gap: 18px;
  }
}
@media (min-width: 1440px) {
  .attractions__items {
    gap: 20px;
  }
}
.attractions__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}
@media (min-width: 768px) {
  .attractions__item {
    padding: 18px;
    gap: 18px;
  }
}
@media (min-width: 1440px) {
  .attractions__item {
    padding: 20px;
    gap: 20px;
  }
}
.attractions__item-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.attractions__item-name {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .attractions__item-name {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .attractions__item-name {
    font-size: 17px;
  }
}
.attractions__item-distance {
  font-size: 13px;
  font-weight: 500;
  color: #009959;
  background-color: #ecfdf5;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .attractions__item-distance {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 6px;
  }
}

.faq {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .faq {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .faq {
    padding: 96px 0;
  }
}
.faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.faq__wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .faq__list {
    gap: 16px;
  }
}
.faq__item {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  gap: 16px;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .faq__question {
    padding: 24px 28px;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .faq__question {
    padding: 28px 32px;
  }
}
.faq__question:hover {
  background-color: #f9fafb;
}
.faq__question:focus {
  outline: 1px solid #009959;
}
.faq__question-text {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .faq__question-text {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .faq__question-text {
    font-size: 18px;
  }
}
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #6b7280;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .faq__icon {
    width: 28px;
    height: 28px;
  }
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  color: #009959;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq__answer.is-open {
  max-height: 500px;
  transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}
.faq__answer-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid #f3f4f6;
}
@media (min-width: 768px) {
  .faq__answer-content {
    padding: 0 28px 28px 28px;
  }
}
@media (min-width: 1440px) {
  .faq__answer-content {
    padding: 0 32px 32px 32px;
  }
}
.faq__answer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 20px 0 0 0;
}
@media (min-width: 768px) {
  .faq__answer-text {
    font-size: 16px;
    margin-top: 24px;
  }
}

.amentities {
  padding: 48px 0;
  background-color: #f7fafa;
  display: flex;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .amentities {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .amentities {
    padding: 96px 0;
  }
}
.amentities .container .amentities-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.amentities .container .amentities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .amentities .container .amentities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    padding: 40px 0;
  }
}
@media (min-width: 1440px) {
  .amentities .container .amentities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
    padding: 48px 0;
  }
  .amentities .container .amentities-grid .feature-item:nth-child(4) {
    grid-column: 1;
    transform: translateX(50%);
  }
  .amentities .container .amentities-grid .feature-item:nth-child(5) {
    grid-column: 3;
    transform: translateX(-50%);
  }
}
.amentities .container .amentities-grid .feature-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .amentities .container .amentities-grid .feature-item {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .amentities .container .amentities-grid .feature-item {
    gap: 24px;
  }
}
.amentities .container .amentities-grid .feature-item .feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .amentities .container .amentities-grid .feature-item .feature-content {
    gap: 14px;
  }
}
@media (min-width: 1440px) {
  .amentities .container .amentities-grid .feature-item .feature-content {
    gap: 16px;
  }
}
.amentities .container .amentities-grid .feature-item .feature-content > p {
  font-weight: 400;
}

.localization {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .localization {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .localization {
    padding: 96px 0;
  }
}
.localization__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .localization__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  .localization__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
.localization__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .localization__content {
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  .localization__content {
    gap: 32px;
  }
}
.localization__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.localization__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1rem;
}
.localization__text p {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.localization__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .localization__features {
    gap: 24px;
  }
}
.localization__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .localization__feature {
    gap: 16px;
  }
}
.localization__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.localization__feature-text {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.localization__button {
  align-self: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .localization__button {
    margin-top: 16px;
  }
}
.localization__media {
  width: 100%;
}
@media (min-width: 1440px) {
  .localization__media {
    display: flex;
    justify-content: flex-end;
  }
}
.localization__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .localization__image {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .localization__image {
    max-width: 600px;
  }
}

.animals {
  padding: 48px 0;
  background-color: #f7fafa;
}
@media (min-width: 768px) {
  .animals {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .animals {
    padding: 96px 0;
  }
}
.animals__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .animals__wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  .animals__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
.animals__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .animals__content {
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  .animals__content {
    gap: 32px;
  }
}
.animals__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.animals__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1rem;
}
.animals__text p {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.animals__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .animals__features {
    gap: 24px;
  }
}
.animals__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .animals__feature {
    gap: 16px;
  }
}
.animals__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.animals__feature-text {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.animals__button {
  align-self: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .animals__button {
    margin-top: 16px;
  }
}
.animals__media {
  width: 100%;
}
@media (min-width: 1440px) {
  .animals__media {
    display: flex;
    justify-content: flex-start;
  }
}
.animals__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .animals__image {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .animals__image {
    max-width: 600px;
  }
}

.advantages {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .advantages {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .advantages {
    padding: 96px 0;
  }
}
.advantages__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .advantages__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  .advantages__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
.advantages__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .advantages__content {
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  .advantages__content {
    gap: 32px;
  }
}
.advantages__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.advantages__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1rem;
}
.advantages__text p {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.advantages__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .advantages__features {
    gap: 24px;
  }
}
.advantages__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .advantages__feature {
    gap: 16px;
  }
}
.advantages__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.advantages__feature-text {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.advantages__button {
  align-self: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .advantages__button {
    margin-top: 16px;
  }
}
.advantages__media {
  width: 100%;
}
@media (min-width: 1440px) {
  .advantages__media {
    display: flex;
    justify-content: flex-end;
  }
}
.advantages__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .advantages__image {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .advantages__image {
    max-width: 600px;
  }
}

.img-section.container {
  display: none;
}
@media (min-width: 768px) {
  .img-section.container {
    padding-top: 58px;
  }
}
@media (min-width: 1440px) {
  .img-section.container {
    padding-top: 158px;
    display: block;
  }
}
.img-section.container img {
  border-radius: 8px 0 0 0;
}

.cta-about {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .cta-about {
    padding-bottom: 72px;
  }
}
@media (min-width: 1440px) {
  .cta-about {
    padding-bottom: 96px;
  }
}
.cta-about .container {
  width: 100%;
}
.cta-about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #ebfff8;
  padding: 32px 20px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .cta-about__wrapper {
    padding: 72px 40px;
    flex-direction: row;
    background-color: #ebfff8;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .cta-about__wrapper {
    gap: 60px;
    padding: 72px;
  }
}
.cta-about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .cta-about__content {
    gap: 28px;
  }
}
@media (min-width: 1440px) {
  .cta-about__content {
    gap: 32px;
  }
}
.cta-about__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cta-about__header {
    gap: 20px;
  }
}
.cta-about__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cta-about__actions {
    flex-direction: row;
  }
}
.cta-about__note {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}
.cta-about__media {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (min-width: 1440px) {
  .cta-about__media {
    justify-content: flex-end;
  }
}
.cta-about__image-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
}
@media (min-width: 768px) {
  .cta-about__image-wrapper {
    max-width: 450px;
  }
}
@media (min-width: 1440px) {
  .cta-about__image-wrapper {
    max-width: 500px;
  }
}
.cta-about__image {
  display: none;
}
@media (min-width: 1440px) {
  .cta-about__image {
    display: inline-block;
    width: 100%;
    height: auto;
  }
}

.hiking {
  padding: 48px 0;
  background-color: #f7fafa;
}
@media (min-width: 768px) {
  .hiking {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .hiking {
    padding: 96px 0;
  }
}
.hiking__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hiking__wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  .hiking__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
.hiking__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .hiking__content {
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  .hiking__content {
    gap: 32px;
  }
}
.hiking__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hiking__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 1rem;
}
.hiking__text p {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.hiking__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .hiking__features {
    gap: 24px;
  }
}
.hiking__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .hiking__feature {
    gap: 16px;
  }
}
.hiking__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.hiking__feature-text {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.hiking__button {
  align-self: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .hiking__button {
    margin-top: 16px;
  }
}
.hiking__media {
  width: 100%;
}
@media (min-width: 1440px) {
  .hiking__media {
    display: flex;
    justify-content: flex-start;
  }
}
.hiking__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hiking__image {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hiking__image {
    max-width: 600px;
  }
}

.booking--2 {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .booking--2 {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .booking--2 {
    padding: 96px 0;
  }
}

.main-gallery {
  padding-top: 80px;
  padding-bottom: 48px;
  background-color: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main-gallery {
    padding-top: 100px;
    margin-top: -50px;
  }
}
@media (min-width: 1440px) {
  .main-gallery {
    padding-top: 120px;
    margin-top: -60px;
  }
}
.main-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .main-gallery .container {
    padding: 0 24px;
  }
}
.main-gallery__header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .main-gallery__header {
    margin-bottom: 48px;
  }
}
@media (min-width: 1440px) {
  .main-gallery__header {
    margin-bottom: 64px;
  }
}
.main-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .main-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
  }
}
@media (min-width: 1440px) {
  .main-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
}
@media (min-width: 1580px) {
  .main-gallery__grid {
    gap: 20px;
    margin-top: 56px;
  }
}
.main-gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .main-gallery__item {
    border-radius: 10px;
  }
  .main-gallery__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .main-gallery__item:hover .gallery__image {
    transform: scale(1.03);
  }
}
@media (min-width: 1440px) {
  .main-gallery__item {
    border-radius: 12px;
    cursor: pointer;
  }
  .main-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .main-gallery__item:hover .gallery__image {
    transform: scale(1.05);
  }
}
.main-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.main-gallery__image:hover {
  cursor: pointer !important;
}
.main-gallery__image.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-gallery__image.loaded {
  opacity: 1;
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.modal-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .modal-content {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
  }
  .modal-close {
    top: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
  }
  .modal-nav {
    display: none; /* Hide navigation buttons on mobile */
  }
  .modal-counter {
    bottom: 5px;
    font-size: 14px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
  }
  .modal-image {
    max-height: 100vh;
    max-width: 100vw;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media (max-width: 480px) {
  .modal-content {
    max-width: 100%;
    max-height: 100%;
    width: 100vw;
    height: 100vh;
  }
  .modal-close {
    top: 3px;
    right: 3px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .modal-counter {
    bottom: 3px;
    font-size: 12px;
    padding: 3px 6px;
  }
  .modal-image {
    max-height: 100vh;
    max-width: 100vw;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.hero-subpage-gallery {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 450px;
  background-image: url("../assets/hero-subpage-img.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-subpage-gallery {
    height: 85vh;
    min-height: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-gallery {
    height: 50vh;
    min-height: 550px;
  }
}
@media (min-width: 1580px) {
  .hero-subpage-gallery {
    height: 70vh;
    min-height: 600px;
    text-align: center;
  }
}
.hero-subpage-gallery__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background-color: #fff;
  width: 90%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero-subpage-gallery__inner {
    max-width: 85%;
    padding: 48px 32px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-gallery__inner {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    padding: 64px 32px;
    margin: 0 auto;
  }
}
@media (min-width: 1580px) {
  .hero-subpage-gallery__inner {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    padding: 80px 32px;
    margin: 0 auto;
    margin-bottom: 0;
  }
}
.hero-subpage-gallery__inner h1 {
  margin-bottom: 1rem;
  color: #000;
}
@media (min-width: 768px) {
  .hero-subpage-gallery__inner h1 {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-gallery__inner h1 {
    max-width: 620px;
  }
}
.hero-subpage-gallery__inner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-subpage-gallery__inner-text {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-gallery__inner-text {
    max-width: 620px;
  }
}

.main-gallery {
  padding-top: 60px;
  padding-bottom: 48px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .main-gallery {
    padding-top: 80px;
  }
}
@media (min-width: 1440px) {
  .main-gallery {
    padding-top: 100px;
  }
}
.main-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .main-gallery .container {
    padding: 0 24px;
  }
}
.main-gallery__header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .main-gallery__header {
    margin-bottom: 48px;
  }
}
@media (min-width: 1440px) {
  .main-gallery__header {
    margin-bottom: 64px;
  }
}
.main-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .main-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
  }
}
@media (min-width: 1440px) {
  .main-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
}
@media (min-width: 1580px) {
  .main-gallery__grid {
    gap: 20px;
    margin-top: 56px;
  }
}
.main-gallery__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .main-gallery__item {
    border-radius: 10px;
  }
  .main-gallery__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  .main-gallery__item:hover .gallery__image {
    transform: scale(1.03);
  }
}
@media (min-width: 1440px) {
  .main-gallery__item {
    border-radius: 12px;
    cursor: pointer;
  }
  .main-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .main-gallery__item:hover .gallery__image {
    transform: scale(1.05);
  }
}
.main-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.main-gallery__image:hover {
  cursor: pointer !important;
}
.main-gallery__image.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-gallery__image.loaded {
  opacity: 1;
}

.hero-subpage-contact {
  position: relative;
  width: 100%;
  height: 5vh;
  min-height: 150px;
  background-image: url("../assets/hero-subpage-img.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-subpage-contact {
    height: 25vh;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-contact {
    height: 3cm;
  }
}
@media (min-width: 1580px) {
  .hero-subpage-contact {
    height: 35vh;
  }
}

.contact-section {
  padding: 48px 0;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 72px 0;
  }
}
@media (min-width: 1440px) {
  .contact-section {
    padding: 96px 0;
  }
}
.contact-section__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-section__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1440px) {
  .contact-section__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
.contact-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1440px) {
  .contact-section__content {
    gap: 32px;
  }
}
.contact-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-section__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact-section__features {
    gap: 24px;
  }
}
.contact-section__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .contact-section__feature {
    gap: 16px;
  }
}
.contact-section__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.contact-section__feature-text {
  margin: 0;
  color: #525252;
  font-weight: 400;
}
.contact-section__feature--phone, .contact-section__feature--email {
  margin: 0;
  color: #525252;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
.contact-section__feature--phone:hover, .contact-section__feature--email:hover {
  color: #009959;
}
.contact-section__button {
  align-self: flex-start;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .contact-section__button {
    margin-top: 16px;
  }
}
.contact-section__media {
  width: 100%;
}
@media (min-width: 1440px) {
  .contact-section__media {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
}
.contact-section__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .contact-section__image {
    max-width: 500px;
    height: auto;
  }
}
@media (min-width: 1440px) {
  .contact-section__image {
    max-width: 600px;
    height: auto;
  }
}

.info-banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px;
  gap: 8px;
  background: #009959;
  color: #fff;
}

.rental-agreement {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.rental-agreement__title {
  margin: 2rem 0;
}

.rental-agreement__section {
  margin-bottom: 25px;
}

.rental-agreement__section-title {
  font-size: 28px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.rental-agreement__subsection {
  margin-bottom: 10px;
}

.rental-agreement__subsection-number {
  font-weight: bold;
  color: #009959;
}

.rental-agreement__subsection-content {
  margin-left: 20px;
  text-align: justify;
  color: #525252;
}

.rental-agreement__list {
  margin: 10px 0;
  padding-left: 20px;
}

.rental-agreement__list-item {
  margin-bottom: 8px;
  text-align: justify;
}

.rental-agreement__sublist {
  margin: 10px 0;
  padding-left: 20px;
}
@media (min-width: 1440px) {
  .rental-agreement__sublist {
    padding-left: 60px;
  }
}

.rental-agreement__sublist-item {
  margin-bottom: 5px;
  list-style-type: disc;
  text-align: justify;
  font-size: 16px;
}

.rental-agreement__signature {
  margin: 2rem 0 4rem 0;
  text-align: right;
  border-top: 1px solid #dadada;
  padding-top: 20px;
}

.rental-agreement__date {
  margin-bottom: 10px;
}

.rental-agreement__name {
  color: #525252;
}

.hero-subpage-terms {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 350px;
  background-image: url("../assets/hero-subpage-img.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-subpage-terms {
    height: 75vh;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-terms {
    height: 45vh;
  }
}
@media (min-width: 1580px) {
  .hero-subpage-terms {
    height: 35vh;
    text-align: center;
  }
}
.hero-subpage-terms__inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background-color: #fff;
  width: 90%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero-subpage-terms__inner {
    max-width: 85%;
    padding: 64px 32px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-terms__inner {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    padding: 64px 32px;
    margin: 0 auto;
    margin-bottom: 180px;
  }
}
@media (min-width: 1580px) {
  .hero-subpage-terms__inner {
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    padding: 64px 32px;
    margin: 0 auto;
    margin-bottom: 180px;
  }
}
.hero-subpage-terms__inner h1 {
  margin-bottom: 1rem;
  color: #000;
}
@media (min-width: 768px) {
  .hero-subpage-terms__inner h1 {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-terms__inner h1 {
    max-width: 620px;
  }
}
.hero-subpage-terms__inner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-subpage-terms__inner-text {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .hero-subpage-terms__inner-text {
    max-width: 620px;
  }
}

.error-section {
  padding: 48px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .error-section {
    padding: 72px 0;
  }
}
/* Desktop breakpoint */
@media (min-width: 1024px) {
  .error-section {
    padding: 96px 0;
  }
}
.error-section__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .error-section__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .error-section__wrapper {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 4rem;
    align-items: start;
  }
}
.error-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .error-section__content {
    gap: 32px;
  }
}
.error-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.error-section__code {
  font-size: 6rem;
  font-weight: 600;
  color: #009959;
  line-height: 1;
  margin: 0;
}

@media (min-width: 768px) {
  .error-section__code {
    font-size: 8rem;
  }
}
.error-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .error-section__title {
    font-size: 2.5rem;
  }
}
.error-section__description {
  font-size: 1.1rem;
  color: #525252;
  margin: 0;
  line-height: 1.6;
}

/* Features list (podobnie jak w contact-section) */
.error-section__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .error-section__features {
    gap: 24px;
  }
}
.error-section__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .error-section__feature {
    gap: 16px;
  }
}
.error-section__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.error-section__feature-text {
  margin: 0;
  color: var(--text-gray);
  font-weight: 400;
}

.error-section__button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Media section */
.error-section__media {
  width: 100%;
}

@media (min-width: 1024px) {
  .error-section__media {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }
}
.error-section__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .error-section__image {
    max-width: 500px;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .error-section__image {
    max-width: 600px;
    height: auto;
  }
}
/* Ilustracja SVG zamiast obrazu */
.error-section__illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-section__illustration {
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .error-section__illustration {
    max-width: 600px;
  }
}
/* Navigation links */
.error-section__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.error-section__nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.error-section__nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.error-section__buttons {
  display: flex;
  gap: 8px;
}

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

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

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

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  font-weight: 500;
}

:focus {
  outline: 2px solid #009959 !important;
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none !important;
}

:focus-visible {
  outline: 2px solid #009959 !important;
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: calc(100% - 24px);
  margin: 0 auto;
  max-width: clamp(100%, 80vw, 1320px);
}
@media (min-width: 768px) {
  .container {
    max-width: 90vw;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 1580px) {
  .container {
    max-width: 1320px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: max-content;
}
.btn-primary {
  background-color: #178242;
  color: white;
  border: 2px solid #178242;
}
.btn-primary:hover {
  background-color: transparent;
  color: #178242;
  cursor: pointer;
}
.btn-secondary {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}
.btn-third {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
}
.btn-third:hover {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  cursor: pointer;
}
.btn-fourth {
  background-color: #fff;
  color: #525252;
  border: 2px solid #e9e9e9;
}
.btn-fourth:hover {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
  cursor: pointer;
}
.btn-fifth {
  background-color: #178242;
  color: white;
  border: 2px solid #178242;
}
.btn-fifth:hover {
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  border: 2px solid white;
}

.highlight {
  position: relative;
  color: #009959;
}
@media (min-width: 1440px) {
  .highlight:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url("../assets/highlight.svg");
  }
}

.highlight-without-color {
  position: relative;
}
@media (min-width: 1440px) {
  .highlight-without-color:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url("../assets/highlight.svg");
  }
}

.bold-text {
  font-weight: 600;
  color: black;
}

/*# sourceMappingURL=style.css.map */
