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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Palatino', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

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

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

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

p {
  margin-bottom: 16px;
  color: #4A4A4A;
  font-size: 16px;
}

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

a:hover {
  color: #5C4523;
}

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

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

/* Header Styles */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DCC4;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  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;
  flex-wrap: wrap;
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #8B6835;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(139, 104, 53, 0.3);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-subtitle {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DCC4 100%);
  padding: 60px 20px;
  border-bottom: 3px solid #D4A574;
}

.breadcrumb {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #8B6835;
}

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

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
}

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

.btn-primary {
  background-color: #8B6835;
  color: #FFFFFF !important;
  border-color: #8B6835;
}

.btn-primary:hover {
  background-color: #5C4523;
  border-color: #5C4523;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 104, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #8B6835;
  border-color: #8B6835;
}

.btn-secondary:hover {
  background-color: #8B6835;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 104, 53, 0.2);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

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

.value-proposition,
.services-overview,
.testimonials,
.mission-statement,
.brand-story,
.values-section,
.featured-articles,
.destination-spotlight {
  background-color: #FFFFFF;
}

.services-detailed,
.team-profiles,
.travel-tips,
.stats-highlights,
.contact-methods,
.legal-content {
  background-color: #FAF8F5;
}

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

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4A4A4A;
}

/* Grid Layouts using Flexbox */
.values-grid,
.services-grid,
.testimonials-grid,
.team-grid,
.articles-grid,
.highlights-grid,
.tips-grid,
.gems-grid,
.methods-grid,
.stats-grid,
.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* Cards */
.value-card,
.service-card,
.testimonial-card,
.team-member,
.article-card,
.highlight,
.tip-card,
.gem-card,
.method-card,
.stat-card,
.step-card,
.suggestion-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 6px;
  border: 1px solid #E8DCC4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card:hover,
.service-card:hover,
.article-card:hover,
.tip-card:hover,
.gem-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 104, 53, 0.15);
  border-color: #D4A574;
}

.service-card,
.team-member,
.stat-card {
  flex: 1 1 calc(33.333% - 16px);
}

.value-card h3,
.service-card h3,
.team-member h3,
.article-card h3,
.highlight h3,
.tip-card h3,
.gem-card h3,
.method-card h3,
.step-card h3,
.suggestion-card h3 {
  color: #8B6835;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card .price,
.method-card .method-value {
  font-size: 28px;
  color: #8B6835;
  font-weight: 600;
  margin: 8px 0;
}

.service-card p,
.team-member p,
.article-card p,
.highlight p,
.tip-card p,
.gem-card p,
.method-card p,
.step-card p,
.suggestion-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A4A4A;
  margin-bottom: 12px;
}

/* Testimonials */
.testimonial-card {
  background-color: #F5EFE7;
  border: 2px solid #D4A574;
  padding: 32px;
  flex: 1 1 100%;
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #2C2C2C;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-size: 15px;
  color: #8B6835;
  font-weight: 600;
  text-align: right;
}

/* Team Members */
.team-member .role {
  font-size: 16px;
  color: #8B6835;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member .expertise {
  font-size: 14px;
  color: #6A6A6A;
  font-style: italic;
  margin-top: 12px;
}

/* Category & Timeline Tags */
.category,
.timeline {
  display: inline-block;
  padding: 6px 12px;
  background-color: #F5EFE7;
  color: #8B6835;
  font-size: 13px;
  border-radius: 3px;
  margin-top: 8px;
  font-weight: 500;
}

/* Stats */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DCC4 100%);
  border: 2px solid #D4A574;
}

.stat-number {
  font-size: 48px;
  color: #8B6835;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* Service Detail with Features List */
.service-detail {
  background-color: #FFFFFF;
  padding: 40px 32px;
  margin-bottom: 32px;
  border-radius: 6px;
  border: 1px solid #E8DCC4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-detail h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.service-detail .price {
  font-size: 32px;
  color: #8B6835;
  font-weight: 600;
  margin-bottom: 16px;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4A4A4A;
  font-size: 16px;
  border-bottom: 1px solid #F5EFE7;
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B6835;
  font-weight: 600;
  font-size: 18px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #8B6835 0%, #5C4523 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-top: 0;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #F5EFE7;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #8B6835 !important;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover {
  background-color: #F5EFE7;
  border-color: #F5EFE7;
}

.cta-banner .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #8B6835;
}

.email-display {
  font-size: 22px;
  color: #F5EFE7;
  font-weight: 600;
  margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
  background-color: #FAF8F5;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 28px 32px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #E8DCC4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  color: #8B6835;
  font-size: 20px;
  margin-bottom: 12px;
}

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

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

.milestone {
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
  padding: 24px;
  background-color: #F5EFE7;
  border-left: 4px solid #8B6835;
  border-radius: 4px;
  font-size: 16px;
  color: #2C2C2C;
}

.milestone strong {
  color: #8B6835;
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

/* Location & Contact Info */
.location-info,
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: space-between;
}

.info-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #F5EFE7;
  padding: 28px;
  border-radius: 6px;
  border: 1px solid #D4A574;
}

.info-block h3 {
  color: #8B6835;
  margin-bottom: 16px;
}

.info-block p {
  color: #2C2C2C;
  line-height: 1.8;
}

/* Contact Form */
.contact-form-section {
  background-color: #FAF8F5;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #E8DCC4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #2C2C2C;
  font-weight: 500;
  font-size: 15px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E8DCC4;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Georgia', serif;
  background-color: #FAF8F5;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #8B6835;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(139, 104, 53, 0.1);
}

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

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-note {
  text-align: center;
  margin-top: 20px;
  color: #6A6A6A;
  font-size: 14px;
}

/* Legal Pages */
.legal-hero {
  background: linear-gradient(135deg, #F5EFE7 0%, #E8DCC4 100%);
  padding: 50px 20px;
  border-bottom: 2px solid #D4A574;
}

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

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: #FAF8F5;
  border-radius: 6px;
  border-left: 4px solid #8B6835;
}

.legal-section h2 {
  text-align: left;
  font-size: 28px;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.legal-section h3 {
  text-align: left;
  font-size: 20px;
  color: #8B6835;
  margin-top: 20px;
  margin-bottom: 12px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-legal {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 32px;
  background-color: #F5EFE7;
  border-radius: 6px;
  border: 2px solid #D4A574;
  text-align: center;
}

.contact-legal h3 {
  color: #8B6835;
  margin-bottom: 16px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #8B6835 0%, #5C4523 100%);
  padding: 100px 20px;
  text-align: center;
}

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

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
}

.thank-you-hero .subtitle,
.thank-you-hero .confirmation {
  color: #F5EFE7;
  font-size: 20px;
  margin-bottom: 16px;
}

.thank-you-hero .btn {
  margin-top: 32px;
}

.next-steps,
.while-you-wait {
  padding: 60px 20px;
  background-color: #FAF8F5;
}

.contact-info-block {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background-color: #F5EFE7;
  border-radius: 6px;
  border: 1px solid #D4A574;
}

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

/* Footer */
footer {
  background-color: #2C2C2C;
  color: #E8DCC4;
  padding: 60px 20px 30px;
  border-top: 3px solid #8B6835;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p,
.footer-links p,
.footer-legal p {
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.7;
}

footer h4 {
  color: #D4A574;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #4A4A4A;
}

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

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

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

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

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

.cookie-banner-text p {
  color: #E8DCC4;
  margin-bottom: 0;
  font-size: 15px;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.cookie-banner .btn-accept {
  background-color: #8B6835;
  color: #FFFFFF;
  border: none;
}

.cookie-banner .btn-accept:hover {
  background-color: #5C4523;
}

.cookie-banner .btn-reject,
.cookie-banner .btn-settings {
  background-color: transparent;
  color: #E8DCC4;
  border: 1px solid #6A6A6A;
}

.cookie-banner .btn-reject:hover,
.cookie-banner .btn-settings:hover {
  background-color: #4A4A4A;
  border-color: #8B6835;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #E8DCC4;
}

.cookie-modal-header h3 {
  color: #1A1A1A;
  font-size: 24px;
  margin-bottom: 8px;
}

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

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

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

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

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

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

.cookie-category h4 {
  color: #8B6835;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #D0D0D0;
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background-color: #8B6835;
}

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

.cookie-toggle:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle.active:after {
  left: 27px;
}

.cookie-category p {
  color: #6A6A6A;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #E8DCC4;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

  .mobile-menu {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .page-hero h1 {
    font-size: 36px;
  }

  /* Section padding */
  section {
    padding: 40px 16px;
  }

  .hero,
  .page-hero {
    padding: 60px 16px;
  }

  .cta-banner {
    padding: 60px 16px;
  }

  /* Card layouts */
  .value-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .article-card,
  .highlight,
  .tip-card,
  .gem-card,
  .method-card,
  .stat-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Forms */
  .form-wrapper {
    padding: 24px 20px;
  }

  /* CTA groups */
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn {
    width: 100%;
  }

  /* Milestones */
  .milestone {
    flex: 1 1 100%;
  }

  /* Location info */
  .location-info,
  .location-details {
    flex-direction: column;
  }

  .info-block {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
  }

  /* Cookie modal */
  .cookie-modal-content {
    max-height: 95vh;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer .btn {
    width: 100%;
  }

  /* Thank you page */
  .thank-you-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  /* Even smaller adjustments */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

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

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

  .service-detail,
  .legal-section,
  .contact-legal {
    padding: 24px 20px;
  }

  .thank-you-hero h1 {
    font-size: 32px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

.value-card,
.service-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background-color: #FFFFFF;
  }
}