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

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

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

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

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

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

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

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

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

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

a:hover {
  color: #8B7355;
}

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

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

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #2D5016;
}

.cta-button {
  display: none;
  padding: 12px 24px;
  background-color: #2D5016;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #3d6b1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2D5016;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
}

.mobile-menu-toggle:hover {
  background-color: #3d6b1f;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #f5f5f5;
  color: #333;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.mobile-nav a:hover {
  color: #2D5016;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #3d6b1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.3);
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

.hero-subtitle {
  font-size: 24px;
  color: #8B7355;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
}

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

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

.trust-badges span {
  font-size: 14px;
  color: #2D5016;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #f8f9fa;
  border-radius: 24px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-hero p {
  font-size: 20px;
  color: #555;
}

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

section h2 {
  text-align: center;
  font-size: 32px;
  color: #2D5016;
  margin-bottom: 16px;
}

section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 280px;
  max-width: 400px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

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

.benefit-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #555;
}

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

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

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

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

.service-card p {
  color: #8B7355;
  font-weight: 600;
  font-size: 18px;
}

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

/* Services Detail */
.services-detail .service-item {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.services-detail .service-item h2 {
  text-align: left;
  color: #2D5016;
  margin-bottom: 16px;
}

.services-detail .service-item p {
  text-align: left;
  color: #555;
  margin-bottom: 16px;
}

.services-detail .price {
  font-size: 24px;
  font-weight: 600;
  color: #8B7355;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

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

.step p {
  color: #555;
  font-size: 14px;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #333;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .client-name {
  font-weight: 600;
  color: #2D5016;
  font-style: normal;
  margin-bottom: 4px;
}

.testimonial-card .client-location {
  font-size: 14px;
  color: #8B7355;
  font-style: normal;
}

/* Stats Section */
.stats {
  background-color: #2D5016;
  color: #ffffff;
}

.stats h2 {
  color: #ffffff;
}

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

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
}

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

.stat-item p {
  font-size: 18px;
  color: #ffffff;
}

/* Story Section */
.story p {
  text-align: left;
  max-width: 100%;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 240px;
  padding: 24px;
  background-color: #f8f9fa;
  border-left: 4px solid #2D5016;
  border-radius: 4px;
  margin-bottom: 20px;
}

.milestone h3 {
  color: #2D5016;
  font-size: 18px;
  margin-bottom: 8px;
}

.milestone p {
  color: #555;
  font-size: 14px;
}

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

.value-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

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

/* Team Section */
.team p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.8;
}

/* Portfolio */
.portfolio {
  margin-bottom: 60px;
}

.project-card {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.project-card .location {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 16px;
}

.project-card p {
  text-align: left;
  color: #555;
  line-height: 1.8;
}

/* Pricing */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 40px 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.pricing-card .price {
  font-size: 28px;
  font-weight: 600;
  color: #8B7355;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.pricing-card li {
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* Packages */
.package-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #2D5016;
}

.package-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
  font-size: 24px;
}

.package-price {
  font-size: 32px;
  font-weight: 600;
  color: #8B7355;
  margin-bottom: 8px;
}

.savings {
  font-size: 16px;
  color: #C8B896;
  font-weight: 600;
  margin-bottom: 24px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.package-card li {
  padding: 12px 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

/* Payment Section */
.payment {
  background-color: #f8f9fa;
  text-align: center;
}

.payment p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* Contact Info */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #2D5016;
  margin-bottom: 16px;
}

.contact-card p {
  color: #555;
  margin-bottom: 8px;
  font-size: 16px;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f8f9fa;
  text-align: center;
}

.form-note {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 24px;
  background-color: #fff3cd;
  border-left: 4px solid #8B7355;
  border-radius: 4px;
}

.form-note p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.form-note strong {
  color: #2D5016;
}

/* Service Area */
.service-area {
  background-color: #ffffff;
}

.service-area ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.service-area li {
  padding: 12px 24px;
  background-color: #f8f9fa;
  border-radius: 24px;
  color: #2D5016;
  font-weight: 500;
  margin-bottom: 0;
}

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

.cta-banner h2 {
  color: #ffffff!important;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #ffffff!important;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner strong {
  color: #C8B896;
}

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

.cta-banner .btn-primary:hover {
  background-color: #C8B896;
  color: #2D5016;
}

/* Legal Pages */
.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  color: #2D5016;
  margin-bottom: 24px;
}

.legal-page h2 {
  text-align: left;
  color: #2D5016;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page h3 {
  text-align: left;
  color: #8B7355;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page p {
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.8;
  max-width: 100%;
}

.legal-page ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-page {
  padding: 60px 20px;
  text-align: center;
}

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

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

.thank-you-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 16px;
}

.next-steps {
  max-width: 900px;
  margin: 0 auto 60px;
}

.next-steps h2 {
  color: #2D5016;
  margin-bottom: 40px;
}

.next-steps .step {
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-urgent {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-urgent h2 {
  color: #2D5016;
  margin-bottom: 16px;
}

.contact-urgent p {
  color: #555;
  margin-bottom: 8px;
}

.contact-urgent strong {
  color: #2D5016;
}

.resources {
  max-width: 800px;
  margin: 0 auto 60px;
}

.resources h2 {
  color: #2D5016;
  margin-bottom: 32px;
}

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

.resource-link {
  padding: 16px 24px;
  background-color: #ffffff;
  border: 2px solid #2D5016;
  border-radius: 4px;
  color: #2D5016;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background-color: #2D5016;
  color: #ffffff;
}

.return-home {
  margin-top: 40px;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.contact-info h2 {
  color: #2D5016;
  margin-bottom: 24px;
}

.contact-info p {
  color: #555;
  margin-bottom: 8px;
  font-size: 16px;
}

/* Footer */
footer {
  background-color: #2D5016;
  color: #ffffff;
  padding: 60px 20px 24px;
}

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

.footer-section {
  flex: 1 1 240px;
  min-width: 240px;
}

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

.footer-section h4 {
  color: #C8B896;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #C8B896;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.footer-links a {
  color: #ffffff;
  font-size: 14px;
}

.footer-links a:hover {
  color: #C8B896;
}

/* 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: 1100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent.active {
  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 300px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background-color: #3d6b1f;
}

.cookie-btn-reject {
  background-color: #8B7355;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background-color: #9d836a;
}

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

.cookie-btn-settings:hover {
  background-color: #f8f9fa;
}

/* 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: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

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

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

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

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

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

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

.cookie-toggle.active {
  background-color: #2D5016;
}

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

.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

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

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

/* Responsive Design */
@media (min-width: 769px) {
  .main-nav {
    display: flex;
  }
  
  .cta-button {
    display: inline-block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  .package-price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .benefit-card,
  .service-card,
  .value-card {
    padding: 24px;
  }
  
  .services-detail .service-item,
  .project-card {
    padding: 24px;
  }
  
  .pricing-card {
    padding: 24px;
  }
}

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

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

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-settings-modal {
    display: none !important;
  }
}