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

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

body {
  font-family: 'Baskerville', 'Garamond', 'Georgia', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #3a3a3a;
  background-color: #f8f6f3;
  overflow-x: hidden;
}

/* Elegant Classic Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Baskerville', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2a2a2a;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 38px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #C69A2D;
}

ul {
  list-style: none;
}

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

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

/* Header Styles */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e0d8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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;
}

.main-nav a {
  font-family: 'Baskerville', serif;
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #1F4420;
  border-bottom-color: #C69A2D;
}

.cta-button {
  background-color: #1F4420;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Baskerville', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #1F4420;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #1F4420;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 68, 32, 0.2);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid #2a2a2a;
  font-size: 24px;
  color: #2a2a2a;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #1F4420;
  color: #ffffff;
  border-color: #1F4420;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 2px solid #2a2a2a;
  font-size: 24px;
  color: #2a2a2a;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #1F4420;
  color: #ffffff;
  border-color: #1F4420;
}

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

.mobile-nav a {
  font-family: 'Baskerville', serif;
  font-size: 18px;
  color: #2a2a2a;
  padding: 12px 0;
  border-bottom: 1px solid #e5e0d8;
  transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e4dc 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #C69A2D;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 56px;
  color: #1F4420;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicator {
  font-style: italic;
  color: #7a7a7a;
  font-size: 16px;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Baskerville', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #1F4420;
  color: #ffffff;
  border-color: #1F4420;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #1F4420;
  border-color: #1F4420;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 68, 32, 0.2);
}

.btn-secondary {
  background-color: #ddd2d23d;
  color: #1F4420;
  border-color: #1F4420;
}

.btn-secondary:hover {
  background-color: #1F4420;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 68, 32, 0.2);
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1F4420;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #C69A2D;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #5a5a5a;
}

/* Features Section */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #C69A2D;
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: sepia(30%);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1F4420;
}

.feature-card p {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 1.6;
}

/* Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #C69A2D;
}

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

.service-card p {
  flex-grow: 1;
  color: #5a5a5a;
  line-height: 1.7;
}

.service-card .price {
  font-size: 28px;
  font-weight: 600;
  color: #C69A2D;
  font-family: 'Baskerville', serif;
  margin: 12px 0;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #C69A2D;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.testimonial-card .rating {
  color: #C69A2D;
  font-size: 20px;
  margin-bottom: 16px;
}

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

.testimonial-card .customer-name {
  font-style: normal;
  font-weight: 600;
  color: #1F4420;
  font-size: 15px;
  margin-bottom: 0;
}

/* Stats Section */
.stats {
  background-color: #1F4420;
  color: #ffffff;
  padding: 60px 20px;
}

.stats h2 {
  color: #ffffff;
}

.stats h2::after {
  background-color: #C69A2D;
}

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

.stat-card {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
}

.stat-card h3 {
  font-size: 48px;
  color: #C69A2D;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-card p {
  font-size: 16px;
  color: #e8e4dc;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1F4420 0%, #2a5e2c 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 8px;
  margin: 60px 20px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section h2::after {
  background-color: #C69A2D;
}

.cta-section p {
  color: #e8e4dc;
  font-size: 19px;
  margin-bottom: 32px;
}

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

.contact-info {
  color: #d0ccc4;
  font-size: 16px;
  margin-top: 24px;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 480px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.team-member h3 {
  color: #1F4420;
  margin-bottom: 8px;
}

.team-member .position {
  color: #C69A2D;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.value-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: sepia(30%);
}

/* Text Section */
.text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.text-section ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Service Detail */
.service-detail {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 20px;
}

.service-detail h2::after {
  display: none;
}

.service-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e0d8;
}

.service-info span {
  background-color: #f8f6f3;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  color: #4a4a4a;
}

.service-info .price {
  color: #C69A2D;
  font-weight: 600;
  font-size: 18px;
}

.included {
  background-color: #f8f6f3;
  padding: 24px;
  border-radius: 4px;
  margin: 24px 0;
}

.included h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1F4420;
}

.included ul {
  list-style: none;
}

.included ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

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

/* Packing Lists */
.packing-list {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  margin-bottom: 32px;
}

.packing-list h3 {
  color: #1F4420;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #C69A2D;
}

.packing-list ul {
  list-style: none;
}

.packing-list ul li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid #f3f0ea;
}

.packing-list ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #C69A2D;
  font-size: 20px;
}

/* Guide Items */
.guide-item {
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #1F4420;
  margin-bottom: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guide-item h3 {
  color: #1F4420;
  margin-bottom: 16px;
}

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

.tip-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 28px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tip-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.tip-card h3 {
  color: #1F4420;
  font-size: 20px;
  margin-bottom: 12px;
}

.emergency-info {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #C69A2D;
  margin-top: 32px;
  padding: 20px;
  background-color: #fff8e8;
  border-radius: 4px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background-color: #ffffff;
  border: 2px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #C69A2D;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

/* Stories Grid */
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.story-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border-left: 4px solid #C69A2D;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.story-card p {
  font-style: italic;
  color: #3a3a3a;
  margin-bottom: 16px;
  line-height: 1.7;
}

.story-author {
  font-style: normal;
  font-weight: 600;
  color: #1F4420;
  font-size: 15px;
}

/* Highlights Grid */
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.highlight-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.highlight-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.highlight-item h3 {
  color: #1F4420;
  margin-bottom: 16px;
}

/* Seasons Grid */
.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.season-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 28px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.season-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.season-card h3 {
  color: #1F4420;
  margin-bottom: 16px;
}

/* Contact Methods */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

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

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

.contact-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  filter: sepia(30%);
}

.contact-card h3 {
  color: #1F4420;
  margin-bottom: 16px;
}

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

.info-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 480px;
  background-color: #ffffff;
  padding: 28px;
  border-left: 4px solid #C69A2D;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.info-card h3 {
  color: #1F4420;
  margin-bottom: 12px;
}

/* Form Placeholder */
.form-placeholder {
  background-color: #f8f6f3;
  border: 2px dashed #C69A2D;
  padding: 60px 40px;
  text-align: center;
  border-radius: 8px;
  margin: 40px 0;
}

.form-placeholder p {
  color: #5a5a5a;
  margin-bottom: 12px;
}

/* Map Placeholder */
.map-placeholder {
  background-color: #f8f6f3;
  border: 2px dashed #C69A2D;
  padding: 100px 40px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 32px;
}

.directions {
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  margin-top: 24px;
}

.directions h3 {
  color: #1F4420;
  margin-bottom: 16px;
}

/* Trust Grid */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.trust-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
}

.trust-item h3 {
  font-size: 36px;
  color: #C69A2D;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 15px;
  color: #5a5a5a;
}

/* Legal Pages */
.legal-hero {
  background-color: #1F4420;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.legal-hero p {
  color: #e8e4dc;
  font-size: 18px;
}

.last-updated {
  font-size: 15px;
  color: #d0ccc4;
  margin-top: 12px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
}

.legal-section h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #1F4420;
}

.legal-section h2::after {
  display: none;
}

.legal-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e5e0d8;
}

.cookie-table th {
  background-color: #f8f6f3;
  font-weight: 600;
  color: #1F4420;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #f8f6f3 0%, #e8e4dc 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #C69A2D;
  color: #ffffff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
}

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

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  background-color: #ffffff;
  padding: 28px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.step-item h3 {
  color: #1F4420;
  font-size: 20px;
  margin-bottom: 12px;
}

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

.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.suggestion-card h3 {
  color: #1F4420;
  margin-bottom: 12px;
}

.testimonial.featured {
  max-width: 700px;
  margin: 0 auto;
}

/* Qualifications Grid */
.qualifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.qualification-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 480px;
  background-color: #ffffff;
  padding: 28px;
  border-left: 4px solid #1F4420;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.qualification-item h3 {
  color: #1F4420;
  margin-bottom: 12px;
}

/* Footer Styles */
footer {
  background-color: #2a2a2a;
  color: #d0ccc4;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Baskerville', serif;
}

.footer-column p {
  color: #b0aca4;
  font-size: 15px;
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #d0ccc4;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #C69A2D;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  color: #d0ccc4;
  padding: 8px 16px;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-links a:hover {
  background-color: #C69A2D;
  color: #ffffff;
  border-color: #C69A2D;
}

.footer-bottom {
  border-top: 1px solid #4a4a4a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #b0aca4;
  font-size: 14px;
}

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

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

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

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

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

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

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

.cookie-text p {
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: 1.6;
}

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

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

.cookie-buttons .accept-all {
  background-color: #1F4420;
  color: #ffffff;
}

.cookie-buttons .accept-all:hover {
  background-color: #2a5e2c;
}

.cookie-buttons .reject-all {
  background-color: #e5e0d8;
  color: #2a2a2a;
}

.cookie-buttons .reject-all:hover {
  background-color: #d0ccc4;
}

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

.cookie-buttons .settings:hover {
  background-color: #1F4420;
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  color: #1F4420;
  margin-bottom: 24px;
  text-align: left;
}

.modal-content h2::after {
  display: none;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e5e0d8;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #1F4420;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.modal-buttons button {
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  font-family: 'Baskerville', serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-buttons .save {
  background-color: #1F4420;
  color: #ffffff;
}

.modal-buttons .save:hover {
  background-color: #2a5e2c;
}

.modal-buttons .cancel {
  background-color: #e5e0d8;
  color: #2a2a2a;
}

.modal-buttons .cancel:hover {
  background-color: #d0ccc4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .service-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Flexbox Layouts */
  .feature-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .value-card,
  .tip-card,
  .story-card,
  .highlight-item,
  .season-card,
  .contact-card,
  .info-card,
  .suggestion-card,
  .qualification-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .stat-card,
  .step,
  .step-item,
  .trust-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Sections */
  section {
    padding: 30px 16px;
    margin-bottom: 50px;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  /* Service Detail */
  .service-detail {
    padding: 24px;
  }
  
  .service-info {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  body {
    font-size: 16px;
  }
  
  /* Single column for all cards */
  .stat-card,
  .step,
  .step-item,
  .trust-item {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Hero */
  .hero-cta {
    flex-direction: column;
  }
  
  /* Padding */
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 24px 12px;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
    width: 95%;
  }
  
  /* Legal sections */
  .legal-section {
    padding: 20px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #ffffff;
  }
  
  a {
    color: #000000;
  }
}