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

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #fdfcf9;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a252f;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #2c3e50;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ===================================
   NATURE ORGANIC COLOR PALETTE
   =================================== */

:root {
  --earth-brown: #6b5444;
  --sage-green: #7a9b76;
  --moss-green: #4a6741;
  --sand-beige: #d4c5b0;
  --cream: #fdfcf9;
  --terracotta: #d35400;
  --stone-gray: #8b8680;
  --dark-bark: #1a252f;
  --light-leaf: #a8c5a3;
  --warm-earth: #b89968;
}

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

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

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

/* ===================================
   HEADER STYLES
   =================================== */

header {
  background: linear-gradient(135deg, #fdfcf9 0%, #f5f1e8 100%);
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(106, 84, 68, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #7a9b76;
}

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

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2c3e50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #4a6741;
}

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #7a9b76;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(106, 84, 68, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #4a6741;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #fdfcf9 0%, #f5f1e8 100%);
  box-shadow: -4px 0 24px rgba(106, 84, 68, 0.15);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #d4c5b0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #4a6741;
  padding-left: 12px;
  border-bottom-color: #7a9b76;
}

/* ===================================
   HERO SECTION - NATURE ORGANIC
   =================================== */

.hero {
  background: linear-gradient(135deg, #fdfcf9 0%, #f5f1e8 50%, #e8dfc8 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #7a9b76;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 155, 118, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  color: #1a252f;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(106, 84, 68, 0.05);
}

.subheadline {
  font-size: 24px;
  color: #6b5444;
  margin-bottom: 24px;
  font-weight: 300;
}

.value-proposition {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #6b5444;
  font-size: 16px;
  padding: 8px 20px;
  background: rgba(122, 155, 118, 0.1);
  border-radius: 24px;
  border: 1px solid #a8c5a3;
}

/* ===================================
   BUTTONS - ORGANIC STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #7a9b76;
  color: white;
  box-shadow: 0 4px 16px rgba(122, 155, 118, 0.3);
}

.btn-primary:hover {
  background: #4a6741;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.4);
}

.btn-secondary {
  background: #d4c5b0;
  color: #2c3e50;
  box-shadow: 0 4px 16px rgba(212, 197, 176, 0.3);
}

.btn-secondary:hover {
  background: #b89968;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #6b5444;
  border: 2px solid #7a9b76;
}

.btn-outline:hover {
  background: #7a9b76;
  color: white;
  transform: translateY(-2px);
}

/* ===================================
   CARD STYLES - ORGANIC ELEMENTS
   =================================== */

.service-grid,
.benefits-grid,
.testimonial-grid,
.project-grid,
.team-grid,
.value-grid,
.awards-grid,
.contact-grid,
.stats-grid,
.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.benefit,
.testimonial-card,
.project-card,
.team-member,
.team-card,
.value-item,
.award,
.contact-card,
.stat,
.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #f5f1e8;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7a9b76 0%, #a8c5a3 100%);
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.project-card:hover,
.benefit:hover,
.team-member:hover,
.team-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(106, 84, 68, 0.15);
  border-color: #7a9b76;
}

.service-card h3,
.project-card h3,
.benefit h3,
.team-member h3,
.team-card h3 {
  color: #1a252f;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.project-card p,
.benefit p {
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 12px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #6b5444;
  font-size: 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d4c5b0;
}

.category,
.role,
.specialty {
  font-size: 14px;
  color: #7a9b76;
  font-weight: 600;
  margin-bottom: 12px;
}

.specs {
  font-size: 14px;
  color: #8b8680;
  font-style: italic;
}

/* ===================================
   TESTIMONIALS - READABLE CONTRAST
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #f5f1e8 0%, #fdfcf9 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 0;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #7a9b76;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

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

.client-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a252f;
  font-size: 16px;
  font-style: normal;
  margin-bottom: 4px;
}

.client-role {
  color: #6b5444;
  font-size: 14px;
  font-style: normal;
  margin-bottom: 0;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.statistics {
  background: linear-gradient(135deg, #7a9b76 0%, #4a6741 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 0;
  text-align: center;
}

.statistics h2 {
  color: white;
  margin-bottom: 40px;
}

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

.stat {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat .label {
  font-size: 16px;
  color: #f5f1e8;
  text-align: center;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process-steps,
.phase-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.step,
.phase {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  border: 2px solid #f5f1e8;
  position: relative;
  margin-bottom: 20px;
}

.step-number,
.phase-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7a9b76 0%, #4a6741 100%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.step-num {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #d4c5b0;
  color: #1a252f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.duration,
.timeframe {
  display: inline-block;
  background: rgba(122, 155, 118, 0.1);
  color: #4a6741;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===================================
   TEXT-IMAGE SECTIONS
   =================================== */

.mission-vision,
.company-story,
.value-proposition {
  margin-bottom: 60px;
}

.mission,
.vision {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.milestone {
  flex: 1 1 300px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  border-left: 4px solid #7a9b76;
  margin-bottom: 20px;
}

.milestone .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #7a9b76;
  margin-bottom: 12px;
  display: block;
}

/* ===================================
   SERVICE DETAILED LIST
   =================================== */

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.service-item {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  border: 2px solid #f5f1e8;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-item:hover {
  border-color: #7a9b76;
  box-shadow: 0 8px 24px rgba(106, 84, 68, 0.12);
}

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

.service-item ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-item li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2c3e50;
  line-height: 1.6;
}

.service-item li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #7a9b76;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   CTA SECTION - ORGANIC
   =================================== */

.cta-section {
  background: linear-gradient(135deg, #7a9b76 0%, #4a6741 100%);
  padding: 80px 20px;
  border-radius: 24px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 36px;
}

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

.cta-section .btn {
  background: white;
  color: #4a6741;
  font-weight: 700;
}

.cta-section .btn:hover {
  background: #d4c5b0;
  transform: translateY(-4px);
}

.availability {
  color: #d4c5b0;
  font-size: 14px;
  margin-top: 16px;
}

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

.contact-methods,
.contact-info,
.team-contact {
  margin-bottom: 60px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.detail-block {
  flex: 1 1 300px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  border: 2px solid #f5f1e8;
  margin-bottom: 20px;
}

.detail-block h3 {
  color: #1a252f;
  margin-bottom: 16px;
  font-size: 20px;
}

.details {
  font-weight: 600;
  color: #6b5444;
  margin-bottom: 8px;
}

.note {
  font-size: 14px;
  color: #8b8680;
  font-style: italic;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  color: #1a252f;
  margin-bottom: 16px;
  font-size: 40px;
}

.last-updated {
  color: #8b8680;
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.text-section {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(106, 84, 68, 0.08);
  border-left: 4px solid #7a9b76;
}

.text-section h2 {
  color: #1a252f;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section p,
.text-section ul,
.text-section li {
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 12px;
}

.text-section ul {
  padding-left: 24px;
}

.text-section li {
  list-style: disc;
  margin-bottom: 8px;
}

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

.success-message {
  font-size: 20px;
  color: #4a6741;
  background: rgba(122, 155, 118, 0.1);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #7a9b76;
  margin-bottom: 24px;
}

.confirmation {
  font-size: 16px;
  color: #6b5444;
  margin-bottom: 32px;
}

.next-steps,
.resources {
  margin: 60px 0;
}

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

/* ===================================
   FOOTER - ORGANIC STYLE
   =================================== */

footer {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  color: #f5f1e8;
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-top: 4px solid #7a9b76;
}

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

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #d4c5b0;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  color: #95a5a6;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #95a5a6;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 197, 176, 0.2);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fdfcf9 0%, #f5f1e8 100%);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(106, 84, 68, 0.15);
  z-index: 1998;
  border-top: 3px solid #7a9b76;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #2c3e50;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-accept {
  background: #7a9b76;
  color: white;
}

.cookie-accept:hover {
  background: #4a6741;
}

.cookie-reject {
  background: #8b8680;
  color: white;
}

.cookie-reject:hover {
  background: #6b5444;
}

.cookie-settings {
  background: transparent;
  color: #6b5444;
  border: 2px solid #d4c5b0;
}

.cookie-settings:hover {
  background: #d4c5b0;
  color: white;
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 37, 47, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(106, 84, 68, 0.2);
  animation: slideIn 0.4s ease;
}

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

.cookie-category {
  padding: 20px;
  background: #f5f1e8;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

.toggle-switch.active {
  background: #7a9b76;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .subheadline {
    font-size: 18px;
  }

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

  .btn {
    width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .service-card,
  .benefit,
  .testimonial-card,
  .project-card,
  .team-member,
  .team-card,
  .stat,
  .step,
  .phase,
  .milestone,
  .detail-block,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-btn {
    width: 100%;
  }

  section {
    padding: 32px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit,
  .project-card,
  .team-member,
  .team-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step,
  .phase {
    flex: 1 1 calc(50% - 32px);
  }
}

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

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

.hero-content,
.service-card,
.testimonial-card,
.project-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }

  body {
    background: white;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

:focus {
  outline: 2px solid #7a9b76;
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 2px solid #4a6741;
  outline-offset: 4px;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

/* END OF STYLES */