/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2B6CAA;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

strong {
  font-weight: 600;
  color: #2B6CAA;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2B6CAA;
  color: #fff;
  box-shadow: 0 4px 12px rgba(43, 108, 170, 0.3);
}

.btn-primary:hover {
  background-color: #234d7a;
  box-shadow: 0 6px 16px rgba(43, 108, 170, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #F4D03F;
  color: #2B6CAA;
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.btn-secondary:hover {
  background-color: #d9b835;
  box-shadow: 0 6px 16px rgba(244, 208, 63, 0.4);
  transform: translateY(-2px);
}

.btn-text {
  background-color: transparent;
  color: #2B6CAA;
  padding: 8px 16px;
  border: 2px solid #2B6CAA;
}

.btn-text:hover {
  background-color: #E8F4F8;
  border-color: #234d7a;
}

/* ============================================
   HEADER
   ============================================ */

header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2B6CAA;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #E8F4F8;
  color: #234d7a;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2B6CAA;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(43, 108, 170, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #234d7a;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F4D03F;
  color: #2B6CAA;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #d9b835;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2B6CAA;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #E8F4F8;
}

.mobile-nav a:hover {
  background-color: #2B6CAA;
  color: #fff;
  transform: translateX(8px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #fff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #2B6CAA;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background-color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #2B6CAA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background-color: #fff;
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background-color: #E8F4F8;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(43, 108, 170, 0.2);
  background-color: #fff;
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  color: #2B6CAA;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(43, 108, 170, 0.2);
}

.service-card h3 {
  color: #2B6CAA;
  margin-bottom: 16px;
}

.service-card p {
  color: #555;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #F4D03F;
  margin-bottom: 20px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location {
  background-color: #fff;
  padding: 60px 20px;
}

.location h2 {
  text-align: center;
  margin-bottom: 24px;
}

.location > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
}

.location-highlights {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.highlight {
  background-color: #2B6CAA;
  color: #fff;
  padding: 24px 32px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(43, 108, 170, 0.3);
}

.highlight strong {
  display: block;
  font-size: 32px;
  color: #F4D03F;
  margin-bottom: 8px;
}

.nearby-attractions {
  background-color: #E8F4F8;
  padding: 32px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.nearby-attractions h3 {
  margin-bottom: 20px;
}

.nearby-attractions ul {
  list-style: none;
}

.nearby-attractions li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(43, 108, 170, 0.1);
  color: #555;
}

.nearby-attractions li:last-child {
  border-bottom: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #E8F4F8 0%, #fff 100%);
  padding: 60px 20px;
  border-radius: 50px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #F4D03F;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #333;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #2B6CAA;
  font-size: 16px;
}

.testimonial-author span {
  color: #888;
  font-size: 14px;
}

/* ============================================
   BOOKING CTA SECTION
   ============================================ */

.booking-cta {
  background-color: #2B6CAA;
  color: #fff;
  padding: 60px 20px;
  border-radius: 50px;
  text-align: center;
}

.booking-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.booking-cta p {
  font-size: 18px;
  margin-bottom: 32px;
}

.booking-cta .btn-primary {
  background-color: #F4D03F;
  color: #2B6CAA;
}

.booking-cta .btn-primary:hover {
  background-color: #fff;
}

.contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  margin-bottom: 0;
  font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1a4870;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #F4D03F;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #E8F4F8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #E8F4F8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #F4D03F;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(232, 244, 248, 0.2);
}

.footer-bottom p {
  color: #E8F4F8;
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, #E8F4F8 0%, #fff 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  border-radius: 0 0 50px 50px;
}

.breadcrumbs {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #2B6CAA;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #234d7a;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
}

.last-updated {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* ============================================
   ACCOMMODATIONS PAGE
   ============================================ */

.accommodations h2 {
  margin-bottom: 32px;
  margin-top: 48px;
}

.accommodation-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.accommodation-content h3 {
  color: #2B6CAA;
  margin-bottom: 16px;
}

.accommodation-content p {
  color: #555;
  margin-bottom: 24px;
}

.amenities {
  background-color: #E8F4F8;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.amenities h4 {
  color: #2B6CAA;
  margin-bottom: 12px;
}

.amenities ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.amenities li {
  padding-left: 24px;
  position: relative;
  color: #555;
}

.amenities li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4D03F;
  font-weight: bold;
}

.capacity-info {
  margin-bottom: 24px;
}

.capacity-info p {
  margin-bottom: 8px;
  font-size: 16px;
}

.accommodation-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2B6CAA;
  margin-bottom: 24px;
}

/* ============================================
   AMENITIES OVERVIEW
   ============================================ */

.amenities-overview {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.amenity-item {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 150px;
  max-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(43, 108, 170, 0.2);
}

.amenity-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.amenity-item p {
  font-size: 14px;
  font-weight: 600;
  color: #2B6CAA;
  margin-bottom: 0;
}

/* ============================================
   BOOKING PROCESS
   ============================================ */

.booking-process {
  background-color: #fff;
  padding: 60px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background-color: #E8F4F8;
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  background-color: #F4D03F;
  color: #2B6CAA;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
}

.step h3 {
  color: #2B6CAA;
  margin-bottom: 12px;
}

.step p {
  color: #555;
  margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F4D03F;
}

.faq-item h3 {
  color: #2B6CAA;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #555;
  margin-bottom: 0;
}

/* ============================================
   CONTACT CTA
   ============================================ */

.contact-cta {
  background-color: #2B6CAA;
  color: #fff;
  padding: 60px 20px;
  border-radius: 50px;
  text-align: center;
}

.contact-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-options p {
  margin-bottom: 0;
  font-size: 16px;
}

/* ============================================
   ACTIVITIES PAGES
   ============================================ */

.water-activities,
.boat-tours,
.equipment-rental {
  padding: 60px 20px;
}

.activities-grid,
.tour-schedule,
.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.activity-card,
.tour-card,
.equipment-item {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 280px;
  max-width: 380px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.activity-card:hover,
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(43, 108, 170, 0.2);
}

.activity-card h3,
.tour-card h3 {
  color: #2B6CAA;
  margin-bottom: 16px;
}

.activity-card p,
.tour-card p {
  color: #555;
  margin-bottom: 12px;
}

.activity-card .price,
.tour-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #F4D03F;
  margin-top: auto;
  margin-bottom: 20px;
}

.equipment-item {
  background-color: #E8F4F8;
  padding: 24px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.equipment-item h3 {
  color: #2B6CAA;
  font-size: 18px;
  margin-bottom: 12px;
}

.equipment-item p {
  color: #555;
  font-weight: 600;
  margin-bottom: 0;
}

/* ============================================
   NEARBY ATTRACTIONS LIST
   ============================================ */

.nearby-attractions {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.attractions-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.attractions-list li {
  background-color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #555;
  border-left: 4px solid #F4D03F;
}

.attractions-list strong {
  color: #2B6CAA;
}

/* ============================================
   SPA PACKAGE
   ============================================ */

.spa-package {
  background: linear-gradient(135deg, #2B6CAA 0%, #1a4870 100%);
  color: #fff;
  padding: 60px 20px;
  border-radius: 50px;
  text-align: center;
}

.spa-package h2 {
  color: #fff;
  margin-bottom: 24px;
}

.spa-package p {
  font-size: 18px;
  margin-bottom: 24px;
}

.spa-package .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #F4D03F;
  margin-bottom: 32px;
}

/* ============================================
   PRICING PAGES
   ============================================ */

.pricing-overview {
  background-color: #E8F4F8;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.pricing-notice {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-notice p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.discount-info {
  font-weight: 600;
  color: #2B6CAA;
  background-color: #F4D03F;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
}

.accommodation-pricing,
.activities-pricing,
.packages-pricing,
.additional-services,
.payment-info,
.corporate-offer {
  padding: 60px 20px;
}

.pricing-table {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #E8F4F8;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-cell {
  flex: 1 1 250px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #555;
}

.pricing-cell:first-child {
  background-color: #E8F4F8;
  font-weight: 600;
  color: #2B6CAA;
}

.additional-info {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 16px;
  font-style: italic;
}

.pricing-cards,
.package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pricing-card,
.package-card {
  background-color: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  flex: 1 1 300px;
  max-width: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.pricing-card h3,
.package-card h3 {
  color: #2B6CAA;
  margin-bottom: 24px;
}

.price-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2B6CAA;
  margin-bottom: 16px;
}

.pricing-card p,
.package-card p {
  color: #555;
  margin-bottom: 12px;
}

.package-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2B6CAA;
  margin-bottom: 16px;
}

.savings {
  font-weight: 600;
  color: #F4D03F;
  background-color: #2B6CAA;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
}

.services-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-list li {
  padding: 16px 20px;
  background-color: #E8F4F8;
  border-radius: 12px;
  color: #555;
  border-left: 4px solid #2B6CAA;
}

.payment-details {
  max-width: 800px;
  margin: 0 auto;
  background-color: #E8F4F8;
  padding: 40px;
  border-radius: 20px;
}

.payment-details h3 {
  color: #2B6CAA;
  margin-bottom: 16px;
  margin-top: 24px;
}

.payment-details h3:first-child {
  margin-top: 0;
}

.payment-details p,
.payment-details ul {
  color: #555;
}

.payment-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.payment-details li {
  padding-left: 20px;
  position: relative;
}

.payment-details li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F4D03F;
  font-weight: bold;
  font-size: 20px;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.our-story,
.our-mission,
.why-us,
.achievements {
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.mission-statement {
  font-size: 20px;
  font-weight: 600;
  color: #2B6CAA;
  text-align: center;
  padding: 32px;
  background-color: #E8F4F8;
  border-radius: 20px;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(43, 108, 170, 0.2);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.value-card h3 {
  color: #2B6CAA;
  margin-bottom: 12px;
}

.value-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.reason-item {
  background-color: #E8F4F8;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #F4D03F;
}

.reason-item h3 {
  color: #2B6CAA;
  margin-bottom: 12px;
}

.reason-item p {
  color: #555;
  margin-bottom: 0;
}

.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  background-color: #2B6CAA;
  color: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 4px 16px rgba(43, 108, 170, 0.3);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #F4D03F;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: #E8F4F8;
  margin-bottom: 0;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-categories {
  background-color: #E8F4F8;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

.category-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #fff;
  color: #2B6CAA;
  border: 2px solid #2B6CAA;
  padding: 10px 24px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #2B6CAA;
  color: #fff;
}

.accommodations-showcase,
.facilities-showcase,
.activities-showcase,
.location-showcase {
  padding: 60px 20px;
}

.visual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.gallery-item {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 280px;
  max-width: 380px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(43, 108, 170, 0.2);
}

.image-placeholder {
  background-color: #E8F4F8;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.image-placeholder p {
  color: #2B6CAA;
  font-style: italic;
  margin-bottom: 0;
}

.caption {
  padding: 16px;
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

.view-details {
  display: block;
  padding: 12px 16px;
  background-color: #F4D03F;
  color: #2B6CAA;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-details:hover {
  background-color: #d9b835;
}

.seasonal-views {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.season-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.season-tab {
  background-color: #fff;
  color: #2B6CAA;
  border: 2px solid #2B6CAA;
  padding: 12px 28px;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.season-tab:hover,
.season-tab.active {
  background-color: #2B6CAA;
  color: #fff;
}

.seasonal-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.seasonal-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  padding: 60px 20px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background-color: #E8F4F8;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(43, 108, 170, 0.2);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: #2B6CAA;
  margin-bottom: 16px;
}

.contact-card p {
  color: #555;
  margin-bottom: 8px;
}

.contact-card a {
  color: #2B6CAA;
  font-weight: 600;
}

.contact-card a:hover {
  color: #234d7a;
}

.contact-form-section {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-placeholder {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-placeholder p {
  color: #555;
  margin-bottom: 16px;
}

.form-placeholder ul {
  list-style: none;
  margin-bottom: 32px;
}

.form-placeholder li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #555;
}

.form-placeholder li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F4D03F;
  font-weight: bold;
  font-size: 20px;
}

.location-map {
  padding: 60px 20px;
}

.map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.address-details {
  flex: 1 1 300px;
}

.address-details h3 {
  color: #2B6CAA;
  margin-bottom: 16px;
}

.address-details p {
  color: #555;
  margin-bottom: 16px;
}

.address-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.address-details li {
  padding-left: 20px;
  position: relative;
  color: #555;
}

.address-details li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #F4D03F;
}

.map-placeholder {
  flex: 1 1 400px;
  background-color: #E8F4F8;
  padding: 40px;
  border-radius: 20px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-placeholder p {
  color: #2B6CAA;
  font-style: italic;
  margin-bottom: 0;
}

.office-hours {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto 24px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.hours-table tr {
  border-bottom: 1px solid #E8F4F8;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 16px 24px;
  color: #555;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #2B6CAA;
}

.special-notice {
  text-align: center;
  font-weight: 600;
  color: #2B6CAA;
  background-color: #F4D03F;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  margin: 0 auto;
}

.faq-contact {
  padding: 60px 20px;
}

.contact-prompt {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

.contact-prompt a {
  color: #2B6CAA;
  font-weight: 600;
}

.contact-prompt a:hover {
  color: #234d7a;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.legal-content li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
}

.legal-content li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2B6CAA;
  font-weight: bold;
  font-size: 20px;
}

.user-rights-summary,
.cookies-table,
.important-info {
  background-color: #E8F4F8;
  padding: 60px 20px;
  border-radius: 50px;
}

.cookies-list {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.cookies-list thead {
  background-color: #2B6CAA;
  color: #fff;
}

.cookies-list th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.cookies-list td {
  padding: 12px 16px;
  border-bottom: 1px solid #E8F4F8;
  color: #555;
}

.cookies-list tbody tr:last-child td {
  border-bottom: none;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.info-box {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
  color: #2B6CAA;
  font-size: 16px;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 18px;
  font-weight: 600;
  color: #F4D03F;
  margin-bottom: 0;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.confirmation-hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #fff 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
}

.confirmation-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  margin: 0 auto 32px;
}

.success-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.confirmation-message {
  font-size: 18px;
  color: #555;
  margin-bottom: 0;
}

.next-steps,
.alternative-contact,
.explore-more {
  padding: 60px 20px;
}

.next-steps .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.next-steps .step {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.step-icon {
  margin: 0 auto 20px;
}

.step-icon img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.link-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  background-color: #E8F4F8;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(43, 108, 170, 0.2);
}

.link-card h3 {
  color: #2B6CAA;
  margin-bottom: 12px;
}

.link-card p {
  color: #555;
  margin-bottom: 20px;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a4870;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 400px;
}

.cookie-banner-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #F4D03F;
  color: #2B6CAA;
}

.cookie-accept:hover {
  background-color: #d9b835;
}

.cookie-reject {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #E8F4F8;
  border: 1px solid #E8F4F8;
}

.cookie-settings:hover {
  background-color: rgba(232, 244, 248, 0.1);
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: #2B6CAA;
  margin-bottom: 0;
}

.cookie-modal-close {
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #2B6CAA;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #E8F4F8;
}

.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cookie-preference {
  padding: 20px;
  background-color: #E8F4F8;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-preference-info {
  flex: 1;
}

.cookie-preference-info h3 {
  color: #2B6CAA;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-preference-info p {
  color: #555;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2B6CAA;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-preferences {
  background-color: #2B6CAA;
  color: #fff;
}

.cookie-save-preferences:hover {
  background-color: #234d7a;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Grid Layouts */
  .benefits-grid,
  .services-grid,
  .activities-grid,
  .tour-schedule,
  .pricing-cards,
  .package-cards,
  .values-grid,
  .contact-cards,
  .visual-grid,
  .link-cards,
  .info-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .activity-card,
  .tour-card,
  .pricing-card,
  .package-card,
  .value-card,
  .contact-card,
  .gallery-item,
  .link-card,
  .info-box {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  /* Map Info */
  .map-info {
    flex-direction: column;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Tables */
  .pricing-row {
    flex-direction: column;
  }
  
  .pricing-cell {
    padding: 16px;
  }
}

/* ============================================
   TABLET RESPONSIVE
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

*:focus {
  outline: 2px solid #F4D03F;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #F4D03F;
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 16px;
  background-color: #2B6CAA;
  color: white;
  text-decoration: none;
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}