@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #374151;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
}

.re-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  color: #1A2E20;
  margin-top: 0;
}

a {
  color: #2E8B57;
  text-decoration: none;
}

a:hover {
  color: #246E46;
}

img {
  max-width: 100%;
  height: auto;
}

.re-btn-primary {
  display: inline-block;
  background: #2E8B57;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.re-btn-primary:hover {
  background: #246E46;
  color: #FFFFFF;
}

.re-btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2E8B57;
  border: 2px solid #2E8B57;
  border-radius: 10px;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.re-btn-secondary:hover {
  background: rgba(46, 139, 87, 0.08);
  color: #2E8B57;
}

.re-btn-dark {
  display: inline-block;
  background: #FFFFFF;
  color: #2E8B57;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.re-btn-dark:hover {
  background: #F0F7F4;
  color: #2E8B57;
}

.re-section {
  padding: 80px 0;
}

.re-section-alt {
  padding: 80px 0;
  background: #F0F7F4;
}

.re-section-dark {
  padding: 80px 0;
  background: #0F1F16;
}

.re-section-compact {
  padding: 60px 0;
}

.re-section-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #1A2E20;
  margin-bottom: 16px;
}

.re-section-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 48px;
}

.re-badge {
  display: inline-block;
  background: #D1FAE5;
  color: #2E8B57;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  height: 64px;
  display: flex;
  align-items: center;
}

.site-header.nav-transparent {
  background: #0F1F16;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.site-header.nav-solid {
  background: rgba(15, 31, 22, 0.97);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.site-header.scrolled {
  background: rgba(15, 31, 22, 0.97);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.re-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.re-nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header.nav-transparent .re-nav-logo {
  color: #FFFFFF;
}

.site-header.nav-solid .re-nav-logo,
.site-header.scrolled .re-nav-logo {
  color: #FFFFFF;
}

.re-nav-logo span {
  color: #2E8B57;
}

.re-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.re-nav-links li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}

.re-nav-links li a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.re-nav-links li a.active {
  color: #FFFFFF;
  background: rgba(46, 139, 87, 0.25);
}

.re-nav-cta {
  background: #2E8B57 !important;
  color: #FFFFFF !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.re-nav-cta:hover {
  background: #246E46 !important;
  color: #FFFFFF !important;
}

.re-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.re-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s;
}

.re-hero-split {
  padding: 110px 0 90px;
  background:
    linear-gradient(135deg, rgba(15,31,22,0.88) 0%, rgba(26,58,40,0.78) 55%, rgba(15,31,22,0.92) 100%),
    url('../media/hero-bg.webp') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.re-hero-split .re-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.re-hero-content {
  flex: 1;
  max-width: 540px;
}

.re-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.re-hero-content h1 span {
  color: #2E8B57;
}

.re-hero-content p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.re-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.re-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.re-hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.re-mini-hero {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.re-mini-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 22, 0.72);
  z-index: 1;
}

.re-mini-hero .re-container {
  position: relative;
  z-index: 2;
}

.re-mini-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.re-mini-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.re-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.re-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.re-breadcrumb a:hover {
  color: #FFFFFF;
}

.re-stats-bar {
  padding: 60px 0;
  background: #F0F7F4;
  background-image: url('../media/stats-bg.webp');
  background-size: cover;
  background-position: center;
}

.re-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.re-stat-item {
  text-align: center;
}

.re-stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #2E8B57;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.re-stat-label {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.re-stat-icon {
  font-size: 22px;
  color: #2E8B57;
  margin-bottom: 12px;
}

.re-features-alt .re-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid #E5E7EB;
}

.re-features-alt .re-feature-row:last-child {
  border-bottom: none;
}

.re-features-alt .re-feature-row.reverse {
  flex-direction: row-reverse;
}

.re-feature-img {
  flex: 1;
}

.re-feature-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.re-feature-text {
  flex: 1;
}

.re-feature-icon {
  width: 52px;
  height: 52px;
  background: #D1FAE5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #2E8B57;
}

.re-feature-text h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #1A2E20;
  margin-bottom: 14px;
}

.re-feature-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 24px;
}

.re-feature-link {
  font-size: 15px;
  font-weight: 600;
  color: #2E8B57;
  text-decoration: none;
}

.re-feature-link:hover {
  color: #246E46;
  text-decoration: underline;
}

.re-process {
  padding: 80px 0;
  background: #FFFFFF;
}

.re-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.re-process-step {
  text-align: center;
  padding: 32px 20px;
  background: #F0F7F4;
  border-radius: 16px;
}

.re-step-num {
  width: 48px;
  height: 48px;
  background: #2E8B57;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.re-step-icon {
  font-size: 24px;
  color: #2E8B57;
  margin-bottom: 12px;
}

.re-process-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 10px;
}

.re-process-step p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.re-testimonials {
  padding: 80px 0;
  background-image: url('../media/testimonial-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.re-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 22, 0.82);
  z-index: 1;
}

.re-testimonials .re-container {
  position: relative;
  z-index: 2;
}

.re-testimonials .re-section-title {
  color: #FFFFFF;
  text-align: center;
}

.re-testimonials .re-section-sub {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.re-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.re-testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.re-testimonial-quote {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  flex: 1;
}

.re-testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

.re-testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.re-cta-banner {
  padding: 80px 0;
  background: #0F1F16;
  text-align: center;
}

.re-cta-banner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.re-cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.re-cta-card {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.re-cta-card h2 {
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.re-cta-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.site-footer {
  background: #0F1F16;
  padding: 64px 0 0;
}

.re-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.re-footer-brand .re-footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 12px;
}

.re-footer-brand .re-footer-logo span {
  color: #2E8B57;
}

.re-footer-brand p {
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 20px;
}

.re-footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.re-footer-social li a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.re-footer-social li a:hover {
  background: #2E8B57;
  color: #FFFFFF;
}

.re-footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.re-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.re-footer-col ul li {
  margin-bottom: 10px;
}

.re-footer-col ul li a {
  font-size: 15px;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}

.re-footer-col ul li a:hover {
  color: #FFFFFF;
}

.re-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.re-footer-contact-item i {
  font-size: 14px;
  color: #2E8B57;
  margin-top: 3px;
  flex-shrink: 0;
}

.re-footer-contact-item span {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.5;
}

.re-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.re-footer-bottom p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.re-footer-bottom a {
  color: #6B7280;
  text-decoration: none;
}

.re-footer-bottom a:hover {
  color: #FFFFFF;
}

.re-features-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.re-feature-card {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.re-feature-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.re-feature-card-icon {
  width: 48px;
  height: 48px;
  background: #D1FAE5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2E8B57;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.re-feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 10px;
  line-height: 1.3;
}

.re-feature-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.re-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.re-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: #D1FAE5;
  z-index: 0;
}

.re-timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.re-timeline-dot {
  width: 56px;
  height: 56px;
  background: #2E8B57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #FFFFFF;
  border: 4px solid #F0F7F4;
}

.re-timeline-step h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 8px;
}

.re-timeline-step p {
  font-size: 14px;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}

.re-about-story {
  padding: 80px 0;
  background: #FFFFFF;
}

.re-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.re-story-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1A2E20;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.re-story-text p {
  font-size: 17px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 18px;
}

.re-story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.re-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.re-principle-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.re-principle-icon {
  font-size: 36px;
  color: #2E8B57;
  margin-bottom: 20px;
}

.re-principle-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 12px;
}

.re-principle-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.re-stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.re-stat-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.re-stat-card .re-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #2E8B57;
  margin-bottom: 8px;
  line-height: 1;
}

.re-stat-card .re-stat-label {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.re-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.re-team-card {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
}

.re-team-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.re-team-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 4px;
}

.re-team-card .re-team-title {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0.02em;
}

.re-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.re-contact-form-col h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1A2E20;
  margin-bottom: 8px;
}

.re-contact-form-col p {
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 28px;
}

.re-form-group {
  margin-bottom: 20px;
}

.re-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 6px;
}

.re-form-group input,
.re-form-group textarea,
.re-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #374151;
  background: #FFFFFF;
  transition: border-color 0.2s;
  outline: none;
}

.re-form-group input:focus,
.re-form-group textarea:focus,
.re-form-group select:focus {
  border-color: #2E8B57;
}

.re-form-group input::placeholder,
.re-form-group textarea::placeholder {
  color: #9CA3AF;
}

.re-form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.re-contact-info-card {
  background: #F0F7F4;
  border-radius: 20px;
  padding: 40px 32px;
}

.re-contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1A2E20;
  margin-bottom: 24px;
}

.re-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.re-contact-info-item:last-child {
  margin-bottom: 0;
}

.re-contact-icon {
  width: 44px;
  height: 44px;
  background: #2E8B57;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.re-contact-info-item .re-contact-detail h5 {
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.re-contact-info-item .re-contact-detail p {
  font-size: 15px;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

.re-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.re-blog-card {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
}

.re-blog-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.re-blog-card-img {
  height: 200px;
  overflow: hidden;
}

.re-blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.re-blog-card:hover .re-blog-card-img img {
  transform: scale(1.04);
}

.re-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.re-blog-card-date {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.re-blog-card-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1A2E20;
  margin-bottom: 10px;
  line-height: 1.35;
}

.re-blog-card-body h3 a {
  color: #1A2E20;
  text-decoration: none;
  transition: color 0.2s;
}

.re-blog-card-body h3 a:hover {
  color: #2E8B57;
}

.re-blog-card-body p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.re-read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2E8B57;
  text-decoration: none;
  margin-top: auto;
  padding-top: 16px;
}

.re-read-more:hover {
  color: #246E46;
  text-decoration: underline;
}

.re-legal-content {
  padding: 60px 0 80px;
}

.re-legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.re-legal-body h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1A2E20;
  margin-bottom: 8px;
}

.re-legal-body .re-legal-date {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 36px;
}

.re-legal-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1A2E20;
  margin-top: 40px;
  margin-bottom: 12px;
}

.re-legal-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1A2E20;
  margin-top: 28px;
  margin-bottom: 10px;
}

.re-legal-body p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

.re-legal-body ul {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 16px;
}

.re-legal-body ul li {
  margin-bottom: 6px;
}

.re-404-page {
  min-height: 100vh;
  background: #F0F7F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.re-404-logo {
  margin-bottom: 48px;
}

.re-404-logo a {
  font-size: 26px;
  font-weight: 800;
  color: #1A2E20;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.re-404-logo a span {
  color: #2E8B57;
}

.re-404-num {
  font-size: 80px;
  font-weight: 800;
  color: #2E8B57;
  line-height: 1;
  margin-bottom: 16px;
}

.re-404-page h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1A2E20;
  margin-bottom: 12px;
}

.re-404-page p {
  font-size: 17px;
  color: #6B7280;
  margin-bottom: 32px;
  max-width: 400px;
}

.re-404-footer {
  margin-top: 80px;
  font-size: 14px;
  color: #6B7280;
}

body.page-subdir {
  padding-top: 64px;
}

body.page-root-sub {
  padding-top: 64px;
}

@media (max-width: 1024px) {
  .re-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .re-hero-split .re-container {
    flex-direction: column;
    gap: 40px;
  }
  .re-hero-content {
    max-width: 100%;
    text-align: center;
  }
  .re-hero-btns {
    justify-content: center;
  }
  .re-hero-image {
    justify-content: center;
  }
  .re-features-alt .re-feature-row,
  .re-features-alt .re-feature-row.reverse {
    flex-direction: column;
  }
  .re-story-grid {
    grid-template-columns: 1fr;
  }
  .re-contact-split {
    grid-template-columns: 1fr;
  }
  .re-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .re-timeline {
    flex-direction: column;
    align-items: center;
  }
  .re-timeline::before {
    display: none;
  }
  .re-timeline-step {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .re-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(15, 31, 22, 0.97);
    padding: 16px 0 24px;
    gap: 0;
  }
  .re-nav-links.open {
    display: flex;
  }
  .re-nav-links li a {
    padding: 12px 24px;
    border-radius: 0;
  }
  .re-nav-toggle {
    display: flex;
  }
  .re-features-grid-6 {
    grid-template-columns: 1fr;
  }
  .re-principles-grid {
    grid-template-columns: 1fr;
  }
  .re-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-blog-grid {
    grid-template-columns: 1fr;
  }
  .re-stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-hero-content h1 {
    font-size: 36px;
  }
  .re-mini-hero h1 {
    font-size: 30px;
  }
  .re-section-title {
    font-size: 26px;
  }
  .re-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .re-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .re-team-grid {
    grid-template-columns: 1fr;
  }
  .re-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .re-stats-cards {
    grid-template-columns: 1fr;
  }
  .re-process-steps {
    grid-template-columns: 1fr;
  }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* REasy nav sits on dark brand color; always show light logo. */
.site-header .logo-img--dark { display: none !important; }
.site-header .logo-img--light { display: inline-block !important; }
