/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FDFBF7;
  overflow-x: hidden;
}

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

a {
  color: #2C5F4F;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: #8B6F47;
}

ul {
  list-style-position: inside;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2C5F4F;
  font-weight: 700;
}

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

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

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

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

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

blockquote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 16px;
}

cite {
  font-style: normal;
  font-weight: 700;
  color: #2C5F4F;
  display: block;
  margin-top: 12px;
}

/* ===================================
   LAYOUT CONTAINER
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(44, 95, 79, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}

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

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

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #2C5F4F;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.main-nav a:hover {
  color: #8B6F47;
}

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

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

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  background-color: #2C5F4F;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(44, 95, 79, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background-color: #E8DCC4;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F4F;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #E8DCC4;
  color: #8B6F47;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #1F4738;
  border-color: #1F4738;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 95, 79, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F4F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 95, 79, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, #E8DCC4 0%, #F5EFE0 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.hero h1 {
  color: #2C5F4F;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  color: #2C2C2C;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.8;
}

/* ===================================
   SECTIONS
   =================================== */

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

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

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
}

.value-proposition p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #2C2C2C;
}

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

.value-cards .card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #FDFBF7;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #E8DCC4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.value-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 111, 71, 0.2);
  border-color: #8B6F47;
}

.value-cards .card h3 {
  color: #8B6F47;
  margin-bottom: 16px;
}

/* ===================================
   SERVICES
   =================================== */

.services-overview,
.services-intro,
.services-detailed {
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
}

.services-overview p,
.services-intro p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.services-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.feature-item {
  flex: 1 1 280px;
  max-width: 380px;
  background-color: #F5EFE0;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #8B6F47;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-card:hover,
.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(139, 111, 71, 0.15);
}

.service-card h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.service-card p {
  color: #2C2C2C;
  line-height: 1.7;
}

.service-detail {
  background-color: #F5EFE0;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 6px solid #2C5F4F;
}

.service-detail h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 20px;
  font-weight: 700;
  color: #8B6F47;
  margin: 16px 0;
}

.service-detail strong {
  color: #2C5F4F;
}

/* ===================================
   SOCIAL PROOF & STATISTICS
   =================================== */

.social-proof,
.results-summary {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4738 100%);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 20px;
}

.social-proof h2,
.results-summary h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 20px;
}

.stat:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.15);
}

.stat .metric {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #E8DCC4;
  margin-bottom: 12px;
}

.stat .label {
  display: block;
  font-size: 16px;
  color: #FFFFFF;
  opacity: 0.9;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #F5EFE0;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 16px;
  flex: 1 1 300px;
}

.testimonial-card cite {
  font-weight: 700;
  color: #2C5F4F;
  font-size: 16px;
}

.testimonial {
  background-color: #F5EFE0;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 24px;
  color: #2C2C2C;
}

.testimonial cite {
  font-size: 18px;
  color: #2C5F4F;
}

.testimonial p {
  color: #8B6F47;
  font-style: italic;
}

/* ===================================
   CASE STUDIES
   =================================== */

.featured-case-study {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 6px 24px rgba(44, 95, 79, 0.12);
}

.featured-case-study h2 {
  text-align: left;
  margin-bottom: 8px;
}

.featured-case-study .industry {
  color: #8B6F47;
  font-weight: 700;
  margin-bottom: 32px;
}

.featured-case-study h3 {
  color: #2C5F4F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.metrics-grid .metric {
  flex: 1 1 200px;
  max-width: 250px;
  background-color: #E8DCC4;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.metrics-grid .metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 111, 71, 0.2);
}

.metrics-grid .value {
  display: block;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #2C5F4F;
  margin-bottom: 8px;
}

.metrics-grid .label {
  display: block;
  font-size: 14px;
  color: #2C2C2C;
}

.case-studies-grid {
  background-color: #FDFBF7;
}

.case-study-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(44, 95, 79, 0.15);
}

.case-study-card h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.case-study-card .industry {
  color: #8B6F47;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.case-study-card ul {
  margin-top: 20px;
  padding-left: 20px;
}

.case-study-card li {
  margin-bottom: 8px;
  color: #2C2C2C;
}

/* ===================================
   STORY & MISSION
   =================================== */

.story,
.philosophy {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
}

.story h2,
.philosophy h2 {
  text-align: left;
}

.story p,
.philosophy p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-values {
  background: linear-gradient(135deg, #F5EFE0 0%, #E8DCC4 100%);
  border-radius: 16px;
  padding: 60px 40px;
}

.mission-values .mission {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #2C5F4F;
  line-height: 1.8;
}

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

.value-card {
  flex: 1 1 280px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.2);
}

.value-card h3 {
  color: #8B6F47;
  margin-bottom: 16px;
}

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

.principle-cards .card {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #FDFBF7;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #E8DCC4;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.principle-cards .card:hover {
  transform: translateY(-6px);
  border-color: #8B6F47;
  box-shadow: 0 8px 20px rgba(139, 111, 71, 0.15);
}

/* ===================================
   TEAM
   =================================== */

.team {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
}

.team p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
}

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

.team-member {
  flex: 1 1 260px;
  max-width: 280px;
  background-color: #F5EFE0;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(139, 111, 71, 0.2);
}

.team-member h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.team-member .role {
  color: #8B6F47;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

/* ===================================
   METHODOLOGY & APPROACH
   =================================== */

.methodology-framework {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
}

.methodology-framework p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.phase {
  background-color: #F5EFE0;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 6px solid #8B6F47;
  transition: transform 0.3s ease;
}

.phase:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.15);
}

.phase h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.phase .duration {
  color: #8B6F47;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.authenticity-scoring,
.measurement-framework {
  background: linear-gradient(135deg, #E8DCC4 0%, #F5EFE0 100%);
  border-radius: 16px;
  padding: 60px 40px;
}

.authenticity-scoring p,
.measurement-framework p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

/* ===================================
   RESOURCES
   =================================== */

.resources-intro,
.featured-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
}

.resources-intro p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.resource-grid {
  background-color: #FDFBF7;
}

.resource-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #8B6F47;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(44, 95, 79, 0.15);
  border-left-color: #2C5F4F;
}

.resource-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.resource-card .meta {
  color: #8B6F47;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

/* ===================================
   CONTACT
   =================================== */

.contact-options,
.office-info,
.what-to-expect {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
}

.contact-options p,
.what-to-expect > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
}

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

.method {
  flex: 1 1 300px;
  max-width: 450px;
  background-color: #F5EFE0;
  padding: 32px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.method:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(139, 111, 71, 0.2);
}

.method h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.method a {
  font-weight: 700;
  text-decoration: underline;
}

.office-info {
  text-align: center;
}

.office-info p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
  background-color: #E8DCC4;
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(139, 111, 71, 0.2);
}

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

/* ===================================
   THANK YOU PAGE
   =================================== */

.confirmation-message {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.confirmation-message p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.while-you-wait {
  background-color: #F5EFE0;
  border-radius: 16px;
  padding: 60px 40px;
}

.while-you-wait p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

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

.resource-link {
  flex: 1 1 280px;
  max-width: 360px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.resource-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(139, 111, 71, 0.2);
}

.resource-link h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.resource-link a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: #8B6F47;
  text-decoration: underline;
}

.navigation-cta {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.navigation-cta ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.navigation-cta li {
  margin: 0;
}

.navigation-cta a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #E8DCC4;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.navigation-cta a:hover {
  background-color: #8B6F47;
  color: #FFFFFF;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4738 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 40px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #FFFFFF;
  opacity: 0.95;
}

.cta-section .btn {
  margin-top: 16px;
}

.cta-section .btn-primary {
  background-color: #E8DCC4;
  color: #2C5F4F;
  border-color: #E8DCC4;
}

.cta-section .btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
}

.reassurance {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #2C5F4F;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-brand {
  flex: 1 1 250px;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.footer-links h4 {
  color: #E8DCC4;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

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

.footer-links a {
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
  color: #E8DCC4;
}

.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h4 {
  color: #E8DCC4;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-contact a {
  color: #E8DCC4;
  text-decoration: underline;
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F4F;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-accept {
  background-color: #E8DCC4;
  color: #2C5F4F;
  border: none;
}

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

.btn-reject,
.btn-settings {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-reject:hover,
.btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Preferences 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: 1001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

.cookie-modal-close:hover {
  background-color: #E8DCC4;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5EFE0;
  border-radius: 8px;
}

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

.cookie-category p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #2C2C2C;
}

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

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

.cookie-toggle label {
  font-weight: 600;
  cursor: pointer;
  color: #2C5F4F;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 150px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header & Navigation */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  header {
    padding: 16px 0;
  }

  .logo img {
    height: 40px;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero p {
    font-size: 18px;
  }

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

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

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

  /* Cards & Grids */
  .value-cards,
  .services-grid,
  .statistics-grid,
  .team-grid,
  .values-grid,
  .metrics-grid,
  .contact-methods,
  .process-steps,
  .next-steps,
  .resource-links {
    flex-direction: column;
    align-items: center;
  }

  .value-cards .card,
  .service-card,
  .value-card,
  .team-member,
  .stat,
  .method,
  .step,
  .resource-link {
    max-width: 100%;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1 1 100%;
  }

  /* Service Details */
  .service-detail,
  .phase {
    padding: 24px;
  }

  /* Legal Content */
  .legal-content {
    padding: 40px 24px;
  }

  /* Featured Case Study */
  .featured-case-study {
    padding: 40px 24px;
  }

  /* Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero {
    padding: 48px 16px;
  }

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

  .stat .metric {
    font-size: 36px;
  }

  .metrics-grid .value {
    font-size: 32px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

@keyframes slideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #8B6F47;
  outline-offset: 2px;
}

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

  body {
    background-color: white;
    color: black;
  }
}