/* CSS Reset and 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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D5016;
  margin-bottom: 16px;
}

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

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

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

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

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

a:hover {
  color: #8B6914;
}

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

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

strong {
  color: #2D5016;
  font-weight: 600;
}

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

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

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

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  color: #2D5016;
  font-weight: 500;
  font-size: 16px;
  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-color: #8B6914;
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2D5016;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  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: #2D5016;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8B6914;
}

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

.mobile-nav a {
  color: #2D5016;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #E8D5B7;
  transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2D5016;
  color: #ffffff;
  border-color: #2D5016;
}

.btn-primary:hover {
  background-color: #8B6914;
  border-color: #8B6914;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2D5016;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(232, 213, 183, 0.3) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.hero h1 {
  font-size: 48px;
  color: #2D5016;
  margin-bottom: 24px;
}

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

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

.trust-badge {
  font-size: 14px;
  color: #8B6914;
  font-weight: 600;
  margin-bottom: 0;
}

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

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

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

/* Value Grid */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #E8D5B7;
}

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

.value-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.value-card p {
  color: #4a4a4a;
  margin-bottom: 0;
}

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

.service-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #E8D5B7;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B6914;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D5016;
}

.service-card p {
  font-weight: 600;
  color: #8B6914;
  font-size: 18px;
  margin-bottom: 0;
}

/* Service Detail Cards */
.service-detail {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border: 1px solid #E8D5B7;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.service-detail h3 {
  color: #2D5016;
  margin-bottom: 8px;
}

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

.service-detail ul {
  margin-top: 16px;
}

.service-detail ul li {
  color: #4a4a4a;
  padding-left: 8px;
}

/* Testimonials */
.testimonials {
  background-color: #f9f9f9;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #8B6914;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

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

.testimonial-author {
  font-weight: 600;
  color: #2D5016;
  font-style: normal;
  margin-bottom: 0;
}

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

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.cta-section .btn-primary {
  background-color: #ffffff;
  color: #2D5016;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: #E8D5B7;
  border-color: #E8D5B7;
  color: #2D5016;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  margin-left: 16px;
}

.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #2D5016;
}

.contact-info {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
}

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

.timeline-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #8B6914;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.timeline-item h3 {
  font-size: 28px;
  color: #2D5016;
  margin-bottom: 8px;
}

.timeline-item p {
  margin-bottom: 0;
}

/* Mission Section */
.mission-statement {
  font-size: 22px;
  color: #2D5016;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-style: italic;
  line-height: 1.6;
}

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

.value-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #E8D5B7;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

/* Sustainability List */
.sustainability-list {
  max-width: 700px;
  margin: 0 auto;
}

.sustainability-list li {
  background-color: #ffffff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #2D5016;
}

/* Credentials */
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}

.credentials-list li {
  background-color: #ffffff;
  padding: 20px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #E8D5B7;
  font-weight: 600;
  color: #2D5016;
  transition: all 0.3s ease;
}

.credentials-list li:hover {
  transform: translateY(-2px);
  border-color: #8B6914;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.15);
}

/* Projects */
.project-showcase {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border: 1px solid #E8D5B7;
}

.project-showcase h2 {
  color: #2D5016;
  text-align: left;
  margin-bottom: 20px;
}

.project-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.project-info p {
  margin-bottom: 0;
  flex: 1 1 auto;
}

/* Statistics */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2D5016;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.stat h3 {
  font-size: 48px;
  color: #8B6914;
  margin-bottom: 8px;
}

.stat p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-step {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #8B6914;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.process-step h2 {
  color: #2D5016;
  text-align: left;
  margin-bottom: 12px;
}

.process-step p strong {
  color: #8B6914;
}

.process-step ul {
  margin-top: 16px;
}

/* Quality Section */
.quality ul {
  max-width: 700px;
  margin: 0 auto;
}

.quality li {
  background-color: #ffffff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #8B6914;
}

/* Contact Page */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form-section {
  flex: 1 1 calc(60% - 20px);
  min-width: 300px;
}

.contact-info-section {
  flex: 1 1 calc(40% - 20px);
  min-width: 280px;
}

.form-note {
  background-color: #fff3cd;
  border-left: 4px solid #8B6914;
  padding: 20px;
  border-radius: 4px;
  margin: 24px 0;
}

.form-note p {
  margin-bottom: 8px;
  color: #2c2c2c;
}

.form-fields-display {
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E8D5B7;
}

.form-fields-display ul {
  list-style: none;
  padding-left: 0;
}

.form-fields-display li {
  padding: 8px 0;
  border-bottom: 1px solid #E8D5B7;
}

.form-fields-display li:last-child {
  border-bottom: none;
}

.contact-details {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border: 1px solid #E8D5B7;
}

.contact-details h3 {
  color: #2D5016;
  margin-top: 20px;
  margin-bottom: 8px;
}

.contact-details h3:first-child {
  margin-top: 0;
}

.service-area {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E8D5B7;
}

.consultation-benefits {
  background-color: #f9f9f9;
}

.consultation-benefits ul {
  max-width: 700px;
  margin: 0 auto 24px;
}

.consultation-benefits li {
  background-color: #ffffff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #2D5016;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  margin-bottom: 24px;
}

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

.legal-content ul {
  margin-bottom: 24px;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(232, 213, 183, 0.3) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.thank-you-content h1 {
  font-size: 48px;
  color: #2D5016;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 0;
}

.next-steps {
  background-color: #f9f9f9;
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #8B6914;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.step h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #E8D5B7;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

.link-card h3 {
  margin-bottom: 12px;
}

.link-card .btn {
  margin-top: 16px;
}

.tips-list {
  max-width: 700px;
  margin: 0 auto;
}

.tips-list li {
  background-color: #ffffff;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #8B6914;
}

.thank-you-message {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.thank-you-message h1 {
  color: #2D5016;
  margin-bottom: 16px;
}

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

.additional-info {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.additional-info ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 24px auto 0;
}

.additional-info li {
  margin-bottom: 0;
}

.additional-info a {
  display: block;
  padding: 12px 24px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.additional-info a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

/* Footer */
footer {
  background-color: #2D5016;
  color: #ffffff;
  padding: 60px 0 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 300px;
  min-width: 250px;
}

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

.footer-brand p {
  color: #E8D5B7;
  margin-bottom: 0;
}

.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
  min-width: 180px;
}

footer h3 {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 16px;
}

footer p {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 14px;
}

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

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

footer nav a:hover {
  color: #E8D5B7;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 183, 0.3);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #E8D5B7;
  font-size: 14px;
  margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #2D5016;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #2c2c2c;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
}

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

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

.accept-all {
  background-color: #2D5016;
  color: #ffffff;
}

.accept-all:hover {
  background-color: #8B6914;
  transform: translateY(-2px);
}

.reject-all {
  background-color: #e0e0e0;
  color: #2c2c2c;
}

.reject-all:hover {
  background-color: #cccccc;
}

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

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

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

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

.modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  color: #2D5016;
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #2D5016;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #8B6914;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border-left: 4px solid #2D5016;
}

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

.category-header h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

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

input:checked + .slider {
  background-color: #2D5016;
}

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

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

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 0;
}

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

.modal-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences {
  background-color: #2D5016;
  color: #ffffff;
}

.save-preferences:hover {
  background-color: #8B6914;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat {
    flex: 1 1 calc(50% - 12px);
  }

  .timeline-item {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }

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

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

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

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

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

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

  /* Grids */
  .value-card,
  .service-card,
  .testimonial-card,
  .value-item,
  .stat,
  .timeline-item,
  .step,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .service-card {
    min-width: 100%;
  }

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

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

  /* Contact Grid */
  .contact-form-section,
  .contact-info-section {
    flex: 1 1 100%;
  }

  /* CTA Section */
  .cta-section {
    margin: 40px 16px;
    padding: 40px 20px;
  }

  .cta-section .btn-secondary {
    margin-left: 0;
    margin-top: 12px;
  }

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

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

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

  .cookie-buttons button {
    width: 100%;
  }

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

  .modal-buttons {
    flex-direction: column;
  }

  .modal-buttons button {
    width: 100%;
  }

  /* Project Info */
  .project-info {
    flex-direction: column;
    gap: 12px;
  }

  /* Thank You Page */
  .steps-grid {
    flex-direction: column;
  }

  .thank-you-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

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

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

  .logo img {
    height: 40px;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .project-showcase,
  .service-detail,
  .process-step {
    padding: 24px;
  }
}

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

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

.hero-content,
.value-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

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

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 20pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

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

:focus-visible {
  outline: 3px solid #8B6914;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #8B6914;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 2px solid #000;
  }

  .btn-secondary {
    border: 2px solid #000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}