/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Garamond', serif;
  color: #2C1810;
  background-color: #FAF8F5;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Garamond', serif;
  font-weight: 400;
  color: #1A0F0A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #3E2723;
}

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

a:hover {
  color: #5D4037;
}

ul {
  list-style: none;
}

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

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

/* Header - Elegant Classic */
header {
  background-color: #F5F1ED;
  border-bottom: 1px solid #D4C4B0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(93, 64, 55, 0.08);
}

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

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

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  color: #5D4037;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #8B4513;
  border-bottom-color: #8B4513;
}

/* CTA Button */
.cta-button,
.btn-primary {
  background-color: #8B4513;
  color: #FFFBF5 !important;
  padding: 12px 32px;
  border-radius: 2px;
  font-size: 16px;
  border: 1px solid #8B4513;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  font-family: 'Georgia', 'Garamond', serif;
  letter-spacing: 0.5px;
}

.cta-button:hover,
.btn-primary:hover {
  background-color: #5D4037;
  border-color: #5D4037;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #8B4513;
  padding: 12px 32px;
  border: 1px solid #8B4513;
  border-radius: 2px;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  font-family: 'Georgia', 'Garamond', serif;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background-color: #8B4513;
  color: #FFFBF5;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: #8B4513;
  color: #FFFBF5;
  border: none;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 2px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #F5F1ED;
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 8px;
}

.mobile-nav a {
  color: #5D4037;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #E0D5C7;
  transition: all 0.3s ease;
}

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

/* Hero Section - Elegant Classic */
.hero {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E0D5C7;
}

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

.hero h1 {
  font-size: 48px;
  color: #1A0F0A;
  margin-bottom: 24px;
  line-height: 1.3;
}

.subheadline {
  font-size: 20px;
  color: #5D4037;
  margin-bottom: 32px;
  font-style: italic;
}

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

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

.trust-indicators span {
  font-size: 15px;
  color: #5D4037;
  letter-spacing: 0.3px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E0D5C7;
}

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

.breadcrumb {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.breadcrumb a {
  color: #8B4513;
}

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

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

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #5D4037;
}

/* Services Preview */
.services-preview {
  background-color: #FFFFFF;
}

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

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

.service-card {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 300px;
  max-width: 360px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
  border-color: #8B4513;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A0F0A;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.price {
  font-size: 24px;
  color: #8B4513;
  font-weight: 600;
  display: block;
  margin-top: auto;
  font-family: 'Georgia', serif;
}

.link-more {
  display: inline-block;
  margin-top: 32px;
  color: #8B4513;
  font-size: 17px;
  border-bottom: 1px solid #8B4513;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.link-more:hover {
  color: #5D4037;
  border-bottom-color: #5D4037;
}

/* Value Proposition */
.value-proposition {
  background-color: #F5F1ED;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.benefit {
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
}

.benefit h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #5D4037;
}

.benefit p {
  font-size: 16px;
  color: #6B5446;
}

/* Featured Destinations */
.featured-destinations {
  background-color: #FFFFFF;
}

.featured-destinations h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.destination-card {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  border: 1px solid #E0D5C7;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
  border-color: #8B4513;
}

.destination-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #1A0F0A;
}

.destination-card p {
  font-size: 16px;
  color: #6B5446;
  font-style: italic;
}

/* Testimonials - CRITICAL: Dark text on light background */
.testimonials {
  background-color: #F5F1ED;
}

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

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

.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 32px;
  border-radius: 2px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 2px 8px rgba(93, 64, 55, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
  color: #2C1810;
  margin-bottom: 16px;
}

.customer-name {
  font-size: 15px;
  color: #5D4037;
  font-weight: 600;
  display: block;
  margin-top: auto;
}

.rating {
  color: #8B4513;
  font-size: 18px;
  display: block;
  margin-top: 8px;
}

/* How It Works */
.how-it-works {
  background-color: #FFFFFF;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #8B4513;
  color: #FFFBF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: #6B5446;
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #E0D5C7;
  border-bottom: 1px solid #E0D5C7;
}

.cta-banner h2,
.cta-section h2 {
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer - Elegant Classic */
footer {
  background-color: #3E2723;
  color: #E0D5C7;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-col h4 {
  color: #D4C4B0;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col a {
  color: #C4B5A0;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-col a:hover {
  color: #FFFBF5;
  padding-left: 4px;
}

.footer-col p {
  color: #B4A594;
  font-size: 15px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #5D4037;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.legal-links a {
  color: #B4A594;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #FFFBF5;
}

.copyright {
  color: #8B7355;
  font-size: 14px;
  text-align: center;
}

/* Trips Overview */
.trips-overview {
  background-color: #FFFFFF;
}

.trips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.trip-card {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 32px;
  border-radius: 2px;
  flex: 1 1 340px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
  border-color: #8B4513;
}

.trip-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A0F0A;
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid #E0D5C7;
  border-bottom: 1px solid #E0D5C7;
}

.trip-meta span {
  font-size: 15px;
  color: #6B5446;
}

.highlights {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlights li {
  font-size: 15px;
  color: #5D4037;
  padding-left: 20px;
  position: relative;
}

.highlights li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-size: 18px;
}

.btn-booking {
  background-color: #8B4513;
  color: #FFFBF5;
  padding: 12px 24px;
  border-radius: 2px;
  text-align: center;
  border: 1px solid #8B4513;
  transition: all 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.btn-booking:hover {
  background-color: #5D4037;
  border-color: #5D4037;
  transform: translateY(-1px);
}

/* Trip Categories */
.trip-categories {
  background-color: #F5F1ED;
}

.trip-categories h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.category-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
  border-color: #8B4513;
}

.category-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 15px;
  color: #6B5446;
}

/* Included Services */
.included-services {
  background-color: #FFFFFF;
}

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

.service-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #5D4037;
}

.service-item p {
  font-size: 15px;
  color: #6B5446;
}

/* FAQ */
.faq {
  background-color: #F5F1ED;
}

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

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

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.08);
}

.faq-item h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #1A0F0A;
}

.faq-item p {
  font-size: 16px;
  color: #5D4037;
  margin-bottom: 0;
}

/* Services Detailed */
.services-detailed {
  background-color: #FFFFFF;
}

.service-detail {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 40px;
  border-radius: 2px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1A0F0A;
}

.service-detail p {
  font-size: 17px;
  margin-bottom: 20px;
}

.meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid #E0D5C7;
  border-bottom: 1px solid #E0D5C7;
}

.meta-info span {
  font-size: 15px;
  color: #6B5446;
}

/* Custom Experiences */
.custom-experiences {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  text-align: center;
  padding: 60px 20px;
}

.custom-experiences h2 {
  margin-bottom: 20px;
}

.custom-experiences p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.benefits-list {
  max-width: 600px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  font-size: 16px;
  color: #5D4037;
  padding-left: 24px;
  position: relative;
  text-align: left;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: 600;
}

/* Gift Vouchers */
.gift-vouchers {
  background-color: #F5F1ED;
  text-align: center;
}

.gift-vouchers h2 {
  margin-bottom: 20px;
}

.gift-vouchers p {
  margin-bottom: 40px;
}

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

.voucher-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 40px 32px;
  border-radius: 2px;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.voucher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.voucher-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* Destinations by Region */
.destinations-by-region {
  background-color: #FFFFFF;
}

.destinations-by-region h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.region-tabs button {
  background-color: transparent;
  border: 1px solid #E0D5C7;
  padding: 12px 24px;
  font-size: 16px;
  color: #5D4037;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.region-tabs button:hover,
.region-tabs .tab-active {
  background-color: #8B4513;
  color: #FFFBF5;
  border-color: #8B4513;
}

.cuisine-highlights {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cuisine-highlights li {
  font-size: 14px;
  color: #6B5446;
  padding-left: 20px;
  position: relative;
}

.cuisine-highlights li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-size: 10px;
}

.btn-explore {
  background-color: transparent;
  color: #8B4513;
  padding: 10px 20px;
  border: 1px solid #8B4513;
  border-radius: 2px;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 16px;
}

.btn-explore:hover {
  background-color: #8B4513;
  color: #FFFBF5;
}

/* Featured Destinations */
.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.featured-card-large {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  border: 1px solid #E0D5C7;
  padding: 40px;
  border-radius: 2px;
  flex: 1 1 450px;
  max-width: 580px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.featured-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.featured-card-large h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1A0F0A;
}

.featured-card-large p {
  font-size: 17px;
  margin-bottom: 24px;
}

/* Destination Guides */
.destination-guides {
  background-color: #F5F1ED;
  text-align: center;
}

.destination-guides h2 {
  margin-bottom: 20px;
}

.destination-guides > .container > p {
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.guide-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 32px;
  border-radius: 2px;
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.guide-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.link-download {
  color: #8B4513;
  font-size: 16px;
  border-bottom: 1px solid #8B4513;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.link-download:hover {
  color: #5D4037;
  border-bottom-color: #5D4037;
}

/* Inspiration CTA */
.inspiration-cta {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  text-align: center;
  padding: 60px 20px;
}

.inspiration-cta h2 {
  margin-bottom: 20px;
}

.inspiration-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
}

/* Company Story */
.company-story {
  background-color: #FFFFFF;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.text-section p {
  font-size: 17px;
  margin-bottom: 20px;
}

/* Mission Values */
.mission-values {
  background-color: #F5F1ED;
}

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

.mission-statement {
  text-align: center;
  font-size: 22px;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #5D4037;
  line-height: 1.6;
}

.mission-values h3 {
  text-align: center;
  font-size: 28px;
  margin: 48px 0 32px;
}

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

.value-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.value-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A0F0A;
}

.value-card p {
  font-size: 15px;
  color: #6B5446;
}

/* Partners Network */
.partners-network {
  background-color: #FFFFFF;
}

.partners-network h2 {
  text-align: center;
  margin-bottom: 20px;
}

.partners-network > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.partner-category {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  margin-bottom: 20px;
}

.partner-category h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.partner-category p {
  font-size: 16px;
  color: #6B5446;
}

/* Sustainability */
.sustainability {
  background-color: #F5F1ED;
  padding: 60px 20px;
}

.sustainability h2 {
  text-align: center;
  margin-bottom: 20px;
}

.sustainability > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.initiatives-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.initiatives-list li {
  font-size: 16px;
  color: #5D4037;
  padding-left: 24px;
  position: relative;
}

.initiatives-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: 600;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  text-align: center;
  padding: 60px 20px;
}

.contact-cta h2 {
  margin-bottom: 20px;
}

.contact-cta p {
  margin-bottom: 8px;
  font-size: 17px;
}

.contact-info {
  max-width: 500px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  font-size: 16px;
  color: #5D4037;
}

/* Blog Filters */
.blog-filters {
  background-color: #F5F1ED;
  padding: 24px 20px;
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-tabs button {
  background-color: transparent;
  border: 1px solid #E0D5C7;
  padding: 10px 20px;
  font-size: 15px;
  color: #5D4037;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.category-tabs button:hover,
.category-tabs .tab-active {
  background-color: #8B4513;
  color: #FFFBF5;
  border-color: #8B4513;
}

/* Featured Post */
.featured-post {
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.large-post-card {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 48px;
  border-radius: 2px;
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.large-post-card:hover {
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.category-badge {
  display: inline-block;
  background-color: #8B4513;
  color: #FFFBF5;
  padding: 6px 16px;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.large-post-card h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1A0F0A;
}

.excerpt {
  font-size: 17px;
  color: #5D4037;
  margin-bottom: 20px;
  line-height: 1.7;
}

.post-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-read {
  background-color: #8B4513;
  color: #FFFBF5;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid #8B4513;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 16px;
}

.btn-read:hover {
  background-color: #5D4037;
  border-color: #5D4037;
  transform: translateY(-1px);
}

/* Blog Grid */
.blog-grid {
  background-color: #FAF8F5;
}

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

.post-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 28px;
  border-radius: 2px;
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.post-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A0F0A;
}

.link-read {
  color: #8B4513;
  font-size: 15px;
  border-bottom: 1px solid #8B4513;
  padding-bottom: 4px;
  display: inline-block;
  margin-top: auto;
  transition: all 0.3s ease;
}

.link-read:hover {
  color: #5D4037;
  border-bottom-color: #5D4037;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  text-align: center;
  padding: 60px 20px;
}

.newsletter-signup h2 {
  margin-bottom: 20px;
}

.newsletter-signup > .container > p {
  margin-bottom: 32px;
  font-size: 18px;
}

.newsletter-form {
  max-width: 500px;
  margin: 32px auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 280px;
  padding: 14px 20px;
  border: 1px solid #E0D5C7;
  border-radius: 2px;
  font-size: 16px;
  background-color: #FFFFFF;
  color: #2C1810;
  font-family: 'Georgia', serif;
}

.email-input:focus {
  outline: none;
  border-color: #8B4513;
}

.btn-subscribe {
  background-color: #8B4513;
  color: #FFFBF5;
  padding: 14px 32px;
  border: 1px solid #8B4513;
  border-radius: 2px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.btn-subscribe:hover {
  background-color: #5D4037;
  border-color: #5D4037;
  transform: translateY(-1px);
}

.privacy-notice {
  font-size: 13px;
  color: #8B7355;
  margin-top: 16px;
}

.privacy-notice a {
  color: #8B4513;
  text-decoration: underline;
}

/* Contact Methods */
.contact-methods {
  background-color: #F5F1ED;
  padding: 40px 20px;
}

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

.contact-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1A0F0A;
}

.contact-card p {
  font-size: 16px;
  margin-bottom: 8px;
}

.availability {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #F5F1ED;
  padding: 40px;
  border: 1px solid #E0D5C7;
  border-radius: 2px;
}

.form-field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 16px;
  color: #5D4037;
  font-weight: 500;
}

.input-field,
.select-field,
.textarea-field {
  padding: 14px 16px;
  border: 1px solid #D4C4B0;
  border-radius: 2px;
  font-size: 16px;
  background-color: #FFFFFF;
  color: #2C1810;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #8B4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #5D4037;
  cursor: pointer;
}

.checkbox-input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-submit {
  background-color: #8B4513;
  color: #FFFBF5 !important;
  padding: 14px 40px;
  border: 1px solid #8B4513;
  border-radius: 2px;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 8px;
  font-family: 'Georgia', serif;
}

.btn-submit:hover {
  background-color: #5D4037;
  border-color: #5D4037;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Office Info */
.office-info {
  background-color: #F5F1ED;
  padding: 60px 20px;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-block {
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
}

.info-block h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #5D4037;
}

.info-block p {
  font-size: 16px;
  line-height: 1.7;
}

/* Response Time */
.response-time {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.info-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #F5F1ED;
  padding: 32px;
  border: 1px solid #E0D5C7;
  border-radius: 2px;
}

.info-box h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

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

/* Legal Content */
.legal-content {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FAF8F5;
  padding: 48px;
  border: 1px solid #E0D5C7;
  border-radius: 2px;
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1A0F0A;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #5D4037;
}

.content-wrapper p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper ul li {
  list-style: disc;
  font-size: 16px;
  color: #5D4037;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #8B4513;
  color: #FFFBF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 600;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.2);
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.confirmation-message {
  font-size: 18px;
  color: #5D4037;
  max-width: 600px;
  margin: 0 auto;
}

/* Next Steps */
.next-steps {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: #6B5446;
  margin-bottom: 0;
}

/* While You Wait */
.while-you-wait {
  background-color: #F5F1ED;
  padding: 60px 20px;
}

.while-you-wait h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.suggestion-card {
  background-color: #FFFFFF;
  border: 1px solid #E0D5C7;
  padding: 32px;
  border-radius: 2px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.suggestion-card h3 {
  font-size: 20px;
  margin-bottom: 0;
}

/* Contact Info Box */
.contact-info-box {
  background: linear-gradient(to bottom, #F5F1ED, #FAF8F5);
  padding: 60px 20px;
  text-align: center;
}

.contact-info-box h2 {
  margin-bottom: 16px;
}

.contact-info-box > .container > p {
  margin-bottom: 32px;
  font-size: 17px;
}

.contact-details {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details p {
  font-size: 16px;
  color: #5D4037;
}

/* Navigation Links */
.navigation-links {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.navigation-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.link-card {
  background-color: #F5F1ED;
  border: 1px solid #E0D5C7;
  padding: 32px 28px;
  border-radius: 2px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.12);
}

.link-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.link-card p {
  font-size: 15px;
  color: #6B5446;
  margin-bottom: 0;
}

.btn-link {
  color: #8B4513;
  font-size: 16px;
  border-bottom: 1px solid #8B4513;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #5D4037;
  border-bottom-color: #5D4037;
}

/* Return Home */
.return-home {
  background-color: #FFFFFF;
  padding: 40px 20px;
  text-align: center;
}

.return-home {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cookie Consent Banner - CRITICAL */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #3E2723;
  color: #E0D5C7;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #D4C4B0;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: 'Georgia', serif;
}

.cookie-btn-accept {
  background-color: #8B4513;
  color: #FFFBF5;
  border-color: #8B4513;
}

.cookie-btn-accept:hover {
  background-color: #5D4037;
  border-color: #5D4037;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #E0D5C7;
  border-color: #6B5446;
}

.cookie-btn-reject:hover {
  background-color: #6B5446;
  color: #FFFBF5;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #D4C4B0;
  border-color: #8B7355;
}

.cookie-btn-settings:hover {
  background-color: #8B7355;
  color: #FFFBF5;
}

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

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

.cookie-settings-content {
  background-color: #FAF8F5;
  border: 1px solid #E0D5C7;
  border-radius: 2px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #5D4037;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content h2 {
  margin-bottom: 24px;
  color: #1A0F0A;
}

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

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: #5D4037;
}

.cookie-category p {
  font-size: 15px;
  color: #6B5446;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

.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: #D4C4B0;
  transition: 0.3s;
  border-radius: 28px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #8B4513;
}

.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-settings-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* Section adjustments */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Cards and grids */
  .services-grid,
  .benefits-grid,
  .destinations-grid,
  .trips-grid,
  .categories-grid,
  .values-grid,
  .posts-grid,
  .contact-cards,
  .office-details,
  .steps-grid,
  .suggestions-grid,
  .quick-links-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .destination-card,
  .trip-card,
  .category-card,
  .value-card,
  .post-card,
  .contact-card,
  .step-card,
  .suggestion-card,
  .link-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Steps timeline */
  .steps-timeline {
    flex-direction: column;
    gap: 24px;
  }
  
  .step {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    text-align: center;
    align-items: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Content wrapper */
  .content-wrapper {
    padding: 24px;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-settings-content {
    padding: 24px;
  }
  
  /* CTA buttons */
  .cta-buttons,
  .hero-cta {
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .main-nav {
    gap: 24px;
  }
  
  .services-grid,
  .destinations-grid,
  .trips-grid {
    justify-content: center;
  }
}

/* Smooth transitions and animations */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

a,
button,
.service-card,
.destination-card,
.trip-card,
.testimonial-card {
  transition: all 0.3s ease;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-settings-modal,
  header,
  footer,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}