/* 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: #2C3E50;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C5F2D;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 24px;
  color: #2C5F2D;
}

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

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

a:hover {
  color: #7FB069;
}

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

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

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

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

/* Header */
header {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(127, 176, 105, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(44, 95, 45, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

header img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

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

header nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8C547 0%, #F0CE4A 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: #E8C547;
  transform: translateY(-2px);
}

.cta-button {
  background: linear-gradient(135deg, #E8C547 0%, #F0CE4A 100%);
  color: #2C5F2D;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(232, 197, 71, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 197, 71, 0.6);
  background: linear-gradient(135deg, #F0CE4A 0%, #E8C547 100%);
  color: #2C5F2D;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #E8C547 0%, #F0CE4A 100%);
  border: none;
  color: #2C5F2D;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2000;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(232, 197, 71, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(232, 197, 71, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F2D 0%, #1a3a1b 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 8px;
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background: rgba(232, 197, 71, 0.2);
  color: #E8C547;
  transform: translateX(10px);
}

/* Main Content */
main {
  min-height: 60vh;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(127, 176, 105, 0.85) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C5F2D" width="1200" height="600"/><circle fill="%237FB069" opacity="0.1" cx="200" cy="100" r="150"/><circle fill="%23E8C547" opacity="0.1" cx="900" cy="400" r="200"/></svg>');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  text-align: center;
  padding: 100px 20px;
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
  margin-bottom: 80px;
}

.hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero .trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(127, 176, 105, 0.8) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(44, 95, 45, 0.2);
}

.page-hero h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 48px;
}

.page-hero p {
  font-size: 20px;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .key-stat {
  display: inline-block;
  background: rgba(232, 197, 71, 0.3);
  padding: 12px 24px;
  border-radius: 20px;
  margin-top: 24px;
  font-weight: 700;
  color: #FFFFFF;
  border: 2px solid rgba(232, 197, 71, 0.5);
}

/* Error Hero */
.error-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.error-hero .error-code {
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}

.error-hero h1 {
  margin-bottom: 16px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button.primary {
  background: linear-gradient(135deg, #E8C547 0%, #F0CE4A 100%);
  color: #2C5F2D;
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 197, 71, 0.4);
  background: linear-gradient(135deg, #F0CE4A 0%, #E8C547 100%);
}

.button.secondary {
  background: transparent;
  color: #2C5F2D;
  border: 2px solid #2C5F2D;
}

.button.secondary:hover {
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  color: #FFFFFF;
  border-color: #7FB069;
  transform: translateY(-3px);
}

/* Value Proposition */
.value-proposition {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.1);
}

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

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

.value-item {
  flex: 1 1 280px;
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(232, 197, 71, 0.1) 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.2);
  border-color: #7FB069;
}

.value-item h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.value-item p {
  color: #495057;
  font-size: 15px;
}

/* Services Preview & Grid */
.services-preview {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.03) 0%, rgba(127, 176, 105, 0.03) 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

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

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2C5F2D 0%, #7FB069 50%, #E8C547 100%);
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(44, 95, 45, 0.2);
  border-color: #7FB069;
}

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

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #495057;
  font-size: 15px;
}

.service-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #2C5F2D;
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.2) 0%, rgba(232, 197, 71, 0.1) 100%);
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: auto;
}

.services-preview > .container > .button {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* Benefits Section */
.benefits {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.1);
}

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

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 28px;
  border-radius: 16px;
  border-left: 5px solid #7FB069;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.15);
  border-left-color: #E8C547;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C5F2D;
}

.benefit-item p {
  color: #495057;
  font-size: 15px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  border-left: 5px solid #E8C547;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
}

.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonial-card .customer {
  font-weight: 700;
  color: #2C5F2D;
  font-style: normal;
  font-size: 15px;
  display: block;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(232, 197, 71, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .button {
  position: relative;
  z-index: 1;
}

/* Services Detailed */
.services-intro {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(44, 95, 45, 0.08);
}

.services-intro p {
  font-size: 18px;
  text-align: center;
  color: #495057;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-detailed {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.03) 0%, rgba(127, 176, 105, 0.03) 100%);
  padding: 60px 40px;
  border-radius: 30px;
}

.service-block {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  border-top: 5px solid #7FB069;
  transition: all 0.3s ease;
  position: relative;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
  border-top-color: #E8C547;
}

.service-block h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.service-block p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.service-block ul {
  margin-bottom: 24px;
  margin-left: 0;
  list-style: none;
}

.service-block ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #495057;
}

.service-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
  font-size: 18px;
}

.service-block .price {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: #2C5F2D;
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.2) 0%, rgba(232, 197, 71, 0.1) 100%);
  padding: 12px 28px;
  border-radius: 12px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.service-block .button {
  margin-top: 8px;
}

/* Financing Section */
.financing {
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.15) 0%, rgba(232, 197, 71, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  border: 3px solid rgba(232, 197, 71, 0.3);
}

.financing h2 {
  margin-bottom: 20px;
}

.financing p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #495057;
  line-height: 1.8;
}

/* Eco House Sections */
.ecohouse-intro {
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  text-align: center;
}

.ecohouse-intro h2 {
  margin-bottom: 20px;
}

.ecohouse-intro p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  color: #495057;
  line-height: 1.8;
}

.ecohouse-types {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.concept-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.concept-card {
  flex: 1 1 calc(50% - 28px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.concept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(44, 95, 45, 0.15);
  border-color: #7FB069;
}

.concept-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.concept-card p {
  color: #495057;
  line-height: 1.7;
}

/* Components Section */
.components {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.1);
}

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

.component-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.component-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(232, 197, 71, 0.05) 100%);
  padding: 28px;
  border-radius: 16px;
  border-left: 5px solid #7FB069;
  transition: all 0.3s ease;
}

.component-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.15);
  border-left-color: #E8C547;
}

.component-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.component-item p {
  color: #495057;
  font-size: 15px;
}

/* Planning Process */
.planning-process {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.phase {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7FB069 0%, #E8C547 100%);
  border-radius: 16px 16px 0 0;
}

.phase:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
}

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

.phase p {
  font-size: 15px;
  color: #495057;
}

.planning-process > .container > .button {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* Benefits Living */
.benefits-living {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.1);
}

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

.benefit-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.category {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
  border-color: #7FB069;
}

.category h3 {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  color: #2C5F2D;
}

.category ul {
  list-style: none;
  margin-left: 0;
}

.category ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #495057;
}

.category ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
  font-size: 16px;
}

/* Technology Sections */
.technology-overview {
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  text-align: center;
}

.technology-overview h2 {
  margin-bottom: 20px;
}

.technology-overview p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  color: #495057;
  line-height: 1.8;
}

.solar-technology,
.energy-storage,
.smart-home,
.green-building,
.emobility,
.innovation {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  border-left: 5px solid #7FB069;
  transition: all 0.3s ease;
}

.solar-technology:hover,
.energy-storage:hover,
.smart-home:hover,
.green-building:hover,
.emobility:hover,
.innovation:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.15);
  border-left-color: #E8C547;
}

.solar-technology h2,
.energy-storage h2,
.smart-home h2,
.green-building h2,
.emobility h2,
.innovation h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.solar-technology p,
.energy-storage p,
.smart-home p,
.green-building p,
.emobility p,
.innovation p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #495057;
  line-height: 1.8;
}

.solar-technology ul,
.energy-storage ul,
.smart-home ul,
.green-building ul,
.emobility ul {
  list-style: none;
  margin-left: 0;
}

.solar-technology ul li,
.energy-storage ul li,
.smart-home ul li,
.green-building ul li,
.emobility ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #495057;
}

.solar-technology ul li::before,
.energy-storage ul li::before,
.smart-home ul li::before,
.green-building ul li::before,
.emobility ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #7FB069;
  font-weight: 700;
  font-size: 18px;
}

/* Company Story & Mission */
.company-story {
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
}

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

.company-story p {
  font-size: 17px;
  line-height: 1.9;
  color: #495057;
  max-width: 900px;
  margin: 0 auto 20px;
}

.mission-vision {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.values-grid .value-item {
  flex: 1 1 calc(25% - 28px);
  min-width: 200px;
}

/* Expertise & Local Commitment */
.expertise,
.local-commitment {
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  text-align: center;
}

.expertise h2,
.local-commitment h2 {
  margin-bottom: 20px;
}

.expertise p,
.local-commitment p {
  font-size: 17px;
  line-height: 1.8;
  color: #495057;
  max-width: 800px;
  margin: 0 auto;
}

/* Achievements */
.achievements {
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
}

.achievements h2 {
  text-align: center;
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.stat-item .number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #E8C547;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-item p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* Projects Page */
.featured-projects {
  padding: 60px 40px;
}

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

.project-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  border-top: 5px solid #7FB069;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(44, 95, 45, 0.15);
  border-top-color: #E8C547;
}

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

.project-card p {
  margin-bottom: 12px;
  color: #495057;
  line-height: 1.8;
}

.project-card p strong {
  color: #2C5F2D;
  font-weight: 700;
}

/* Project Categories */
.project-categories {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.category-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.1);
  border-left: 5px solid #7FB069;
  transition: all 0.3s ease;
}

.category-section:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.15);
  border-left-color: #E8C547;
}

.category-section h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2C5F2D;
}

.category-section p {
  color: #495057;
  line-height: 1.7;
}

/* Impact Metrics */
.impact-metrics {
  background: linear-gradient(135deg, #2C5F2D 0%, #7FB069 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.3);
}

.impact-metrics h2 {
  text-align: center;
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 20px;
}

.impact-metrics > .container > p {
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 40px;
}

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

.metric-item {
  flex: 1 1 200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.metric-item:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.25);
}

.metric-item .number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #E8C547;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.metric-item p {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}

/* Testimonials Projects */
.testimonials-projects {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.15) 0%, rgba(232, 197, 71, 0.05) 100%);
  text-align: center;
  padding: 60px 40px;
  border-radius: 30px;
  border: 3px solid rgba(232, 197, 71, 0.3);
}

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

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

/* Contact Page */
.contact-methods {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.method-card {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(44, 95, 45, 0.15);
  border-color: #7FB069;
}

.method-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #2C5F2D;
}

.method-card p {
  color: #495057;
  line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.1);
}

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

.contact-form-section > .container > p {
  text-align: center;
  font-size: 17px;
  margin-bottom: 32px;
  color: #495057;
}

.form-note {
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.1) 0%, rgba(232, 197, 71, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #E8C547;
  margin-bottom: 32px;
}

.form-note p {
  margin-bottom: 8px;
  color: #495057;
  font-size: 15px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

.form-note a {
  color: #2C5F2D;
  text-decoration: underline;
}

.form-note a:hover {
  color: #7FB069;
}

/* Contact Info */
.contact-info {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.info-block {
  flex: 1 1 calc(50% - 28px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.1);
  border-top: 4px solid #7FB069;
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.15);
  border-top-color: #E8C547;
}

.info-block h3 {
  margin-bottom: 16px;
  font-size: 20px;
  color: #2C5F2D;
}

.info-block p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Service Area */
.service-area {
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
}

.service-area h2 {
  margin-bottom: 20px;
  text-align: center;
}

.service-area > .container > p {
  text-align: center;
  font-size: 17px;
  margin-bottom: 24px;
  color: #495057;
}

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

.service-area ul li {
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.15) 0%, rgba(232, 197, 71, 0.1) 100%);
  padding: 12px 24px;
  border-radius: 20px;
  color: #2C5F2D;
  font-weight: 600;
  border: 2px solid rgba(127, 176, 105, 0.3);
  transition: all 0.3s ease;
}

.service-area ul li:hover {
  transform: scale(1.05);
  border-color: #7FB069;
  box-shadow: 0 4px 15px rgba(127, 176, 105, 0.2);
}

.service-area > .container > p:last-child {
  text-align: center;
  font-size: 16px;
  color: #495057;
}

/* Legal Pages */
.legal-header {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(127, 176, 105, 0.8) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.legal-header h1 {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
  margin-bottom: 12px;
}

.legal-header p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 0;
}

.legal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 25px rgba(44, 95, 45, 0.1);
  margin-bottom: 60px;
}

.legal-content h2 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F2D;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C5F2D;
}

.legal-content p {
  margin-bottom: 16px;
  color: #495057;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  margin-left: 28px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #495057;
  line-height: 1.7;
}

.legal-content a {
  color: #2C5F2D;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #7FB069;
}

/* Thank You & Error Pages */
.thank-you-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 20px;
  color: #495057;
}

/* Navigation Help (404) */
.navigation-help {
  padding: 60px 40px;
}

.navigation-help h2 {
  text-align: center;
  margin-bottom: 40px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.link-card {
  flex: 0 1 200px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  font-weight: 600;
  color: #2C5F2D;
  border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
  border-color: #7FB069;
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(232, 197, 71, 0.1) 100%);
  color: #2C5F2D;
}

/* Contact Alternative */
.contact-alternative {
  background: linear-gradient(135deg, rgba(232, 197, 71, 0.1) 0%, rgba(232, 197, 71, 0.05) 100%);
  text-align: center;
  padding: 60px 40px;
  border-radius: 30px;
  border: 3px solid rgba(232, 197, 71, 0.3);
}

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

.contact-alternative p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #495057;
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Next Steps */
.next-steps {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(44, 95, 45, 0.1);
}

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

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(232, 197, 71, 0.05) 100%);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  border-top: 4px solid #7FB069;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.15);
  border-top-color: #E8C547;
}

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

.step p {
  color: #495057;
  font-size: 15px;
}

.contact-reminder {
  text-align: center;
  font-weight: 600;
  color: #2C5F2D;
  font-size: 17px;
  background: rgba(232, 197, 71, 0.15);
  padding: 16px;
  border-radius: 12px;
}

/* Additional Resources */
.additional-resources {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 60px 40px;
  border-radius: 30px;
}

.additional-resources h2 {
  text-align: center;
  margin-bottom: 40px;
}

.resource-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 45, 0.15);
  border-color: #7FB069;
  background: linear-gradient(135deg, rgba(127, 176, 105, 0.05) 0%, rgba(232, 197, 71, 0.05) 100%);
}

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

.resource-card p {
  color: #495057;
  font-size: 15px;
  margin-bottom: 0;
}

/* Return Home */
.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: #FFFFFF;
  padding: 60px 0 24px;
  margin-top: 80px;
  box-shadow: 0 -5px 30px rgba(44, 95, 45, 0.2);
}

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

.footer-block {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-block h3 {
  color: #E8C547;
  font-size: 20px;
  margin-bottom: 12px;
  background: none;
}

.footer-block p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-block nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-block nav a:hover {
  color: #E8C547;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
}

/* Cookie Consent Banner */
#cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: slideUp 0.4s ease-out;
}

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

#cookie-consent.active {
  display: block;
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

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

.cookie-text a:hover {
  color: #F0CE4A;
}

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

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

#accept-all-cookies {
  background: linear-gradient(135deg, #E8C547 0%, #F0CE4A 100%);
  color: #2C5F2D;
}

#accept-all-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 197, 71, 0.4);
}

#reject-all-cookies {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#reject-all-cookies:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

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

#cookie-settings:hover {
  background: rgba(232, 197, 71, 0.15);
  transform: translateY(-2px);
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(44, 95, 45, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: #2C5F2D;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cookie-modal-close:hover {
  background: rgba(44, 95, 45, 0.2);
  transform: rotate(90deg);
}

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

.cookie-category {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05) 0%, rgba(127, 176, 105, 0.05) 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #7FB069;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2C5F2D;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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

input:checked + .cookie-slider {
  background: #7FB069;
}

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

input:disabled + .cookie-slider {
  background: #7FB069;
  opacity: 0.6;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #E8C547 0%, #F0CE4A 100%);
  color: #2C5F2D;
}

#save-cookie-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 197, 71, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 28px);
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Header */
  header nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 17px;
  }
  
  .hero .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 50px 20px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Error Hero */
  .error-hero .error-code {
    font-size: 80px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* Grids */
  .value-grid,
  .service-grid,
  .benefit-list,
  .concept-grid,
  .component-grid,
  .process-timeline,
  .benefit-categories,
  .methods-grid,
  .info-grid,
  .resource-cards,
  .quick-links {
    gap: 16px;
  }
  
  .service-card,
  .value-item,
  .benefit-item,
  .concept-card,
  .component-item,
  .phase,
  .category,
  .method-card,
  .info-block,
  .resource-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stat-item,
  .metric-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-block {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 28px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .page-hero h1 {
    font-size: 26px;
  }
  
  .error-hero .error-code {
    font-size: 60px;
  }
  
  .button {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .stat-item .number,
  .metric-item .number {
    font-size: 36px;
  }
  
  section {
    padding: 32px 12px;
  }
  
  .service-card,
  .value-item,
  .benefit-item,
  .project-card {
    padding: 24px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-button,
  .button {
    display: none;
  }
  
  body {
    background: white;
  }
  
  main {
    max-width: 100%;
  }
  
  a {
    text-decoration: underline;
  }
  
  .page-hero,
  .hero {
    background: none;
    color: black;
    border: 2px solid black;
  }
}