/* ============================================
   VitalBalance CSS - Elegant Classic Design
   ============================================ */

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

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

body {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Elegant Classic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A5028;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

a:hover {
  color: #2D7A3E;
}

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

li {
  margin-bottom: 8px;
}

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

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

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Header - Elegant Classic */
header {
  background-color: #ffffff;
  border-bottom: 2px solid #e8e4de;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 80, 40, 0.08);
}

.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: 'Garamond', serif;
  font-size: 16px;
  color: #2c2c2c;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #1A5028;
  border-bottom-color: #C67D1B;
}

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

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

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

.btn-primary:hover {
  background-color: #2D7A3E;
  border-color: #2D7A3E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 80, 40, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1A5028;
  border-color: #1A5028;
}

.btn-secondary:hover {
  background-color: #1A5028;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 80, 40, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: #2c2c2c;
  border-color: #c9c3ba;
}

.btn-outline:hover {
  background-color: #1A5028;
  color: #ffffff;
  border-color: #1A5028;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  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: #1A5028;
  transform: rotate(90deg);
}

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

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

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

/* Hero Section - Elegant */
.hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
  padding: 80px 20px;
  border-bottom: 1px solid #e8e4de;
  margin-bottom: 60px;
}

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

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

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

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A5028;
}

.trust-label {
  font-size: 14px;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Internal Pages */
.hero-internal {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e8e4de;
}

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
  text-align: center;
}

.hero-internal .hero-subheadline {
  text-align: center;
  font-size: 18px;
  color: #5a5a5a;
}

.breadcrumb {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #7a7a7a;
}

.breadcrumb a {
  color: #7a7a7a;
}

.breadcrumb a:hover {
  color: #1A5028;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
}

/* Sections with Elegant Spacing */
.section-intro {
  text-align: center;
  font-size: 20px;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.benefit-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.12);
  border-color: #C67D1B;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

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

.benefit-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
}

/* Services Grid */
.services-overview {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background-color: #faf8f5;
  border: 2px solid #e8e4de;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26, 80, 40, 0.15);
  border-color: #1A5028;
}

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

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

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A5028;
  margin: 8px 0;
}

/* Process Steps */
.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #1A5028;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid #C67D1B;
}

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

.step p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
}

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

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

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

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

.testimonial-rating {
  font-size: 20px;
  color: #C67D1B;
  margin-bottom: 12px;
}

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

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

.testimonial-author strong {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #1A5028;
}

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

/* CTA Banner */
.cta-banner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A5028 0%, #2D7A3E 100%);
  color: #ffffff;
  text-align: center;
  margin: 60px 0;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

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

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

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

/* Contact Info */
.contact-info {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

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

.contact-item {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.contact-item h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
}

.contact-item a {
  color: #1A5028;
}

.contact-item a:hover {
  color: #2D7A3E;
}

/* Footer - Classic */
footer {
  background-color: #2c2c2c;
  color: #c9c3ba;
  padding: 60px 20px 24px;
  border-top: 3px solid #C67D1B;
}

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

.footer-brand {
  flex: 1 1 300px;
  max-width: 350px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  color: #c9c3ba;
}

.footer-links {
  flex: 2 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

.footer-column a {
  color: #c9c3ba;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #C67D1B;
  padding-left: 4px;
}

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

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

/* About Us / Uber Uns Page */
.mission {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.mission-statement {
  font-size: 20px;
  line-height: 1.8;
  color: #2c2c2c;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-style: italic;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.value-item {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 28px;
  background-color: #faf8f5;
  border-left: 3px solid #C67D1B;
}

.value-item h3 {
  font-size: 22px;
  color: #1A5028;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
}

/* Story Section */
.story {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

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

.story-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 20px;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 28px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  text-align: center;
  transition: all 0.3s ease;
}

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

.team-member h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 8px;
}

.member-role {
  font-size: 15px;
  color: #C67D1B;
  font-style: italic;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Approach / Pillars */
.approach {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 48px;
}

.pillar-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 28px;
  background-color: #faf8f5;
  border-top: 3px solid #C67D1B;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.12);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

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

.pillar-card p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Credentials */
.credentials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

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

.credentials-list {
  list-style: none;
  padding: 0;
}

.credentials-list li {
  font-size: 18px;
  padding: 16px 0 16px 40px;
  position: relative;
  color: #2c2c2c;
  border-bottom: 1px solid #e8e4de;
}

.credentials-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background-color: #1A5028;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
  background-color: #ffffff;
}

.service-detail {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
}

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

.service-detail > p {
  font-size: 17px;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 24px;
}

.service-benefits {
  margin: 24px 0;
  padding: 24px;
  background-color: #ffffff;
  border-left: 3px solid #C67D1B;
}

.service-benefits h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 16px;
}

.service-benefits ul {
  list-style: none;
  padding: 0;
}

.service-benefits li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px;
  color: #2c2c2c;
}

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

.service-detail .service-price {
  font-size: 32px;
  margin: 24px 0;
}

/* Services Intro */
.services-intro {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.benefits-highlight {
  max-width: 700px;
  margin: 0 auto;
}

.benefits-highlight ul {
  list-style: none;
  padding: 0;
}

.benefits-highlight li {
  font-size: 17px;
  padding: 12px 0 12px 36px;
  position: relative;
  color: #2c2c2c;
}

.benefits-highlight li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A5028;
  font-weight: bold;
  font-size: 20px;
}

/* Packages */
.packages {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.package-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 36px;
  background-color: #faf8f5;
  border: 2px solid #e8e4de;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26, 80, 40, 0.15);
  border-color: #1A5028;
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #C67D1B;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card h3 {
  font-size: 26px;
  color: #1A5028;
  margin-bottom: 12px;
  margin-top: 12px;
}

.package-card > p {
  font-size: 16px;
  color: #5a5a5a;
  margin-bottom: 16px;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  flex-grow: 1;
}

.package-includes li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: #2c2c2c;
}

.package-includes li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A5028;
  font-weight: bold;
  font-size: 18px;
}

.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A5028;
  margin: 12px 0;
}

.savings-badge {
  background-color: #1A5028;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Booking Process */
.booking-process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

/* FAQ */
.faq {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.faq-item {
  padding: 28px;
  background-color: #faf8f5;
  border-left: 3px solid #C67D1B;
}

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

.faq-item p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Health Tips Page */
.tips-categories {
  padding: 40px 20px;
  background-color: #faf8f5;
}

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

.category-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #2c2c2c;
  border: 1px solid #e8e4de;
  font-family: 'Garamond', serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #1A5028;
  color: #ffffff;
  border-color: #1A5028;
}

/* Featured Tips */
.featured-tips {
  padding: 60px 20px;
  background-color: #ffffff;
}

.featured-tips h2 {
  text-align: center;
  margin-bottom: 32px;
}

.featured-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #faf8f5;
  border: 2px solid #C67D1B;
  position: relative;
}

.tip-category-badge {
  display: inline-block;
  background-color: #1A5028;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

.featured-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.read-more {
  color: #1A5028;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #2D7A3E;
  transform: translateX(4px);
}

/* Tips Grid */
.tips-grid {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.tips-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.tip-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 28px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.12);
  border-color: #1A5028;
}

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

.tip-card p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
  flex-grow: 1;
}

.tip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e8e4de;
}

.reading-time {
  font-size: 13px;
  color: #7a7a7a;
  font-style: italic;
}

/* Quick Tips */
.quick-tips {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.quick-tip-item {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 24px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-tip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(26, 80, 40, 0.1);
}

.quick-tip-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.quick-tip-item p {
  font-size: 15px;
  color: #2c2c2c;
  line-height: 1.5;
  margin: 0;
}

/* Expert Corner */
.expert-corner {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

.expert-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 2px solid #e8e4de;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expert-info h3 {
  font-size: 24px;
  color: #1A5028;
  margin-bottom: 4px;
}

.expert-role {
  font-size: 16px;
  color: #C67D1B;
  font-style: italic;
}

.expert-advice p {
  font-size: 18px;
  line-height: 1.8;
  color: #2c2c2c;
  font-style: italic;
  padding: 24px;
  background-color: #faf8f5;
  border-left: 3px solid #C67D1B;
}

/* Newsletter */
.newsletter {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter > p {
  font-size: 17px;
  color: #5a5a5a;
  margin-bottom: 32px;
}

.newsletter-form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
}

.form-note {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

/* Success Stories Page */
.impact-stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #1A5028;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Story */
.featured-story {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.story-featured {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #faf8f5;
  border: 2px solid #C67D1B;
}

.story-header h3 {
  font-size: 26px;
  color: #1A5028;
  margin-bottom: 8px;
}

.story-meta {
  font-size: 15px;
  color: #7a7a7a;
  margin-bottom: 24px;
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #2c2c2c;
  font-style: italic;
  margin-bottom: 24px;
}

.story-achievements {
  margin-top: 24px;
  padding: 24px;
  background-color: #ffffff;
  border-left: 3px solid #1A5028;
}

.story-achievements h4 {
  font-size: 18px;
  color: #1A5028;
  margin-bottom: 16px;
}

.story-achievements ul {
  list-style: none;
  padding: 0;
}

.story-achievements li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 16px;
  color: #2c2c2c;
}

.story-achievements li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A5028;
  font-weight: bold;
  font-size: 18px;
}

/* Success Stories Grid */
.success-stories {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.story-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.12);
  border-color: #1A5028;
}

.service-badge {
  display: inline-block;
  background-color: #C67D1B;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.story-card h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 4px;
}

.story-location {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 8px;
}

.story-summary {
  font-size: 16px;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 12px;
}

.story-rating {
  font-size: 18px;
  color: #C67D1B;
  margin-top: 8px;
}

/* Transformation Types */
.transformation-types {
  padding: 60px 20px;
  background-color: #ffffff;
}

.transformation-types h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.tab-btn {
  padding: 12px 24px;
  background-color: #faf8f5;
  color: #2c2c2c;
  border: 1px solid #e8e4de;
  font-family: 'Garamond', serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #1A5028;
  color: #ffffff;
  border-color: #1A5028;
}

/* Reviews Section */
.reviews {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

.overall-rating {
  text-align: center;
  margin-bottom: 48px;
}

.rating-display {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #1A5028;
  margin-bottom: 8px;
}

.overall-rating p {
  font-size: 16px;
  color: #7a7a7a;
}

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

.review-item {
  padding: 28px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-left: 3px solid #C67D1B;
}

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

.review-header strong {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1A5028;
}

.review-date {
  font-size: 13px;
  color: #7a7a7a;
  font-style: italic;
}

.review-rating {
  font-size: 16px;
  color: #C67D1B;
  margin-bottom: 12px;
}

.review-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  margin: 0;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

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

.contact-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.12);
  border-color: #1A5028;
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
}

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

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

.form-intro {
  text-align: center;
  font-size: 16px;
  color: #5a5a5a;
  max-width: 600px;
  margin: 0 auto 40px;
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
}

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

.form-field label {
  display: block;
  font-family: 'Garamond', serif;
  font-size: 16px;
  color: #2c2c2c;
  margin-bottom: 8px;
  font-weight: 600;
}

.input-placeholder {
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid #c9c3ba;
  border-radius: 2px;
}

.textarea-placeholder {
  width: 100%;
  height: 140px;
  background-color: #ffffff;
  border: 1px solid #c9c3ba;
  border-radius: 2px;
}

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

.form-placeholder button {
  margin-top: 8px;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

.contact-info-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.info-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
}

.map-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 16px;
}

.map-info strong {
  color: #1A5028;
}

/* FAQ Contact */
.faq-contact {
  padding: 60px 20px;
  background-color: #faf8f5;
}

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

/* Team Contact */
.team-contact {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.team-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 48px;
}

.team-contact-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 28px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  text-align: center;
}

.team-contact-card h3 {
  font-size: 20px;
  color: #1A5028;
  margin-bottom: 8px;
}

.team-role {
  font-size: 15px;
  color: #C67D1B;
  font-style: italic;
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.legal-content h2 {
  font-size: 28px;
  color: #1A5028;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid #e8e4de;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 16px;
}

.legal-content a {
  color: #1A5028;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #2D7A3E;
}

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

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

.thank-you-hero h1 {
  font-size: 42px;
  color: #1A5028;
  margin-bottom: 20px;
}

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

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

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

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

.step-card {
  flex: 1 1 250px;
  max-width: 320px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

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

.step-card p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

/* What to Expect */
.what-to-expect {
  padding: 60px 20px;
  background-color: #faf8f5;
}

.what-to-expect h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.expectation-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
}

.expectation-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.expectation-item p {
  font-size: 16px;
  color: #2c2c2c;
  margin: 0;
  line-height: 1.6;
}

/* Meanwhile Resources */
.meanwhile-resources {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.resource-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 80, 40, 0.12);
}

.resource-card h3 {
  font-size: 22px;
  color: #1A5028;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.6;
  flex-grow: 1;
}

/* Social Proof */
.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
}

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

.testimonials-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-compact {
  flex: 1 1 350px;
  max-width: 420px;
  padding: 28px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-left: 3px solid #C67D1B;
}

.testimonial-compact .rating {
  font-size: 18px;
  color: #C67D1B;
  margin-bottom: 12px;
}

.testimonial-compact p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-compact strong {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #1A5028;
  font-style: normal;
}

/* Contact Reminder */
.contact-reminder {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

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

.reminder-text {
  font-size: 17px;
  color: #5a5a5a;
  margin-bottom: 32px;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-quick-item {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
}

.contact-quick-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-quick-item p {
  font-size: 15px;
  color: #2c2c2c;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.contact-quick-item a {
  color: #1A5028;
}

/* CTA Secondary */
.cta-secondary {
  padding: 40px 20px;
  text-align: center;
  background-color: #faf8f5;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

#cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-banner-text p {
  font-size: 15px;
  color: #e8e4de;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #C67D1B;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: #1A5028;
  color: #ffffff;
  border-color: #1A5028;
}

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

.cookie-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #8a8a8a;
}

.cookie-reject:hover {
  background-color: #4a4a4a;
}

.cookie-settings {
  background-color: transparent;
  color: #C67D1B;
  border-color: #C67D1B;
}

.cookie-settings:hover {
  background-color: #C67D1B;
  color: #ffffff;
}

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

#cookie-settings-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 2px;
  position: relative;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

.cookie-modal-content h2 {
  font-size: 28px;
  color: #1A5028;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 18px;
  color: #1A5028;
  margin: 0;
}

.cookie-category p {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #1A5028;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Sections */
  .section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero-internal {
    padding: 48px 16px 32px;
  }
  
  /* Adjust grids for mobile */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .contact-grid,
  .team-grid,
  .pillars-grid,
  .stories-grid,
  .stats-grid,
  .packages-grid,
  .tips-cards,
  .quick-tips-list,
  .resources-grid {
    gap: 20px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  /* Hero CTA buttons stacked */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust indicators stacked */
  .trust-indicators {
    gap: 32px;
    padding-top: 32px;
    margin-top: 32px;
  }
  
  .trust-value {
    font-size: 28px;
  }
  
  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .contact-item,
  .team-member,
  .pillar-card,
  .story-card,
  .stat-item,
  .package-card,
  .tip-card,
  .quick-tip-item,
  .resource-card {
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner mobile */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Form adjustments */
  .form-placeholder {
    padding: 24px;
  }
  
  /* Service detail */
  .service-detail {
    padding: 24px;
  }
  
  /* Story featured */
  .story-featured {
    padding: 24px;
  }
  
  /* Expert card */
  .expert-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  /* Further typography reductions */
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  body {
    font-size: 16px;
  }
  
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Reduce spacing */
  .section {
    margin-bottom: 32px;
    padding: 24px 12px;
  }
  
  /* Button sizes */
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* Cookie banner */
  #cookie-consent-banner {
    padding: 16px 12px;
  }
  
  .cookie-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Accessibility enhancements */
*:focus {
  outline: 2px solid #C67D1B;
  outline-offset: 2px;
}

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

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 3px;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* End of CSS */