/* ========================================
   SOLINA FORCE - MINIMALIST ECO STYLE
   Comprehensive CSS for All Pages
======================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #7BA885;
}

ul {
  list-style: none;
}

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.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

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

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

.main-nav a {
  font-weight: 500;
  font-size: 16px;
  color: #2D5F3F;
  padding: 8px 0;
  position: relative;
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5F3F;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  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: #2D5F3F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  color: #7BA885;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

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

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

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #2D5F3F;
  border-color: #2D5F3F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

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

.btn-secondary:hover {
  background-color: #2D5F3F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-link {
  color: #2D5F3F;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #7BA885;
  gap: 12px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8F3E8 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;
  margin-bottom: 20px;
  color: #2D5F3F;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 12px;
}

.hero-value {
  font-size: 18px;
  color: #7BA885;
  margin-bottom: 32px;
  font-weight: 500;
}

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

.trust-badges span {
  padding: 10px 20px;
  background-color: #FFFFFF;
  border-radius: 24px;
  font-size: 14px;
  color: #2D5F3F;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* HERO SECONDARY */
.hero-secondary {
  background-color: #E8F3E8;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #7BA885;
}

.breadcrumb a {
  color: #7BA885;
}

.hero-secondary h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: #4A4A4A;
}

.update-date {
  font-size: 14px;
  color: #7BA885;
  margin-top: 12px;
}

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

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

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

/* BENEFITS SECTION */
.benefits {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.15);
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

/* SERVICES SECTIONS */
.services-preview,
.services-overview,
.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.15);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.service-card p {
  font-size: 15px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 20px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.service-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

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

.service-detail ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4A4A4A;
}

.service-detail .benefit,
.service-detail .duration {
  display: block;
  margin-top: 16px;
  padding: 12px 16px;
  background-color: #E8F3E8;
  border-radius: 8px;
  font-size: 14px;
  color: #2D5F3F;
  font-weight: 500;
}

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

.category-item {
  flex: 1 1 calc(25% - 15px);
  min-width: 200px;
  padding: 24px 20px;
  background-color: #E8F3E8;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: #2D5F3F;
  color: #FFFFFF;
  transform: translateY(-4px);
}

.category-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.category-item:hover h3,
.category-item:hover p {
  color: #FFFFFF;
}

/* HOW IT WORKS */
.how-it-works {
  background-color: #E8F3E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 32px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2D5F3F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.timeline-info {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #7BA885;
  font-weight: 500;
}

/* STATS */
.social-proof,
.stats-overview,
.impact-stats {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-item p {
  font-size: 16px;
  color: #4A4A4A;
}

/* TESTIMONIALS */
.testimonials,
.testimonials-collection {
  background-color: #E8F3E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #2D2D2D;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2D5F3F;
  margin-bottom: 8px;
}

.rating {
  color: #FFB800;
  font-size: 18px;
  letter-spacing: 2px;
}

.average-rating {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
}

/* CTA SECTIONS */
.cta-banner,
.cta-section,
.cta-contact,
.cta-project,
.blog-cta {
  background: linear-gradient(135deg, #2D5F3F 0%, #7BA885 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 12px;
}

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

.cta-content h2 {
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

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

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.benefits-list li {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
}

.benefits-reminder {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.benefits-reminder span {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 14px;
}

.guarantee,
.availability {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* MISSION & VISION */
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.mission-box,
.vision-box,
.values-box {
  background-color: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.values-list {
  padding-left: 20px;
}

.values-list li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4A4A4A;
}

/* TIMELINE */
.company-story,
.process-timeline {
  background-color: #E8F3E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-item,
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  position: relative;
}

.timeline-item .year,
.timeline-step .step-num {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #2D5F3F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.timeline-item h3,
.timeline-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* PROJECT SHOWCASE */
.project-showcase {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.project-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.15);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.project-tag {
  padding: 6px 12px;
  background-color: #E8F3E8;
  border-radius: 16px;
  font-size: 12px;
  color: #2D5F3F;
  font-weight: 500;
}

.project-location {
  font-size: 14px;
  color: #7BA885;
  margin-bottom: 12px;
}

.project-desc {
  margin-bottom: 16px;
}

.project-results {
  padding-top: 16px;
  border-top: 1px solid #E8F3E8;
}

.project-results p {
  font-size: 14px;
}

/* TYPES GRID */
.project-types {
  background-color: #E8F3E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.type-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
}

.percentage {
  font-size: 40px;
  font-weight: 700;
  color: #2D5F3F;
  margin-bottom: 8px;
  display: block;
}

/* BLOG */
.featured-article {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.article-featured {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #2D5F3F;
  color: #FFFFFF;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.article-featured h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #7BA885;
  margin-bottom: 24px;
}

.blog-categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.categories-grid .category-link {
  display: block;
  padding: 16px 24px;
  background-color: #E8F3E8;
  border-radius: 8px;
  color: #2D5F3F;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.categories-grid .category-link:hover {
  background-color: #2D5F3F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.articles-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.15);
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* NEWSLETTER */
.newsletter-signup {
  background-color: #E8F3E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.newsletter-benefits span {
  color: #2D5F3F;
  font-size: 14px;
}

.newsletter-form-placeholder {
  margin-top: 32px;
  padding: 24px;
  background-color: #E8F3E8;
  border-radius: 8px;
}

/* CONTACT */
.contact-options,
.contact-form-section,
.office-hours,
.service-area,
.faq-contact {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-option {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-option img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.form-info {
  margin-top: 32px;
}

.form-info ul {
  margin: 20px 0;
  padding-left: 20px;
}

.form-info ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4A4A4A;
}

.privacy-note {
  font-size: 14px;
  color: #7BA885;
  margin-top: 24px;
}

.hours-box,
.area-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.note {
  font-size: 14px;
  color: #7BA885;
  margin-top: 16px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4A4A4A;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #E8F3E8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #2D5F3F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
}

.confirmation-message,
.return-navigation,
.what-next,
.contact-reminder,
.testimonial-snippet {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.main-message {
  font-size: 20px;
  color: #2D5F3F;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
}

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

.next-steps .step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
}

.email-note {
  text-align: center;
  font-size: 14px;
  color: #7BA885;
  margin-top: 32px;
}

.contact-info {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.action-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.15);
}

.action-card h3 {
  color: #2D5F3F;
  margin-bottom: 12px;
}

.testimonial-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

/* SUBSIDIES */
.subsidies-info {
  background-color: #E8F3E8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.subsidies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.subsidy-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
}

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

.help-text {
  text-align: center;
  font-size: 16px;
  color: #2D5F3F;
  font-weight: 500;
  margin-top: 24px;
}

/* WHY CHOOSE US */
.why-choose-us {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 20px;
}

.reason-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background-color: #2D5F3F;
  color: #FFFFFF;
  padding: 60px 20px 20px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

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

.tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-style: italic;
}

.footer-column h3 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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;
  font-size: 14px;
  color: #4A4A4A;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2D5F3F;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #7BA885;
}

.cookie-reject {
  background-color: transparent;
  color: #2D5F3F;
  border: 2px solid #2D5F3F;
}

.cookie-reject:hover {
  background-color: #E8F3E8;
}

.cookie-settings {
  background-color: #E8F3E8;
  color: #2D5F3F;
}

.cookie-settings:hover {
  background-color: #7BA885;
  color: #FFFFFF;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2D5F3F;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8F3E8;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.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: #2D5F3F;
}

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .benefit-item,
  .service-card,
  .stat-item,
  .reason-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .step,
  .category-item,
  .type-item {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  .benefit-item,
  .service-card,
  .stat-item,
  .step,
  .category-item,
  .testimonial-card,
  .project-card,
  .type-item,
  .article-card,
  .contact-option,
  .reason-item,
  .action-card,
  .subsidy-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges,
  .benefits-list,
  .benefits-reminder {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .article-featured,
  .newsletter-box,
  .form-wrapper {
    padding: 32px 24px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .service-card .price {
    font-size: 20px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    text-decoration: underline;
  }
}

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

.benefit-item,
.service-card,
.testimonial-card,
.project-card,
.article-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
a:focus {
  outline: 2px solid #7BA885;
  outline-offset: 2px;
}

.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;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 3px solid #2D5F3F;
  }
  
  .btn-secondary {
    border: 3px solid #2D5F3F;
  }
}

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

/* END OF CSS */