:root {
  --primary-color: #166534; /* Dark Green */
  --primary-dark: #14532d;
  --secondary-color: #f97316; /* Bright Orange */
  --text-dark: #1a1a1a;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease-in-out;
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2, .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3, .card-title { font-size: clamp(1.2rem, 3vw, 1.5rem); }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: none;
  transition: var(--transition);
  height: 70px;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 4px;
  position: relative;
  font-size: 1rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* Sections */
main {
    padding-top: 70px;
}
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(80vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.7) 0%, rgba(20, 83, 45, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-content h1 {
  color: white;
}
.hero-content .section-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
}
.hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.page-hero {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}
.page-hero .page-header {
    margin-bottom: 0px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}
.btn-primary:hover {
  background: #ea580c;
  border-color: #ea580c;
  transform: translateY(-2px);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}
.contact-form .btn-primary {
  color: white;
}
.contact-form .btn-primary:hover {
  color: white;
}

/* Cards & Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-text {
  flex-grow: 1;
  margin-bottom: 20px;
}
.card-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}
.card-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-md);
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.card-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.feature-icon svg {
  width: 30px;
  height: 30px;
}

/* Media Object */
.media-object {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.media-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.media-copy ul {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}
.media-copy li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.media-copy li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}
.media-object.reverse {
    grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
    order: 2;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    flex-grow: 1;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}
.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.cta-section .section-title, .cta-section p {
    color: white;
}
.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}
.cta-section .btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

/* Timeline/Process */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}
.timeline-step {
    padding-top: 50px;
    position: relative;
    text-align: center;
}
.timeline-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 4px solid var(--bg-light);
    z-index: 1;
}

/* About Page Specifics */
.value-card {
    text-align: center;
    padding: 20px;
}
.value-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin: 0 auto 15px;
}
.value-icon svg { width: 100%; height: 100%;}
.team-card {
    text-align: center;
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}
.team-name { font-size: 1.25rem; }
.team-title { color: var(--primary-color); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: 0.95rem; }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info .section-title { margin-bottom: 20px;}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
}
.contact-item h3 { font-size: 1.2rem; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: var(--text-light); }
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: white;
  font-family: var(--font-main);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.map-section { padding-top: 0; }
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Thank you page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-center { text-align: center; }
.thank-you-icon {
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
.thank-you-icon svg { width: 100%; height: 100%; }

/* Legal Pages */
.legal-page { padding: 40px 0; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { margin-bottom: 20px; }
.legal-page p { margin-bottom: 15px; }
.legal-page h2 { margin-top: 30px; margin-bottom: 15px; }
.legal-page ul { margin-left: 20px; margin-bottom: 15px;}
.cookie-table { width: 100%; border-collapse: collapse; margin: 25px 0; }
.cookie-table th, .cookie-table td { border: 1px solid var(--border-color); padding: 12px; text-align: left; }
.cookie-table th { background: var(--bg-light); font-weight: 600; }

/* Footer */
.footer {
  background: var(--text-dark);
  color: #a0aec0;
  padding: 60px 0 30px;
  margin-top: 80px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}
.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #a0aec0; transition: color 0.2s ease; }
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: white; }
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-color);
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.footer-social a:hover { background: var(--secondary-color); transform: translateY(-3px); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 30px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright { font-size: 0.85rem; color: #718096; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 0.85rem; color: #718096; }
.footer-legal-links a:hover { color: white; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 2000;
    flex-wrap: wrap;
}
.cookie-banner p { margin: 0; }
.cookie-banner .btn-primary { background: var(--secondary-color); border-color: var(--secondary-color); }
.cookie-banner .btn-secondary { color: white; border-color: white; }

/* Responsive Styles */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .media-object, .media-object.reverse { grid-template-columns: 1fr; }
    .media-object.reverse .media-visual { order: 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2, .section-title { font-size: 1.7rem; }
  .grid-3, .cards-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding: 100px 20px 20px;
    gap: 25px;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  .nav-links.active { transform: translateX(0); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-social { justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .cards-grid, .grid-4, .timeline { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; }
}