/* =================================================================
   GRÜNRAUM DÜSSELDORF - ELEGANT CLASSIC DESIGN SYSTEM
   Design Style: Timeless elegant design with refined elements
   ================================================================= */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #fdfbf7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY - ELEGANT CLASSIC ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

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

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

a:hover {
  color: #1E5436;
}

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

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

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

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

.section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* ===== HEADER - ELEGANT CLASSIC ===== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e5df;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

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

.main-nav a {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #2D7A4F;
  border-bottom-color: #2D7A4F;
}

.cta-button {
  background-color: #2D7A4F;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #2D7A4F;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1E5436;
  border-color: #1E5436;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.2);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #2D7A4F;
  color: #ffffff;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2000;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1E5436;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fdfbf7;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 1px solid #e8e5df;
}

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

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

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

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

.mobile-nav a {
  color: #4a4a4a;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e5df;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

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

/* ===== HERO SECTION - ELEGANT CLASSIC ===== */
.hero {
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 100%);
  padding: 100px 0 80px;
  border-bottom: 1px solid #e8e5df;
}

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

.hero-badge {
  display: inline-block;
  background-color: rgba(45, 122, 79, 0.08);
  color: #2D7A4F;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  border: 1px solid rgba(45, 122, 79, 0.2);
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 1.3;
}

.hero-subheadline {
  font-size: 20px;
  color: #6a6a6a;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* ===== BUTTONS - ELEGANT CLASSIC ===== */
.btn-primary, .btn-secondary {
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid;
  font-family: 'Georgia', serif;
}

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

.btn-primary:hover {
  background-color: #1E5436;
  border-color: #1E5436;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 122, 79, 0.25);
  color: #ffffff;
}

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

.btn-secondary:hover {
  background-color: #2D7A4F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 122, 79, 0.2);
}

/* ===== HERO INTERNAL ===== */
.hero-internal {
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid #e8e5df;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #6a6a6a;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #6a6a6a;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #2D7A4F;
}

.breadcrumb span {
  color: #2D7A4F;
}

.hero-subtitle, .last-updated {
  font-size: 18px;
  color: #6a6a6a;
  margin-top: 16px;
}

/* ===== STATS SECTION ===== */
.impact-stats {
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e5df;
}

.impact-stats h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 60px;
}

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

.stat-item {
  text-align: center;
  min-width: 200px;
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  color: #2D7A4F;
  margin-bottom: 12px;
  font-family: 'Garamond', serif;
}

.stat-label {
  font-size: 15px;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  padding: 80px 0;
  background-color: #fdfbf7;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement {
  font-size: 20px;
  font-style: italic;
  color: #2D7A4F;
  border-left: 3px solid #2D7A4F;
  padding-left: 24px;
  margin: 32px 0;
}

.values-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.values-list li {
  background-color: rgba(45, 122, 79, 0.08);
  padding: 12px 24px;
  border-radius: 2px;
  color: #2D7A4F;
  font-weight: 500;
  border: 1px solid rgba(45, 122, 79, 0.2);
}

/* ===== SERVICES GRID - FLEXBOX ONLY ===== */
.services-overview {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
}

.service-card {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 36px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D7A4F;
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

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

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 18px;
  font-weight: 600;
  color: #2D7A4F;
  margin-top: auto;
}

.services-overview .btn-secondary {
  display: block;
  margin: 40px auto 0;
  max-width: 280px;
  text-align: center;
}

/* ===== TESTIMONIALS - PROPER CONTRAST ===== */
.testimonials {
  padding: 80px 0;
  background-color: #fdfbf7;
}

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

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

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 36px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e8e5df;
  padding-top: 20px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #6a6a6a;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid #e8e5df;
}

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

.contact-cta p {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

.contact-info-block {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.contact-info-block p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
  padding: 80px 0;
  background-color: #fdfbf7;
}

.projects-grid .container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.project-card {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D7A4F;
}

.category-tag {
  display: inline-block;
  background-color: rgba(45, 122, 79, 0.08);
  color: #2D7A4F;
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(45, 122, 79, 0.2);
  margin-bottom: 8px;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.location {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 12px;
}

.status-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
  border: 1px solid;
}

.status-badge.abgeschlossen {
  background-color: rgba(45, 122, 79, 0.08);
  color: #2D7A4F;
  border-color: rgba(45, 122, 79, 0.2);
}

.status-badge.laufend {
  background-color: rgba(244, 162, 97, 0.08);
  color: #D17A2E;
  border-color: rgba(244, 162, 97, 0.2);
}

/* ===== IMPACT SHOWCASE ===== */
.impact-showcase {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.impact-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin-top: 60px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}

.metric img {
  width: 64px;
  height: 64px;
}

.metric-number {
  font-size: 42px;
  font-weight: 300;
  color: #2D7A4F;
  font-family: 'Garamond', serif;
}

.metric-label {
  font-size: 15px;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== MISSION VISION ===== */
.mission-vision {
  padding: 80px 0;
  background-color: #fdfbf7;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  justify-content: center;
}

.value-item {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 240px;
  max-width: 420px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #2D7A4F;
}

.value-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

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

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

/* ===== STORY & TIMELINE ===== */
.story {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.story > .container > p {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 17px;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.milestone {
  background-color: #fdfbf7;
  border-left: 3px solid #2D7A4F;
  padding: 24px 24px 24px 32px;
  transition: all 0.3s ease;
}

.milestone:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.milestone strong {
  font-size: 24px;
  color: #2D7A4F;
  display: block;
  margin-bottom: 8px;
  font-family: 'Garamond', serif;
}

.milestone p {
  font-size: 15px;
  color: #4a4a4a;
  margin: 0;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed {
  padding: 80px 0;
  background-color: #fdfbf7;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 17px;
}

.service-detailed-card {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 40px;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

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

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

.service-detailed-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.service-detailed-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.service-detailed-card ul {
  margin: 24px 0;
  list-style: none;
}

.service-detailed-card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.service-detailed-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D7A4F;
  font-weight: bold;
}

.service-detailed-card .price {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #2D7A4F;
  margin: 24px 0;
}

.service-detailed-card .btn-secondary {
  margin-top: 16px;
}

/* ===== PROCESS STEPS ===== */
.process {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 32px 24px;
  flex: 1 1 calc(20% - 24px);
  min-width: 160px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #2D7A4F;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #2D7A4F;
  color: #ffffff;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.step p {
  font-size: 14px;
  color: #6a6a6a;
  margin: 0;
}

/* ===== CONSULTATION CTA ===== */
.consultation-cta {
  padding: 80px 0;
  background-color: #fdfbf7;
  text-align: center;
}

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

.consultation-cta p {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

.consultation-cta ul {
  list-style: none;
  max-width: 400px;
  margin: 32px auto;
  text-align: left;
}

.consultation-cta ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  color: #4a4a4a;
}

.consultation-cta ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D7A4F;
  font-weight: bold;
  font-size: 18px;
}

/* ===== PARTICIPATION & ENGAGEMENT ===== */
.participation-intro {
  padding: 60px 0;
  background-color: #fdfbf7;
}

.participation-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.participation-intro p {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 17px;
}

.impact-statement {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #2D7A4F;
  margin-top: 32px;
}

.engagement-options {
  padding: 80px 0;
  background-color: #ffffff;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.option-card {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 36px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 480px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D7A4F;
}

.option-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto;
}

.option-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.option-card p {
  font-size: 15px;
  color: #4a4a4a;
  flex-grow: 1;
}

/* ===== UPCOMING EVENTS ===== */
.upcoming-events {
  padding: 80px 0;
  background-color: #fdfbf7;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.event-card {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #2D7A4F;
}

.event-date {
  display: inline-block;
  background-color: #2D7A4F;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.event-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.event-location {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 12px;
}

.participants {
  font-size: 14px;
  color: #2D7A4F;
  font-weight: 500;
  margin-top: auto;
}

/* ===== NEWS GRID ===== */
.featured-news {
  padding: 60px 0 40px;
  background-color: #fdfbf7;
}

.featured-article {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.article-date {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.article-excerpt {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.8;
}

.news-grid {
  padding: 60px 0;
  background-color: #ffffff;
}

.news-grid .container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.news-card {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D7A4F;
}

.news-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.news-card p {
  font-size: 15px;
  color: #4a4a4a;
  flex-grow: 1;
}

/* ===== NEWSLETTER ===== */
.newsletter-signup {
  padding: 80px 0;
  background-color: #fdfbf7;
  text-align: center;
}

.newsletter-signup h2 {
  margin-bottom: 16px;
}

.newsletter-signup p {
  font-size: 18px;
  color: #6a6a6a;
  margin-bottom: 32px;
}

.newsletter-signup ul {
  list-style: none;
  max-width: 500px;
  margin: 32px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.newsletter-signup ul li {
  background-color: rgba(45, 122, 79, 0.08);
  padding: 12px 24px;
  border-radius: 2px;
  color: #2D7A4F;
  font-weight: 500;
  border: 1px solid rgba(45, 122, 79, 0.2);
}

.newsletter-form-placeholder {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 40px;
  max-width: 500px;
  margin: 32px auto 0;
}

/* ===== CONTACT PAGE ===== */
.contact-intro {
  padding: 60px 0;
  background-color: #fdfbf7;
}

.contact-intro p {
  max-width: 800px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 17px;
}

.response-note {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2D7A4F;
  margin-top: 24px;
}

.contact-content {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-content .container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form-section {
  flex: 1 1 500px;
  max-width: 600px;
}

.form-note {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 32px;
  margin-top: 24px;
}

.form-note p {
  margin-bottom: 24px;
}

.contact-information {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
}

.contact-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.contact-item p {
  font-size: 15px;
  margin: 0;
  color: #4a4a4a;
}

.map-section {
  padding: 80px 0;
  background-color: #fdfbf7;
}

.map-placeholder {
  background-color: #ffffff;
  border: 1px solid #e8e5df;
  padding: 80px 32px;
  text-align: center;
  max-width: 800px;
  margin: 32px auto 0;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.map-placeholder p {
  font-size: 18px;
  color: #4a4a4a;
  margin: 8px 0;
}

.transport-info {
  font-size: 15px;
  color: #6a6a6a;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 60px 0 80px;
  background-color: #fdfbf7;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== THANK YOU PAGE ===== */
.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D7A4F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.confirmation-message {
  padding: 60px 0;
  background-color: #fdfbf7;
  text-align: center;
}

.confirmation-message h2 {
  margin-bottom: 24px;
}

.confirmation-message p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 17px;
}

.confirmation-note {
  background-color: rgba(45, 122, 79, 0.08);
  padding: 16px 24px;
  border-radius: 2px;
  display: inline-block;
  margin: 24px auto;
  border: 1px solid rgba(45, 122, 79, 0.2);
}

.confirmation-message h3 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.confirmation-message ol {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.confirmation-message ol li {
  margin-bottom: 16px;
  font-size: 16px;
}

.response-time {
  font-size: 15px;
  color: #2D7A4F;
  font-weight: 600;
  margin-top: 32px;
}

.helpful-links {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.link-card {
  background-color: #fdfbf7;
  border: 1px solid #e8e5df;
  padding: 32px;
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D7A4F;
}

.link-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.link-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.link-card p {
  font-size: 14px;
  color: #6a6a6a;
  flex-grow: 1;
}

.back-to-home {
  padding: 60px 0;
  text-align: center;
  background-color: #fdfbf7;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid #e8e5df;
}

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

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

.cta-section a {
  margin: 0 12px;
}

.volunteer-form-cta {
  padding: 80px 0;
  background-color: #fdfbf7;
  text-align: center;
}

/* ===== FOOTER - ELEGANT CLASSIC ===== */
footer {
  background-color: #1a1a1a;
  color: #c9c9c9;
  padding: 60px 0 32px;
  border-top: 2px solid #2D7A4F;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid #3a3a3a;
  margin-bottom: 32px;
}

.footer-logo-section {
  flex: 1 1 300px;
  max-width: 400px;
}

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

.tagline {
  font-size: 15px;
  line-height: 1.7;
  color: #c9c9c9;
  font-style: italic;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  flex: 1 1 500px;
  justify-content: flex-start;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  color: #c9c9c9;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #52B788;
  padding-left: 4px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #c9c9c9;
}

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

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: #999;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #52B788;
}

/* ===== COOKIE CONSENT BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #2D7A4F;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: 2px solid;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  background: transparent;
}

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

.cookie-btn.accept:hover {
  background-color: #1E5436;
  border-color: #1E5436;
}

.cookie-btn.reject {
  background-color: transparent;
  color: #6a6a6a;
  border-color: #c9c9c9;
}

.cookie-btn.reject:hover {
  background-color: #f0f0f0;
  border-color: #999;
}

.cookie-btn.settings {
  background-color: transparent;
  color: #2D7A4F;
  border-color: #2D7A4F;
}

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

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
  padding: 32px;
  border-bottom: 1px solid #e8e5df;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  font-size: 24px;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #6a6a6a;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2D7A4F;
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 32px;
}

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

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

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #e8e5df;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 48px; }
  
  .services-grid, .projects-grid .container > div, .news-grid .container > div {
    justify-content: center;
  }
  
  .service-card, .project-card, .news-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .footer-columns {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU DISPLAY */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav, .cta-button {
    display: none;
  }
  
  header .container {
    justify-content: center;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 38px; }
  .hero-subheadline { font-size: 17px; }
  
  /* SECTIONS */
  .section { padding: 40px 0; margin-bottom: 40px; }
  .hero { padding: 60px 0 50px; }
  .hero-internal { padding: 60px 0 40px; }
  
  /* BUTTONS */
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { text-align: center; }
  
  /* GRIDS - STACK ON MOBILE */
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-item { min-width: 100%; }
  
  .services-grid, .testimonial-grid, .options-grid, .event-cards,
  .projects-grid .container > div, .news-grid .container > div,
  .links-grid, .impact-metrics, .values-grid, .process-steps {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card, .testimonial-card, .option-card, .event-card,
  .project-card, .news-card, .link-card, .metric, .value-item, .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* FOOTER */
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-columns { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  
  /* CONTACT */
  .contact-content .container { flex-direction: column; }
  .contact-form-section, .contact-information { flex: 1 1 100%; max-width: 100%; }
  
  /* COOKIE BANNER */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1 1 100%; }
  
  /* PADDING ADJUSTMENTS */
  .container { padding: 0 20px; }
  .service-card, .project-card, .testimonial-card { padding: 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 32px; }
  .hero-subheadline { font-size: 16px; }
  
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 13px; }
  
  .stat-number { font-size: 40px; }
  .metric-number { font-size: 36px; }
  
  .container { padding: 0 16px; }
}