:root {
  --primary: #27684a;
  --bg: #f7faf7;
  --text: #172e22;
  --muted: #6b7f72;

  --card-bg: #ffffff;
  --secondary-bg: #edf2ed;
  --cta-bg: #eef2ee;
  --cert-bg: #f2f6f3;
  --cert-border: #c8d8cd;

  --accent-bg: #dce8df;
  --accent-text: #153d28;
}
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  /* padding: 100px 0; */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: #141f1b;
  margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }

p {
  font-size: 18px;
  color: var(--text);
}

.text-muted {
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-cert {
  background: var(--cert-bg);
  border: 1px solid var(--cert-border);
}


/* =========================
   HEADER
========================= */

#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3ebe5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.site-logo a {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
}

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
}

.main-nav a:hover {
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  color: #27684a;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  line-height: 1.25rem
}

.btn-small {
  padding: 10px 18px;
  font-size: 14px;
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   HEADER
========================= */

#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e3ebe5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.site-logo a {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
}

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #677e77;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* .header-contact {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
} */

.btn-primary .btn-small {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */

#hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #141f17;
  opacity: 0.75;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-subheading {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  opacity: 0.7;
  margin-bottom: 40px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {

  #hero {
    min-height: 75vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 280px;
  }
}


/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #141f17;
    opacity: 0.75;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.hero__subheading {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.hero__description {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

.hero__description p {
    margin-bottom: 1rem;
}

.hero__description p:last-child {
    margin-bottom: 0;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero__button--primary {
    background-color: #27684a;
    color: #ffffff;
    border: 2px solid #27684a;
}

.hero__button--primary:hover,
.hero__button--primary:focus {
    background-color: transparent;
    color: #ffffff;
}

.hero__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero__button--secondary:hover,
.hero__button--secondary:focus {
    background-color: #ffffff;
    color: #27684a;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero__button {
        width: 100%;
        text-align: center;
    }
    
    .hero__description {
        font-size: 1.25rem;
    }
}

/* Accessibility focus styles */
.hero__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Ensure overlay doesn't interfere with text selection */
.hero__overlay {
    pointer-events: none;
}

/* Introduction Section Styles */
.intro {
    padding: 5rem 0;
    background-color: #ffffff;
}

.intro__grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    text-align: center;
}

.intro__grid--image-left .intro__media {
    order: 1;
}

.intro__grid--image-left .intro__content {
    order: 2;
}

.intro__content {
    padding: 2rem;
}

.intro__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro__description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.intro__description p {
    margin-bottom: 1.5rem;
}

.intro__description p:last-child {
    margin-bottom: 0;
}

.intro__media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.intro__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.intro__image:hover {
    transform: scale(1.02);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .intro__grid {
        gap: 3rem;
    }
    
    .intro__title {
        font-size: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .intro {
        padding: 3rem 0;
    }
    
    .intro__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro__grid--image-left .intro__media,
    .intro__grid--image-left .intro__content {
        order: 0;
    }
    
    .intro__content {
        padding: 1rem;
        text-align: center;
    }
    
    .intro__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .intro__media {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .intro__title {
        font-size: 1.5rem;
    }
    
    .intro__description {
        font-size: 1rem;
    }
}

/* Optional: If you want a subtle background pattern */
.intro--pattern {
    position: relative;
}

.intro--pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(26, 71, 49, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Services Section Styles */
.services {
    background-color: #edf2ed;
    padding: 80px 0;
}

.services__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services__heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #141f1b;
    /* font-weight: 700; */
}

.services__subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dce8df;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card__icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(22%) saturate(1250%) hue-rotate(95deg) brightness(95%) contrast(90%);
    /* This filter creates #153d28 color from black */
}

.service-card__title {
    /* font-size: 1.25rem; */
    font-weight: 500;
    margin-bottom: 12px;
    /* color: #27684a; */
    color: #141f1b;
    line-height: 1.4;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.service-card__description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__description p {
    margin-bottom: 0.5rem;
}

.service-card__description p:last-child {
    margin-bottom: 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #27684a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 71, 49, 0.1);
}

.service-card__link:hover,
.service-card__link:focus {
    gap: 8px;
    color: #0f2e20;
}

.service-card__link-arrow {
    font-size: 1.125rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.service-card__link:hover .service-card__link-arrow {
    transform: translateX(2px);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services__heading {
        font-size: 2rem;
    }
    
    .services {
        padding: 60px 0;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .services {
        padding: 50px 0;
    }
    
    .services__header {
        margin-bottom: 40px;
    }
    
    .services__heading {
        font-size: 1.75rem;
    }
    
    .services__subtext {
        font-size: 1rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .services__heading {
        font-size: 1.5rem;
    }
    
    .services {
        padding: 40px 0;
    }
}

/* Why Choose Us Section Styles */
.why-us {
    background-color: #f7faf7;
    padding: 80px 0;
}

.container--narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-us__heading {
    font-size:2.25rem;
    line-height:2.5rem;
    margin-bottom: 1rem;
    color: #141f1b;
    font-weight: 500;
}

.why-us__subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-us__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-us__feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: #dce8df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us__feature-icon-svg {
    width: 24px;
    height: 24px;
    display: block;
    color: #153d28;
}

/* Icon font fallback - if using icon font */
.why-us__feature-icon-svg::before {
    content: attr(data-icon);
    font-family: 'Your Icon Font', sans-serif;
    font-size: 20px;
    color: #153d28;
}

.why-us__feature-content {
    flex: 1;
}

.why-us__feature-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #141f1b;
    line-height: 1.4;
    margin-top: 0;
}

.why-us__feature-description {
    font-size: .875rem;
    line-height: 1.6;
    color: #4a5568;
}

.why-us__feature-description p {
    margin-bottom: 0.5rem;
}

.why-us__feature-description p:last-child {
    margin-bottom: 0;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .why-us__grid {
        gap: 30px;
    }
    
    .why-us__heading {
        font-size: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    
    .why-us__header {
        margin-bottom: 40px;
    }
    
    .why-us__heading {
        font-size: 1.75rem;
    }
    
    .why-us__subtext {
        font-size: 1rem;
    }
    
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .why-us {
        padding: 40px 0;
    }
    
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-us__feature {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-us__heading {
        font-size: 1.5rem;
    }
}

/* Optional: Animation on scroll */
.why-us__feature {
    transition: transform 0.3s ease;
}

.why-us__feature:hover {
    transform: translateY(-4px);
}

.why-us__feature:hover .why-us__feature-icon {
    background-color: #c5d8c8;
    transition: background-color 0.3s ease;
}

/* Certifications Section */
.certifications {
    background: #f2f6f3;
    padding: 80px 0;
}

.certifications .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.certifications__heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #141f1b;
    font-weight: 500;
}

.certifications__subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cert-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #c8d8cd;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.cert-card__icon {
    width: 56px;
    height: 56px;
    background: #dce8df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.cert-card__icon-img {
    max-width: 32px;
    height: auto;
    display: block;
}

.cert-card__title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #141f1b;
    line-height: 1.4;
}

.cert-card__description {
    font-size: .875rem;
    line-height: 1.6;
    color: #677e77;
}

/* Responsive */
@media (max-width: 1024px) {
    .certifications__heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .certifications {
        padding: 60px 0;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certifications__heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .certifications {
        padding: 40px 0;
    }
    
    .certifications__heading {
        font-size: 1.5rem;
    }
}


/* Final CTA Section */
.final-cta {
    background: #eef2ee;
    padding: 80px 0;
    text-align: center;
}

.final-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-container {
    max-width: 768px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 0.5rem;
    color: #141f1b;
    /* font-weight: 700; */
}

.cta-subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: #677e77;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 6px 18px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: #27684a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #0f3322;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #27684a;
    color: #1a4731;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #1a4731;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-reassurance {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #677e77;
}

/* Responsive styles */
@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-subtext {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 1.5rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 28px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 50px 0;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .cta-reassurance {
        font-size: 0.8125rem;
    }
}

/* Accessibility focus styles */
.btn:focus-visible {
    outline: 2px solid #27684a;
    outline-offset: 2px;
}

/* Optional: Add a subtle pattern overlay */
.final-cta {
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(26, 71, 49, 0.02) 0%, transparent 30%);
    pointer-events: none;
}


/* Site Footer Styles */
.site-footer {
    background: #172e22;
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Footer Columns */
.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-top: 0;
}

.footer-column h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.footer-column p {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: .875rem;
    color: #ffffffb3;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    /* margin-bottom: 0.5rem; */
    transition: color 0.3s ease;
    font-size: .875rem;
    line-height: 1.25rem
}

.footer-column a:hover,
.footer-column a:focus {
    color: #ffffff;
}

/* Footer Navigation */
.footer-nav {
    margin: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    /* margin-bottom: 0.5rem; */
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Contact Links */
.footer-email,
.footer-phone {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 24px 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3,
    .footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .footer-menu a:hover {
        transform: none;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        gap: 25px;
    }
}

/* Our Story Page Styles */
.our-story-page {
    background-color: #f7faf7;
}

/* Typography */
.our-story-page h1,
.our-story-page h2,
.our-story-page h3,
.our-story-page h4 {
    font-family: 'DM Serif Display', serif;
    color: #172e22;
}

.our-story-page body,
.our-story-page p {
    font-family: 'DM Sans', sans-serif;
    color: #172e22;
}

/* Container */
.our-story-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.story-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.story-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #172e22;
    opacity: 0.7;
    z-index: 1;
}

.story-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.story-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}
.story-hero__content p {
    color: #ffffff;
}

.story-hero__subtitle {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.story-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}



/* Timeline Section */
.timeline-section { padding: 5rem 0; background: var(--background); }
.timeline-wrapper { position: relative; }
.timeline-line { position: absolute; left: 2rem; top: 0; bottom: 0; width: 1px; background: #dce5df; }
.timeline-items { display: flex; flex-direction: column; gap: 5rem; }
.timeline-item { position: relative; padding-left: 6rem; }
.timeline-dot {
  position: absolute; left: 0; top: 0;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: #27684a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.25rem; z-index: 1;
}
.timeline-item h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }
.timeline-item p {font-size: 1rem; color: #677e77; line-height: 1.625; margin-bottom: 1.5rem; }
.timeline-item b { color: #141f1b;}

/* Blockquote */
.story-quote {
  border-left: 4px solid rgba(26,71,49,0.4);
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background: rgba(218,232,218,0.3);
  border-radius: 0 0.5rem 0.5rem 0;
}
.story-quote .quote-icon { width: 20px; height: 20px; fill: none; stroke: rgba(26,71,49,0.5); margin-bottom: 0.5rem; }
.story-quote p { color: #141f1b; font-style: italic; line-height: 1.75; margin: 0; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.service-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(218,232,218,0.3); border-radius: 0.5rem; padding: 0.75rem;
}
.service-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: #deede6; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-icon svg { width: 16px; height: 16px; stroke: #1f513a; fill: none; }
.service-item span { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* Mission Callout */
.mission-callout {
  background: rgba(218,232,218,0.4); border-radius: 0.5rem;
  padding: 1.5rem; margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.mission-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(26,71,49,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mission-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; }
.mission-callout p {
  font-family: 'DM Serif Display', serif; font-weight: 500;
  font-style: italic; font-size: 1.125rem; color: var(--foreground);
}

/* CTA Section */
.cta-section { padding: 5rem 0; background: var(--cta-bg); text-align: center; }
.cta-section h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.cta-section > .container > p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 0.375rem;
  font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn-outline:hover { background: var(--accent); }

@media (max-width: 640px) {
  .timeline-line { display: none; }
  .timeline-item { padding-left: 0; }
  .timeline-dot { position: static; width: 2.5rem; height: 2.5rem; font-size: 0.875rem; margin-bottom: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
:root {
  --background: #f7f9f7;
  --foreground: #1a2e1f;
  --primary: #1a4731;
  --primary-foreground: #ffffff;
  --muted-foreground: #5e6e62;
  --accent: #dae8da;
  --accent-foreground: #1a3a27;
  --border: #d6e0d6;
  --cta-bg: #edf2ed;
}







