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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: #1f2a24;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #1f7a4f;
  outline-offset: 2px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: #1f7a4f;
  color: #fff;
  border-color: #1f7a4f;
}

.btn-primary:hover {
  background: #17623f;
  border-color: #17623f;
}

.btn-outline {
  border-color: #1f7a4f;
  color: #1f7a4f;
}

.btn-outline:hover {
  background: #e8f4ee;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-light {
  background: #fff;
  border: 1px solid #e1e6df;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.08);
}

.top-bar {
  background: #1f2a24;
  color: #d7e3dc;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.brand span {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

.brand small {
  font-size: 12px;
  color: #5d6b63;
}

.primary-nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
  color: #2d3b33;
}

.primary-nav a:hover {
  color: #1f7a4f;
}

.primary-nav a.active {
  color: #1f7a4f;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1f2a24;
}

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0f7f2 0%, #d9e9df 100%);
  overflow: hidden;
}

.hero-copy {
  max-width: 560px;
}

.page-hero {
  padding: 80px 0 40px;
  background: #eef3ee;
}

.news-hero .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.news-hero .hero-copy {
  max-width: 100%;
  margin: 0 auto;
}

.news-hero .hero-copy h1 {
  font-size: clamp(16px, 2.4vw, 32px);
  white-space: nowrap;
  max-width: 100%;
}

.news-hero .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.projects-hero .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.projects-hero .hero-copy {
  max-width: 100%;
  margin: 0 auto;
}

.projects-hero .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.projects-hero .hero-copy h1 {
  font-size: clamp(16px, 2.4vw, 32px);
  white-space: nowrap;
  max-width: 100%;
}

.services-hero .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.services-hero .hero-copy {
  max-width: 100%;
  margin: 0 auto;
}

.services-hero .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.services-hero .hero-copy h1 {
  font-size: clamp(16px, 2.4vw, 32px);
  white-space: nowrap;
  max-width: 100%;
}

.services-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.services-why {
  padding-bottom: 0;
}

.services-page + .site-footer {
  padding-top: 20px;
}

.services-why-content h2 {
  margin-bottom: 12px;
}

.services-why-content p {
  color: #4a5a51;
}

.services-why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-start;
}

.services-why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e6ece6;
  box-shadow: 0 10px 24px rgba(31, 42, 36, 0.08);
  display: grid;
  gap: 10px;
  text-align: left;
}

.services-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eef6f0;
  color: #1f7a4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.services-why-card h4 {
  margin: 0;
}

.services-why-card p {
  margin: 0;
  color: #5d6b63;
  font-size: 14px;
}

.services-why-media {
  height: 100%;
}

.services-why-media img {
  width: 100%;
  height: 45%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .services-why-grid {
    grid-template-columns: 1fr;
  }

  .services-why-cards {
    grid-template-columns: 1fr;
  }

  .services-why-media img {
    height: 45%;
  }
}
.contact-hero {
  background: linear-gradient(135deg, #eef6f0 0%, #e3efe6 100%);
  padding: 90px 0 60px;
}

.contact-hero .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.contact-hero .hero-copy {
  max-width: 100%;
  margin: 0 auto;
}

.contact-hero .hero-copy p {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero-desc {
  font-size: clamp(13px, 1.6vw, 15px);
  white-space: nowrap;
}

.contact-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}


.page-hero .hero-copy h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
  color: #1a3a2a;
  letter-spacing: -0.5px;
}

.breadcrumb {
  font-size: 14px;
  color: #5d6b63;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .smart-data-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero {
    padding: 90px 0 60px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-copy h1 { font-size: 28px; }
  .hero-media, .split-media { min-height: 320px; }
}

@media (max-width: 600px) {
  .hero {
    padding: 70px 0 40px;
  }
  .hero-copy h1 { font-size: 22px; }
  .hero-media, .split-media {
    min-height: 220px;
    border-radius: 24px;
  }
  .hero-media img {
    transform: none;
  }
  .hero-media:hover img {
    transform: none;
  }
  .badge-row, .hero-highlights, .hero-actions { display: none; }
}

.hero-copy h1 {
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.15;
  margin: 10px 0 16px;
  color: #1a3a2a;
  max-width: 22ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero .hero-copy h1 {
  font-size: clamp(16px, 2vw, 28px);
  max-width: 34ch;
  line-height: 1.2;
}

.hero-copy p {
  color: #4a5a51;
  margin-bottom: 24px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  background: #ffffff;
  border: 1px solid #dce6df;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1f2a24;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid #e3ede6;
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
  box-shadow: 0 8px 18px rgba(31, 42, 36, 0.08);
}

.metric-card strong {
  font-size: 20px;
  color: #1f2a24;
}

.metric-card span {
  font-size: 12px;
  color: #5d6b63;
}

.hero-meta {
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: #5d6b63;
}

.hero-meta strong {
  display: block;
  color: #1f2a24;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Square for a more modern, compact look */
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px; /* Prevent it from getting too large on desktop */
  margin: 0 auto;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px; /* More rounded, modern corners */
  box-shadow: 0 30px 60px rgba(31, 42, 36, 0.15);
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(-15%);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.hero-media:hover img {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-15%) scale(1.05);
  box-shadow: 0 40px 80px rgba(31, 42, 36, 0.25);
}

.page-hero .hero-media {
  aspect-ratio: 1.5 / 1; /* Slightly wider for page banners */
  max-width: 600px;
}

.page-hero .hero-media img {
  transform: translateY(-15%);
  border-radius: 32px;
}

.contact-hero-media {
  max-width: 520px;
  margin-left: auto;
}

.page-hero .contact-hero-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 26px 52px rgba(31, 42, 36, 0.16);
}

.page-hero .contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.map-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e6ece6;
  box-shadow: 0 16px 40px rgba(31, 42, 36, 0.08);
}

.map-embed {
  width: 100%;
  height: min(420px, 60vh);
  border: 0;
  display: block;
}

.split-media {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.split-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.split:hover .split-media img {
  transform: scale(1.1);
}

/* Add a subtle glassmorphism overlay to split images */
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(21, 32, 26, 0.2));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(31, 122, 79, 0.92);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transform: none;
}

.hero-overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 14px 16px;
  width: min(220px, 70%);
  box-shadow: 0 16px 30px rgba(31, 42, 36, 0.12);
}

.hero-overlay h4 {
  margin-bottom: 6px;
}

.hero-overlay a {
  color: #1f7a4f;
  font-weight: 600;
  font-size: 13px;
}

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  color: #4a5a51;
  font-weight: 500;
}

.hero-highlights li {
  padding-left: 24px;
  position: relative;
}

.hero-highlights li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #1f7a4f;
  font-size: 14px;
  line-height: 1.2;
}

.feature-strip {
  margin-top: -18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.08);
  border: 1px solid #eef2ec;
  display: grid;
  gap: 12px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #eef3ee;
}

.smart-data-section {
  background: #f0f4f1;
  padding: 100px 0;
}

.smart-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.data-feature-list {
  display: grid;
  gap: 25px;
  margin-top: 35px;
}

.data-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.data-icon {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.smart-data-visual {
  position: relative;
}

.data-card-main {
  background: #15201a;
  color: #fff;
  padding: 30px;
  border-radius: 24px;
  width: 300px;
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.data-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #a3b3aa;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(52, 211, 153, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.data-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.data-val {
  color: #34d399;
  font-weight: 700;
}

.data-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}

.data-bar div {
  height: 100%;
  background: #1f7a4f;
}

.smart-img-accent {
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  width: 100%;
}

@media (max-width: 960px) {
  .smart-data-grid { grid-template-columns: 1fr; }
  .data-card-main { position: relative; top: 0; left: 0; width: 100%; margin-bottom: 30px; }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #1f7a4f;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f7a4f;
  font-weight: 700;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.info-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card h3 {
  margin-bottom: 8px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card img,
.project-grid img,
.news-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

.service-card div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card a {
  color: #1f7a4f;
  font-weight: 600;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e8f4ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f7a4f;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.project-grid article {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-grid div {
  padding: 16px;
  flex: 1;
}

.stats {
  padding: 100px 0;
  background: linear-gradient(to right, #1f2a24, #2d3b33);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stats-grid div {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 12px;
  transition: transform 0.3s ease;
}

.stats-grid div:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  display: block;
}

.cta-band {
  background: #1f7a4f;
  color: #ffffff;
  padding: 60px 0;
}

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

.cta-band .btn-light {
  background: #ffffff;
  color: #1f7a4f;
  border: none;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 20px 0 28px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(31, 42, 36, 0.08);
  display: grid;
  gap: 10px;
}

.marquee-container {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card-v2 {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  width: 380px;
  box-shadow: 0 15px 35px rgba(31, 42, 36, 0.06);
  border: 1px solid #eef2ec;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.quote-icon {
  font-size: 60px;
  color: #e8f4ee;
  position: absolute;
  top: 10px;
  right: 25px;
  font-family: serif;
  line-height: 1;
}

.testimonial-card-v2 p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5a51;
  position: relative;
  z-index: 1;
}

.user-meta strong {
  display: block;
  color: #1f2a24;
  font-size: 15px;
}

.user-meta span {
  font-size: 13px;
  color: #1f7a4f;
  font-weight: 600;
}

.testimonial-section {
  background: #fcfdfc;
}

.news-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 32px;
  align-items: start;
}

.news-main {
  display: grid;
  gap: 28px;
}

.news-featured-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(31, 42, 36, 0.08);
  border: 1px solid #e6ece6;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.news-featured-card.news-featured-compact {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  min-height: 320px;
}

.news-featured-card.news-featured-compact .news-featured-media {
  height: 320px;
}

.news-featured-media {
  position: relative;
  overflow: hidden;
}

.news-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.news-featured-body {
  padding: 28px;
  display: grid;
  gap: 2px;
  align-content: center;
}

.news-featured-body h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
}

.news-featured-body p {
  margin: 0;
  line-height: 1.45;
}

.news-date {
  margin: 0;
}

.news-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f7a4f;
}

.news-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.news-actions .btn {
  border-radius: 12px;
  padding: 10px 18px;
}

.news-detail-hero {
  padding: 90px 0 50px;
  text-align: center;
}

.news-detail-hero h1 {
  max-width: 900px;
  margin: 0 auto 12px;
}

.news-detail-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #1f7a4f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.news-detail-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #1f7a4f;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 32px;
  align-items: start;
}

.news-article {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(31, 42, 36, 0.08);
  border: 1px solid #e6ece6;
}

.news-article-media img {
  width: 100%;
  height: auto;
  display: block;
}

.news-article-media {
  height: auto;
}

.news-article-body {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.news-article-summary {
  font-size: 16px;
  font-weight: 600;
  color: #1f2a24;
  margin: 0;
}

.news-article-content {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5a51;
}

.news-article-actions {
  margin-top: 10px;
}

.detail-hero {
  padding: 90px 0 50px;
  text-align: center;
}

.detail-hero h1 {
  max-width: 900px;
  margin: 0 auto 12px;
}

.detail-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #1f7a4f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.detail-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #1f7a4f;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 32px;
  align-items: start;
}

.detail-article {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(31, 42, 36, 0.08);
  border: 1px solid #e6ece6;
}

.detail-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-article-media {
  height: 320px;
}

.detail-article-body {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.detail-article-summary {
  font-size: 16px;
  font-weight: 600;
  color: #1f2a24;
  margin: 0;
}

.detail-article-content {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5a51;
}

.detail-article-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 960px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    text-align: left;
  }

  .detail-meta {
    justify-content: flex-start;
  }
  .detail-article-media {
    height: 220px;
  }
}
@media (max-width: 960px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-hero {
    text-align: left;
  }

  .news-detail-meta {
    justify-content: flex-start;
  }

  .news-article-media {
    height: auto;
  }
}
.news-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.news-sidebar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e6ece6;
  box-shadow: 0 12px 26px rgba(31, 42, 36, 0.08);
  display: grid;
  gap: 16px;
}

.news-mini-list {
  display: grid;
  gap: 12px;
}

.news-mini-item {
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2ec;
}

.news-mini-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-mini-item span {
  font-size: 12px;
  font-weight: 700;
  color: #1f7a4f;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-mini-item strong {
  font-size: 14px;
  color: #1f2a24;
}

.news-mini-item:hover strong {
  color: #1f7a4f;
}

.news-sidebar-cta {
  background: #1f7a4f;
  color: #ffffff;
}

.news-sidebar-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.news-sidebar-cta .btn {
  background: #ffffff;
  color: #1f7a4f;
}

.news-side-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e6ece6;
  box-shadow: 0 12px 28px rgba(31, 42, 36, 0.08);
  display: grid;
  gap: 18px;
}

.news-side-panel h3 {
  font-size: 20px;
}

.news-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-pill {
  background: #eef6f0;
  color: #1f7a4f;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

.news-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.news-side-list strong {
  display: block;
  font-size: 18px;
  color: #1f2a24;
}

.news-side-list span {
  font-size: 13px;
  color: #5d6b63;
}

.news-empty {
  background: #ffffff;
  border: 1px dashed #cfe3d6;
  padding: 24px;
  border-radius: 18px;
  color: #4a5a51;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.news-grid article {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-grid div {
  padding: 16px;
  flex: 1;
}

.news-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-card.is-expanded .news-summary {
  display: block;
  -webkit-line-clamp: unset;
}

@media (max-width: 960px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }

  .news-highlight {
    grid-template-columns: 1fr;
  }

  .news-featured-card {
    grid-template-columns: 1fr;
  }

  .news-featured-card.news-featured-compact .news-featured-media {
    height: 240px;
  }

  .news-featured-body h2 {
    font-size: 24px;
  }
}

.link-button {
  background: none;
  border: none;
  color: #1f7a4f;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f7a4f;
  font-weight: 600;
  margin-top: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.news-link svg {
  width: 16px;
  height: 16px;
}

.news-link:hover {
  color: #145c3c;
  transform: translateX(2px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.contact-section .contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 0;
}

.contact-shell {
  background: #ffffff;
  border: 1px solid #e6ece6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 42, 36, 0.08);
}

.contact-panel {
  background: transparent;
  padding: 24px;
  border-right: 1px solid #eef2ec;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-panel h2 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.contact-panel > p {
  font-size: 13px;
  color: #4a5a51;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #eef2ec;
  box-shadow: 0 8px 18px rgba(31, 42, 36, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card h4 {
  margin-bottom: 3px;
  font-size: 13px;
}

.contact-card p {
  color: #4a5a51;
  font-size: 12px;
}

.contact-card a {
  color: #1f7a4f;
  font-weight: 600;
}

.contact-card.is-location {
  background: #f6fbf7;
  border-color: #d6e8dc;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: #cfe3d6;
  box-shadow: 0 14px 26px rgba(31, 42, 36, 0.12);
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #e8f4ee;
  color: #1f7a4f;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-sub {
  font-size: 12px;
  color: #5d6b63;
  margin-top: 4px;
}

.contact-form {
  background: transparent;
  padding: 28px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d6ddd3;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
}

.contact-form small {
  color: #5d6b63;
}

@media (max-width: 960px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    border-right: none;
    border-bottom: 1px solid #eef2ec;
  }
}

.alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
}

.alert-success {
  background: #e7f5ee;
  color: #1f7a4f;
}

.alert-error {
  background: #fdeaea;
  color: #8b2c2c;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.partner-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partner-card ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: #4a5a51;
}

.site-footer {
  background: #15201a;
  color: #ffffff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #1f7a4f, #34d399, #1f7a4f);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-brand p {
  color: #a3b3aa;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1f7a4f;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a3b3aa;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #34d399;
  transform: translateX(5px);
}

.footer-news-item {
  margin-bottom: 20px;
}

.footer-news-item span {
  display: block;
  font-size: 12px;
  color: #1f7a4f;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-news-item a {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-news-item a:hover {
  color: #ffffff;
}

.footer-empty {
  color: #a3b3aa;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(31, 122, 79, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  flex-shrink: 0;
}

.footer-contact-info span {
  display: block;
  font-size: 13px;
  color: #a3b3aa;
  margin-bottom: 2px;
}

.footer-contact-info strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-bottom-links span {
  color: #4b5563;
  font-size: 13px;
}

.footer-bottom-links a {
  color: #6b7280;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f7a4f;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 42, 36, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
  z-index: 20;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .back-to-top {
    transition: none;
  }
}

@media (max-width: 960px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav {
    position: fixed;
    top: 110px;
    right: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(31, 42, 36, 0.15);
    flex-direction: column;
    gap: 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero-badge {
    position: static;
    margin-top: 16px;
    display: inline-flex;
  }

  .hero-overlay {
    position: static;
    margin-top: 12px;
    width: 100%;
  }
}
