/* ========================================
   CSS RESET & 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, sans-serif;
  line-height: 1.6;
  color: #2D3436;
  background-color: #F8F9F5;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ========================================
   NATURE ORGANIC COLOR PALETTE
   ======================================== */

:root {
  --primary-forest: #2D5F3F;
  --primary-dark: #1D3F29;
  --secondary-sage: #7AB356;
  --accent-earth: #F4A460;
  --accent-terracotta: #D68840;
  --neutral-cream: #F8F9F5;
  --neutral-sand: #E8E4D9;
  --neutral-stone: #B8B5A8;
  --text-dark: #2D3436;
  --text-medium: #636E72;
  --white: #FFFFFF;
  --shadow-soft: rgba(45, 95, 63, 0.1);
  --shadow-medium: rgba(45, 95, 63, 0.15);
}

/* ========================================
   TYPOGRAPHY - NATURE ORGANIC STYLE
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

strong {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

/* ========================================
   HEADER - ORGANIC NATURE DESIGN
   ======================================== */

header {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-dark) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--secondary-sage);
}

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

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

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 4px;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-earth);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-earth);
}

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

/* ========================================
   MOBILE MENU - REQUIRED
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: var(--primary-forest);
  color: var(--white);
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary-sage);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-forest) 0%, var(--primary-dark) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px var(--shadow-medium);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: var(--accent-earth);
  border-color: var(--accent-earth);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-left-color: var(--accent-earth);
  transform: translateX(8px);
}

/* ========================================
   BUTTONS - ORGANIC NATURE STYLE
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.btn-primary {
  background-color: var(--primary-forest);
  color: var(--white);
  border-color: var(--primary-forest);
}

.btn-primary:hover {
  background-color: var(--secondary-sage);
  border-color: var(--secondary-sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-forest);
  border-color: var(--primary-forest);
}

.btn-secondary:hover {
  background-color: var(--primary-forest);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ========================================
   HERO SECTION - NATURE ORGANIC
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(122, 179, 86, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(244, 164, 96, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: var(--neutral-sand);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ========================================
   PAGE HERO - SMALLER VERSION
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--secondary-sage) 0%, var(--primary-forest) 100%);
  padding: 60px 24px;
  text-align: center;
  margin-bottom: 40px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--neutral-sand);
  font-size: 18px;
  margin-bottom: 0;
}

/* ========================================
   CARDS - ORGANIC NATURE DESIGN
   ======================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.service-card,
.project-card,
.testimonial-card,
.value-card,
.benefit-card,
.option-card,
.contact-card,
.suggestion-card,
.initiative-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid var(--neutral-sand);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.project-card:hover,
.option-card:hover,
.suggestion-card:hover,
.initiative-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--secondary-sage);
}

.service-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-sage) 0%, var(--accent-earth) 100%);
  border-radius: 16px 16px 0 0;
}

/* Card Typography */
.service-card h3,
.project-card h3,
.value-card h3,
.benefit-card h3,
.option-card h3 {
  color: var(--primary-forest);
  margin-bottom: 12px;
}

.service-card p,
.project-card p,
.value-card p,
.benefit-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Service Cards Specific */
.service-detail-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  border-left: 6px solid var(--secondary-sage);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 24px var(--shadow-medium);
  transform: translateY(-4px);
}

.service-detail-card .tagline {
  color: var(--text-medium);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 16px;
}

.price {
  display: inline-block;
  background-color: var(--accent-earth);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 16px;
}

.status,
.category {
  display: inline-block;
  background-color: var(--secondary-sage);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

.category {
  background-color: var(--primary-forest);
  margin-bottom: 12px;
}

.location {
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ========================================
   GRIDS - FLEXBOX ONLY
   ======================================== */

.services-grid,
.projects-grid,
.values-grid,
.benefits-grid,
.team-grid,
.options-grid,
.contact-grid,
.suggestions-grid,
.initiatives-grid,
.team-contacts-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.services-grid > *,
.projects-grid > *,
.values-grid > *,
.benefits-grid > *,
.team-grid > *,
.options-grid > *,
.contact-grid > *,
.suggestions-grid > *,
.initiatives-grid > *,
.team-contacts-grid > * {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.testimonials-grid > * {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonial-card {
  background-color: var(--neutral-cream);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  border-left: 6px solid var(--accent-earth);
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: var(--primary-forest);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 16px;
}

/* ========================================
   STATS & METRICS - ORGANIC STYLE
   ======================================== */

.stats-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

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

.stat-number,
.metric-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label,
.metric-label {
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 500;
}

/* ========================================
   TIMELINE - ORGANIC FLOW
   ======================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 4px solid var(--secondary-sage);
}

.timeline-item {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--accent-earth);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--secondary-sage);
}

.timeline-item strong {
  color: var(--primary-forest);
  font-size: 18px;
}

.timeline-item span {
  color: var(--text-dark);
}

/* ========================================
   PROGRESS BAR - ORGANIC
   ======================================== */

.progress-info {
  margin: 32px 0;
}

.progress-bar {
  width: 100%;
  height: 24px;
  background-color: var(--neutral-sand);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-sage) 0%, var(--primary-forest) 100%);
  border-radius: 50px;
  transition: width 0.6s ease;
}

.stats-small {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.stats-small span {
  background-color: var(--neutral-cream);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--primary-forest);
  border: 2px solid var(--neutral-sand);
}

/* ========================================
   FEATURED SECTIONS
   ======================================== */

.mission,
.services-overview,
.featured-projects,
.impact-metrics,
.cta-participation,
.contact-teaser,
.story,
.values,
.team,
.cta,
.projects-current,
.projects-impact,
.services-detail,
.testimonials,
.featured-initiative,
.initiatives-list,
.impact-tracker,
.participation-intro,
.participation-options,
.contact-intro,
.contact-info,
.contact-team,
.contact-form-section,
.map-section,
.confirmation,
.suggestions,
.back-navigation {
  padding: 60px 24px;
  margin-bottom: 40px;
}

.mission,
.services-overview,
.impact-metrics,
.values,
.participation-intro {
  background-color: var(--neutral-cream);
  border-radius: 16px;
}

.featured-projects,
.cta-participation,
.featured-initiative {
  background: linear-gradient(135deg, rgba(122, 179, 86, 0.1) 0%, rgba(45, 95, 63, 0.05) 100%);
  border-radius: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 40px;
}

/* ========================================
   TEAM MEMBERS
   ======================================== */

.team-member,
.contact-person {
  background-color: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
  text-align: center;
  border-top: 4px solid var(--secondary-sage);
  transition: all 0.3s ease;
}

.team-member:hover,
.contact-person:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.team-member h3,
.contact-person h3 {
  color: var(--primary-forest);
  margin-bottom: 8px;
}

.role {
  color: var(--accent-earth);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  display: block;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */

.contact-info .contact-card,
.contact-team .contact-person {
  margin-bottom: 24px;
}

.form-placeholder {
  background-color: var(--white);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  border: 2px dashed var(--neutral-stone);
  margin: 32px 0;
}

.form-placeholder a {
  color: var(--primary-forest);
  font-weight: 600;
  text-decoration: underline;
}

.directions {
  background-color: var(--neutral-cream);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
}

.directions h3 {
  color: var(--primary-forest);
  margin-bottom: 16px;
}

.note {
  color: var(--text-medium);
  font-style: italic;
  font-size: 14px;
  margin-top: 12px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, var(--secondary-sage) 0%, var(--primary-forest) 100%);
  padding: 80px 24px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  color: var(--secondary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.thank-you-hero h1 {
  color: var(--white);
}

.subtitle {
  color: var(--neutral-sand);
  font-size: 18px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-content h2 {
  color: var(--primary-forest);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--neutral-sand);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--primary-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

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

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========================================
   FOOTER - ORGANIC NATURE STYLE
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1A2F20 100%);
  color: var(--white);
  padding: 60px 24px 24px;
  margin-top: 80px;
  border-top: 4px solid var(--secondary-sage);
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: var(--accent-earth);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: var(--neutral-sand);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: var(--neutral-sand);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent-earth);
  padding-left: 8px;
}

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

.footer-bottom p {
  color: var(--neutral-stone);
  font-size: 14px;
  margin: 0;
}

/* ========================================
   COOKIE CONSENT BANNER - REQUIRED
   ======================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-forest) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-medium);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--secondary-sage);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}
.cookie-text p {
  color: white;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 14px;
}

.cookie-btn-accept {
  background-color: var(--secondary-sage);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: var(--accent-earth);
  transform: scale(1.05);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h2 {
  color: var(--primary-forest);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--neutral-cream);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-sage);
}

.cookie-category h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  cursor: pointer;
  font-weight: 500;
}

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

/* ========================================
   BENEFITS LIST
   ======================================== */

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

.benefits-list span {
  background-color: var(--secondary-sage);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

/* ========================================
   LABEL & BADGE STYLES
   ======================================== */

.label {
  display: inline-block;
  background-color: var(--accent-earth);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.participants {
  color: var(--text-medium);
  font-size: 14px;
  font-style: italic;
}

.commitment {
  color: var(--primary-forest);
  font-weight: 600;
  font-size: 15px;
  margin: 12px 0;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero,
  .page-hero {
    padding: 48px 20px;
  }
  
  /* Grids */
  .services-grid > *,
  .projects-grid > *,
  .values-grid > *,
  .benefits-grid > *,
  .team-grid > *,
  .options-grid > *,
  .contact-grid > *,
  .suggestions-grid > *,
  .initiatives-grid > *,
  .team-contacts-grid > *,
  .testimonials-grid > * {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stat-item,
  .metric-item {
    flex: 1 1 100%;
  }
  
  .stat-number,
  .metric-number {
    font-size: 36px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cards */
  .service-card,
  .project-card,
  .testimonial-card,
  .service-detail-card {
    padding: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
  
  /* Form Placeholder */
  .form-placeholder {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stats-small {
    flex-direction: column;
  }
  
  .stats-small span {
    text-align: center;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll offset for fixed header */
html {
  scroll-padding-top: 100px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--accent-earth);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ========================================
   END OF STYLES
   ======================================== */
