:root {
  --hc-green: #2F6F4E;
  --hc-green-dark: #255A3F;
  --hc-text: #1F2937;
  --hc-muted: #6B7280;
  --hc-bg: #F5F7F6;
  --hc-border: #E6E8EB;
}

/* RESET */

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--hc-text);
  background: #ffffff;
  margin: 0;
  padding-top: 100px;
}

.site-header {
  background: #eef2e8;
  border-bottom: 1px solid rgba(47, 111, 78, 0.08);
  transition: all 0.3s ease;
  z-index: 1000;
}

.site-header.scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.navbar {
  padding-top: 22px;
  padding-bottom: 22px;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.header-brand-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.navbar-brand {
  margin-right: 0;
  flex: 0 0 auto;
}

.navbar-brand img {
  height: 74px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar-brand img {
  height: 56px;
}

.header-project-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.header-project-title {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hc-green);
  margin-bottom: 8px;
}

.header-project-subtitle {
  font-size: 1rem;
  line-height: 1.3;
  color: #5e6b63;
  max-width: 320px;
}

.site-header.scrolled .header-project-title {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.site-header.scrolled .header-project-subtitle {
  font-size: 0.9rem;
}

.navbar-collapse {
  flex-grow: 0;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--hc-text);
  transition: color 0.2s ease;
  padding-left: 0;
  padding-right: 0;
}

.nav-link:hover {
  color: var(--hc-green);
}

.nav-link.active {
  color: var(--hc-green) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--hc-green);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-stripe {
  height: 4px;
  background: var(--hc-green);
  width: 100%;
}

@media (max-width: 991.98px) {
  .header-inner {
    align-items: flex-start;
  }

  .header-brand-wrap {
    gap: 14px;
  }

  .navbar-brand img {
    height: 60px;
  }

  .header-project-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  .header-project-subtitle {
    font-size: 0.9rem;
    max-width: 220px;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 14px;
  }

  .navbar-nav {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .header-project-text {
    display: none;
  }

  .navbar-brand img {
    height: 58px;
  }
}

/* MENU */

.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--hc-text);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--hc-green);
}

.nav-link.active {
  color: var(--hc-green) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--hc-green);
  transition: width 0.25s ease;
}

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

/* GREEN STRIPE */

.navbar-stripe {
  height: 4px;
  background: var(--hc-green);
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
  color: #ffffff;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.85;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions .btn {
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 6px;
}

/* BUTTONS */

.btn-hc {
  background: var(--hc-green);
  border: none;
  color: #ffffff;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn-hc:hover {
  background: var(--hc-green-dark);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background: var(--hc-bg);
}

.section-title {
  font-weight: 700;
  margin-bottom: 25px;
}

.section-muted {
  color: var(--hc-muted);
}

/* KEY FIGURES */

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--hc-green);
  margin-bottom: 5px;
}

/* OVERVIEW BOX */

.overview-box {
  background: #F5F7F6;
  border-left: 4px solid var(--hc-green);
  border-radius: 6px;
}

/* CARDS */

.card {
  border: 1px solid var(--hc-border);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--hc-border);
  background: #ffffff;
  padding: 30px 0;
  font-size: 0.9rem;
  color: var(--hc-muted);
}

/* CONTAINER WIDTH */

.container-wide {
  max-width: 1200px;
}

.stat-item {
  transition: transform 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--hc-green);
  margin-bottom: 5px;
  transition: all 0.25s ease;
}

.stat-item:hover .impact-number {
  color: var(--hc-green-dark);
  transform: scale(1.12);
}

.partner-box,
.partner-box:hover,
.partner-box:focus,
.partner-box:active {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.partner-box .card {
  cursor: pointer;
}

.partner-box,
.partner-box:hover,
.partner-box:focus,
.partner-box:active {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.partner-card {
  overflow: hidden;
}

.partner-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 150px;
}

.partner-card-lg .partner-card-content {
  min-height: 170px;
}

.partner-card-text {
  flex: 1 1 auto;
  min-width: 0;
}

.partner-card-logo-wrap {
  flex: 0 0 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.partner-card-lg .partner-card-logo-wrap {
  flex-basis: 28%;
  min-height: 140px;
}

.partner-card-logo {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-card-lg .partner-card-logo {
  max-height: 130px;
}

@media (max-width: 767.98px) {
  .partner-card-content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .partner-card-logo-wrap,
  .partner-card-lg .partner-card-logo-wrap {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    flex-basis: auto;
  }

  .partner-card-logo,
  .partner-card-lg .partner-card-logo {
    max-height: 80px;
  }
}

.footer-extended {
  background: #111315;
  color: #ffffff;
  padding: 60px 0 35px;
  border-top: none;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-text {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.social-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.eu-badge {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: inline-block;
  background: #ffffff;
  padding: 6px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 35px 0 22px;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 767.98px) {
  .footer-extended {
    text-align: left;
  }

  .eu-badge {
    margin-top: 10px;
    max-width: 200px;
  }
}

.news-toggle {
  border: 1px solid var(--hc-border);
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.news-toggle:hover {
  border-color: var(--hc-green);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.news-gallery-box {
  padding: 18px 20px 4px;
  border-left: 1px solid var(--hc-border);
  border-right: 1px solid var(--hc-border);
  border-bottom: 1px solid var(--hc-border);
  border-radius: 0 0 8px 8px;
  background: #fff;
  margin-top: -8px;
}

.news-gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.brand-divider {
  width: 1px;
  height: 40px;
  background: #7d8b82;
  opacity: 0.5;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.brand-line {
  font-size: 15px;
  font-weight: 500;
  color: #4e5c55;
  letter-spacing: 0.02em;
}