/* CSS Reset and 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: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1A1A1A;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

a {
  color: #D4691E;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2C5F7F;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #1A1A1A;
}

em {
  font-style: italic;
}

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

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

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

.btn-primary {
  background-color: #D4691E;
  color: #FFFFFF;
  border-color: #D4691E;
}

.btn-primary:hover {
  background-color: #B85515;
  border-color: #B85515;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 105, 30, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F7F;
  border-color: #2C5F7F;
}

.btn-secondary:hover {
  background-color: #2C5F7F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 127, 0.3);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

/* Header */
header {
  background-color: #FFFFFF;
  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: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4691E;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #D4691E;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 1999;
  padding: 80px 40px 40px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2C2C2C;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4691E;
  padding-left: 8px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #1A1A1A;
  margin-bottom: 24px;
  font-size: 48px;
}

.subheadline {
  font-size: 20px;
  color: #D4691E;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.8;
}

.badge {
  display: inline-block;
  background-color: #F4C430;
  color: #1A1A1A;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #E8E8E8;
}

.trust-indicators span {
  font-weight: 600;
  color: #2C5F7F;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1A1A1A;
}

.subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
  margin: -20px auto 40px;
}

/* Categories */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.category {
  display: inline-block;
  background-color: #FFF9F0;
  color: #D4691E;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #F4C430;
  transition: all 0.3s ease;
}

.category:hover {
  background-color: #F4C430;
  color: #1A1A1A;
  transform: translateY(-2px);
}

/* Festival Grid */
.festival-grid,
.services-grid,
.tours-grid,
.festivals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.festival-card,
.service-card,
.tour-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.festival-card:hover,
.service-card:hover,
.tour-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #D4691E;
}

.festival-card h3,
.service-card h3,
.tour-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

.festival-card p,
.service-card p,
.tour-card p {
  color: #4A4A4A;
  flex-grow: 1;
}

.location,
.dates,
.duration {
  font-size: 14px;
  color: #2C5F7F;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #D4691E;
  margin-top: 16px;
  display: block;
}

/* Benefits Grid */
.benefits-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.benefit,
.value {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background-color: #FFF9F0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit:hover,
.value:hover {
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit img,
.value img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.benefit h3,
.value h3 {
  color: #2C5F7F;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit p,
.value p {
  color: #4A4A4A;
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  background-color: #F9F9F9;
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #F4C430;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #2C2C2C;
  font-size: 16px;
  line-height: 1.8;
  flex-grow: 1;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #E8E8E8;
}

.client-info strong {
  color: #1A1A1A;
  font-weight: 600;
}

.client-info span {
  color: #2C5F7F;
  font-size: 14px;
}

/* Filters */
.filters {
  background-color: #FFF9F0;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  background-color: #FFFFFF;
  color: #2C2C2C;
  border: 2px solid #E8E8E8;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #D4691E;
  color: #D4691E;
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: #D4691E;
  color: #FFFFFF;
  border-color: #D4691E;
}

/* Seasonal Calendar */
.season-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.season-tab {
  background-color: #FFFFFF;
  color: #2C5F7F;
  border: 2px solid #2C5F7F;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.season-tab:hover {
  background-color: #2C5F7F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* States Grid */
.states-grid,
.cities-grid,
.regions-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.state-card,
.city-card,
.region,
.category-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.state-card:hover,
.city-card:hover,
.region:hover,
.category-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #F4C430;
  transform: translateY(-4px);
}

.state-card h3,
.city-card h3,
.region h3,
.category-card h3 {
  color: #2C5F7F;
  margin-bottom: 12px;
}

.state-card p,
.city-card p,
.region p,
.category-card p {
  color: #4A4A4A;
  font-size: 14px;
}

/* Tips Grid */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.tip-card {
  background-color: #FFF9F0;
  border-left: 4px solid #D4691E;
  padding: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.tip-card h3 {
  color: #D4691E;
  font-size: 18px;
  margin-bottom: 12px;
}

.tip-card p {
  color: #4A4A4A;
}

/* Services CTA */
.services-cta,
.cta-banner,
.cta-conversion {
  background: linear-gradient(135deg, #2C5F7F 0%, #1E4A5F 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 8px;
}

.services-cta h2,
.cta-banner h2,
.cta-conversion h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.services-cta p,
.cta-banner p,
.cta-conversion p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

.services-highlight ul {
  list-style: none;
  margin: 24px auto;
  max-width: 500px;
  text-align: left;
}

.services-highlight li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #FFFFFF;
}

.services-highlight li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4C430;
  font-weight: 700;
  font-size: 20px;
}

.urgency {
  background-color: #F4C430;
  color: #1A1A1A;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* VIP Benefits */
.vip-benefits {
  background-color: #FFF9F0;
  padding: 60px 20px;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(20% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #D4691E;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  color: #2C5F7F;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #4A4A4A;
  font-size: 14px;
}

/* Inclusions */
.inclusions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.inclusion-col {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.inclusion-col h3 {
  color: #2C5F7F;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F4C430;
}

.inclusion-col ul {
  list-style: none;
  margin-left: 0;
}

.inclusion-col li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: #2C2C2C;
}

.inclusion-col li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4691E;
  font-size: 24px;
  line-height: 1;
}

/* Group Types */
.segments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.segment {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #FFF9F0;
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #F4C430;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.segment:hover {
  border-color: #D4691E;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.segment h3 {
  color: #2C5F7F;
  margin-bottom: 12px;
}

.segment p {
  color: #4A4A4A;
  font-size: 14px;
}

/* Booking Details */
.booking-details ul {
  list-style: none;
  margin: 24px auto;
  max-width: 600px;
}

.booking-details li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C2C2C;
  border-bottom: 1px solid #E8E8E8;
}

.booking-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4691E;
  font-weight: 700;
}

/* Indigenous Specific */
.acknowledgement {
  background-color: #FFF9F0;
  padding: 24px;
  border-left: 4px solid #D4691E;
  margin-bottom: 32px;
  border-radius: 4px;
}

.acknowledgement p {
  color: #2C2C2C;
  font-size: 16px;
  margin-bottom: 0;
}

.protocols-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.protocol {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.protocol h3 {
  color: #2C5F7F;
  font-size: 18px;
  margin-bottom: 12px;
}

.protocol p {
  color: #4A4A4A;
}

/* Impact Stats */
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #D4691E;
  margin-bottom: 12px;
}

.stat p {
  color: #2C2C2C;
  font-size: 16px;
  font-weight: 600;
}

.notice {
  background-color: #FFF9F0;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #F4C430;
  margin-bottom: 24px;
  font-weight: 600;
  color: #2C2C2C;
}

/* About Page */
.mission-statement {
  font-size: 20px;
  color: #2C5F7F;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-weight: 600;
  line-height: 1.8;
}

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

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #D4691E 0%, #B85515 100%);
  border-radius: 8px;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(212, 105, 30, 0.3);
  margin-bottom: 20px;
}

.stat-card .number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card p {
  color: #FFFFFF;
  font-size: 14px;
}

.sustainability-actions ul {
  list-style: none;
  margin: 24px auto;
  max-width: 600px;
}

.sustainability-actions li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2C2C2C;
}

.sustainability-actions li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* Contact Page */
.contact-grid,
.contact-methods .container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #D4691E;
  transform: translateY(-4px);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

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

.contact-card p {
  color: #4A4A4A;
  font-size: 15px;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 32px;
}

.form-info,
.form-container {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.form-info ul {
  list-style: none;
  margin-left: 0;
}

.form-info li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #2C2C2C;
}

.form-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4691E;
  font-weight: 700;
  font-size: 18px;
}

.form-note {
  background-color: #FFF9F0;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #D4691E;
  margin-bottom: 24px;
}

.inquiry-types {
  background-color: #F9F9F9;
  padding: 24px;
  border-radius: 4px;
  margin-top: 20px;
}

.inquiry-types h4 {
  color: #2C5F7F;
  margin-bottom: 16px;
}

.inquiry-types ul {
  list-style: none;
  margin-left: 0;
}

.inquiry-types li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #2C2C2C;
}

.inquiry-types li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4691E;
}

.formats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}

.format {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  text-align: center;
  margin-bottom: 20px;
}

.format h4 {
  color: #2C5F7F;
  font-size: 16px;
  margin-bottom: 8px;
}

.format p {
  color: #4A4A4A;
  font-size: 14px;
}

.cta-text {
  text-align: center;
  font-weight: 600;
  color: #D4691E;
  margin-top: 24px;
  font-size: 18px;
}

/* FAQ */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.faq-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

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

.faq-item p {
  color: #4A4A4A;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 32px;
}

.location-details {
  flex: 1 1 100%;
  min-width: 300px;
}

.location-details p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Legal Pages */
.policy-content,
.gdpr-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section,
.gdpr-section,
.terms-section,
.cookie-category {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8E8E8;
}

.policy-section:last-child,
.gdpr-section:last-child,
.terms-section:last-child,
.cookie-category:last-child {
  border-bottom: none;
}

.policy-section h2,
.gdpr-section h2,
.terms-section h2,
.cookie-category h3 {
  color: #2C5F7F;
  margin-bottom: 16px;
}

.policy-section p,
.gdpr-section p,
.terms-section p,
.cookie-category p {
  color: #2C2C2C;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: #4A4A4A;
  font-style: italic;
  margin-bottom: 24px;
}

.compliance,
.exercise-rights,
.booking-details {
  background-color: #FFF9F0;
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 8px;
}

.booking-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.highlight {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #D4691E;
  margin-bottom: 20px;
}

.highlight h3 {
  color: #2C5F7F;
  font-size: 18px;
  margin-bottom: 12px;
}

.highlight p {
  color: #4A4A4A;
}

/* Thank You Page */
.success-message {
  font-size: 20px;
  color: #2C5F7F;
  font-weight: 600;
  margin-bottom: 16px;
}

.links-grid,
.festivals-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.resource-link,
.festival-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 20px;
}

.resource-link:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #D4691E;
  transform: translateY(-4px);
}

.resource-link h3 {
  color: #2C5F7F;
  margin-bottom: 8px;
}

.resource-link p,
.festival-item p {
  color: #4A4A4A;
  font-size: 14px;
}

.festival-item {
  text-align: center;
  border-left: 4px solid #F4C430;
}

.festival-item h3 {
  color: #D4691E;
  margin-bottom: 8px;
}

.contact-options {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-top: 24px;
  text-align: center;
}

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

.return-home {
  text-align: center;
  margin-top: 60px;
}

/* Footer */
footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333333;
}

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

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

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

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

.footer-section nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #B8B8B8;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #F4C430;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #D4691E;
  color: #FFFFFF;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #B8B8B8;
  border: 1px solid #B8B8B8;
}

.cookie-btn-reject:hover {
  background-color: #333333;
  color: #FFFFFF;
}

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

.cookie-btn-settings:hover {
  background-color: #F4C430;
  color: #1A1A1A;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2C2C2C;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #D4691E;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #2C5F7F;
  margin-bottom: 24px;
}

.cookie-category-toggle {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-category-toggle h3 {
  color: #2C2C2C;
  font-size: 16px;
  margin-bottom: 0;
  flex-grow: 1;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background-color: #E8E8E8;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #D4691E;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-toggle p {
  color: #4A4A4A;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  /* Typography Adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }

  .hero h1 { font-size: 32px; }
  .subheadline { font-size: 18px; }
  .hero p { font-size: 16px; }

  /* Grid Adjustments */
  .festival-card,
  .service-card,
  .tour-card,
  .benefit,
  .value,
  .state-card,
  .city-card,
  .region,
  .category-card,
  .segment,
  .stat,
  .stat-card,
  .contact-card,
  .format {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .testimonial-card,
  .tip-card,
  .protocol,
  .faq-item,
  .inclusion-col,
  .resource-link,
  .festival-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .step {
    flex: 1 1 calc(50% - 32px);
    min-width: calc(50% - 32px);
  }

  /* Section Spacing */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  .hero {
    padding: 60px 16px;
  }

  /* Button Adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
  }

  .cookie-consent-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  /* Contact Form */
  .form-wrapper {
    flex-direction: column;
  }

  .form-info,
  .form-container {
    flex: 1 1 100%;
  }

  /* Location Content */
  .location-content {
    flex-direction: column;
  }

  /* Stats and Highlights */
  .booking-highlights {
    flex-direction: column;
  }

  .highlight {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  /* Further Mobile Refinements */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .hero h1 { font-size: 28px; }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .cookie-consent {
    padding: 16px;
  }

  .cookie-modal-content {
    padding: 20px;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .btn,
  .cta-buttons {
    display: none;
  }

  body {
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}