/*  GENERAL  */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/*  HEADER  */
.sticky-header {
  position: sticky;
  top: 0;
  background: transparent;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

/* Add background on scroll */
body.scrolled .site-header {
  background-color: rgba(255, 255, 255, 0.95); 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Main Menu Styles */
/* === MENU TOGGLE (Hamburger) === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #145c52; /* Myrtle Green */
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* === NAV MENU (Desktop Default) === */
.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 10px 20px;
  color: #145c52; /* Myrtle Green links */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #0d3e38; /* Darker green on hover */
}

.nav-menu .current-menu-item > a {
  color: #000; /* Black for active menu item */
  font-weight: bold;
}

/* === DROPDOWN (Desktop Hover) === */
.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 999;
}

.nav-menu li:hover > ul {
  display: block;
}

.nav-menu li ul li a {
  padding: 12px 15px;
  color: #145c52;
}

.nav-menu li ul li a:hover {
  background: #f0f0f0;
}

/* === MOBILE MENU (<=768px) === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #145c52; /* Myrtle Green background */
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    color: #fff; /* White text */
    padding: 12px 20px;
  }

  .nav-menu li a:hover {
    background: #0d3e38; /* Dark green hover */
    color: #fff;
  }

  /* Dropdowns stack inside mobile */
  .nav-menu li ul {
    position: static;
    background: #0d3e38;
    box-shadow: none;
  }

  .nav-menu li ul li a {
    color: #fff;
    padding-left: 30px;
  }

  .nav-menu li ul li a:hover {
    background: #094d45;
  }
}
/*site logo*/
.site-logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color:#013932;
  font-weight: 500;
}

.site-logo {
  height: 20px;
  width: auto;
}


/* HERO  */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.page-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: transparent
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}
.video-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: -1;
}

.fallback-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-hero .container,
.video-hero .overlay {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-hero.video-hero {
    
    object-fit: cover;
    object-position: top center;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-breadcrumb {
    font-size: 0.9rem;
  }
}


/*section boxes */
.section-box {
  padding: 50px 0;
  background-color: #f4f4f4; 
  margin-bottom: 20px;
}

.section-box .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-box h2 {
  font-size: 2rem;
  text-align: center;
}

.section-box p {
  text-align: center;
  font-size: 1.1rem;
}

/*hero code in front-page.php */
.page-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.fallback-img {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent ;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-breadcrumb {
  font-size: 0.9rem;
  margin-top: 10px;
}


/* front-page.php */
.homepage {
  padding-top: 30px;
}

.homepage-intro {
  text-align: center;
  margin-bottom: 50px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.section-box {
  background: #f9f9f9;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-box:hover {
  background-color: #e6f2ef;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.home-section {
  padding: 60px 20px;
  text-align: center;
}

.home-section.alt {
  background-color: #f1f7f6;
}

.home-section h2 {
  color: #105e56;
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-content, .feature-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.section-content .text, .feature-content .text {
  flex: 1 1 400px;
}

.section-content .image, .feature-content .image {
  flex: 1 1 400px;
}

.section-content img, .feature-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.values-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.values-list li a {
  color: #105e56;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.values-list li a:hover {
  color: #083e3a;
  text-decoration: underline;
}

.btn {
  background-color: #105e56;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #083e3a;
}

/*products section */
.products-section {
  background-color: #e6f3ec; 
  padding: 4rem 1rem;
}

.products-intro-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.product-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 25%;
}

.product-item {
  text-decoration: none;
  background-color: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item h3 {
  font-size: 1.2rem;
  color: #0a4434; 
  margin-bottom: 0.5rem;
}

.product-item p {
  color: #333;
  font-size: 0.95rem;
  margin: 0;
}

.product-center-image {
  flex: 1 1 40%;
  text-align: center;
}

.product-center-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .products-intro-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-column {
    width: 100%;
    max-width: 400px;
  }

  .product-center-image {
    margin: 2rem 0; /* keep image in middle */
    order: 0; /* ensures it stays between left and right products */
  }
}

/* Read more link */
.read-more-link {
  margin-top: 2rem;
  text-align: center;
}

.read-more-link .button-link {
  background-color: #0a4434;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.read-more-link .button-link:hover {
  background-color: #066050;
}



/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #105e56;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  z-index: 1000;
  text-align: center;
}

.back-to-top:hover {
  background-color: #083e3a;
}
.core-values-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.core-value {
  text-align: center;
  max-width: 300px;
  flex: 1 1 250px;
}

.core-value .emoji {
  font-size: 3rem;
  margin-bottom: 10px;
}

.core-value h3 a {
  text-decoration: none;
  color: var(--link-color, #006b5e);
}

.core-value h3 a:hover {
  text-decoration: underline;
}



/*  FOOTER  */
.site-footer {
  background-color: #1a1a1a;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-top {
  padding: 60px 0 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-about p {
  max-width: 300px;
}

.footer-nav h3,
.footer-contact h3 {
  margin-bottom: 10px;
  color: white;
}

.footer-menu,
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li,
.social-icons li {
  margin-bottom: 5px;
}

.footer-menu a,
.social-icons a {
  color: #ccc;
  text-decoration: none;
}

.footer-menu a:hover,
.social-icons a:hover {
  color: white;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-bottom a {
  color: #aaa;
  margin: 0 5px;
}



/*  About-Us Page Styling  */

/* General Layout */
.about-us-page {
  font-family: 'Helvetica Neue', sans-serif;
  color: #222;
}

.light-green-bg {
  background-color: #e7f3ed;
  padding: 4rem 0;
}

/* WHO WE ARE / OUR STORY */
.about-card-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 1rem;
}

.about-card {
  padding: 3rem;
  border-radius: 12px;
  color: #fff;
}

.myrtle-card {
  background-color: #2c6e5a;
}

.card-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.card-heading {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.card-subheading {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* MISSION & VISION */
.mission-vision-section {
  background-color: #fff;
  padding: 4rem 1rem;
}

.mv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.mv-box {
  flex: 1;
}

.vertical-line {
  width: 10px;
  background-color: #2c6e5a;
  height: auto;
}

/* UNIQUE VALUE PROPOSITIONS */
.value-propositions {
  background-color: #e7f3ed;
  padding: 4rem 1rem;
}

.section-label {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: left;
}

.arrow {
  color: #2c6e5a;
  margin-right: 0.4rem;
}

.value-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.value-item {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

.shape-halfmoon {
  clip-path: ellipse(70% 50% at 50% 50%);
  background-color: #4c8e7a;
  color: #fff
}

.shape-wave {
  background-image: linear-gradient(to right, #f1f9f7, #ffffff);
}

.value-card {
    background-color: #4c8e7a;
    color: #fff;
    padding: 2rem;
    border-radius: 1rem 0 2rem 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    text-align: center;
  }

  .value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .value-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }


.shape-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #f7fcfa;
}

/* SDG WHEEL */
.sdg-wheel-section {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.sdg-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.sdg-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.sdg-icon {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 0%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}


.sdg-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sdg-icon:hover {
  transform: scale(1.05);
}
/*
.sdg-icon.icon-1 { top: 0px; left: 160px; }
.sdg-icon.icon-2 { top: 80px; left: 280px; }
.sdg-icon.icon-3 { top: 200px; left: 280px; }
.sdg-icon.icon-4 { top: 320px; left: 160px; }
.sdg-icon.icon-5 { top: 200px; left: 40px; }
.sdg-icon.icon-6 { top: 80px; left: 40px; }
*/

/* TEAM SECTION */
.about-team-section {
  background-color: #2c6e5a; /* Myrtle Green */
  padding: 80px 0;
  color: #ffffff;
}

.about-team-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-team-text {
  flex: 1 1 45%;
  background-color: #fff; 
  padding: 40px;
  border-radius: 10px;
  color: #2c6e5a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-team-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-team-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-link {
  display: inline-block;
  margin-top: 20px;
  color: #2c6e5a;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #2c6e5a;
  transition: all 0.3s ease;
}

.team-link:hover {
  color: #1f4c3f;
  border-color: #1f4c3f;
}

.about-team-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-team-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-team-container {
    flex-direction: column;
    text-align: center;
  }

  .about-team-text, 
  .about-team-image {
    flex: 1 1 100%;
    max-width: 600px;
  }

  .about-team-text h2 {
    font-size: 1.6rem;
  }
  .about-team-text {
    padding: 20%;
  }
}

/* PARTNERS SECTION */
/*
.partners-section {
  background-color: rgba(44, 110, 90, 0.15);
  padding: 2rem 1rem;
}

.partners-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-logo img {
  height: 50px;
  width: auto;
}
*/
.partners-section {
  background-color: #e7f3ed; 
  padding: 4rem 1rem;
  text-align: center;
}

.partners-intro h2 {
  font-size: 2rem;
  color: #014d40;
}

.partners-intro p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #333;
}

/* Strip layout */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-box {
  background-color: #fff;
  padding: 1rem;
  border-radius: 6px;
  width: 100px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.logo-box img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}

.logo-box:hover {
  transform: scale(1.05);
}

/* CTA */
.partner-cta p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cta-button {
  background-color: #014d40;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #026b5b;
}


/*core-values page*/
.core-values-section {
  background: linear-gradient(to bottom, #e6f2ef, #ffffff);
  padding: 4rem 1rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Mission & Vision */
.mv-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.mv-block {
  max-width: 700px;
  text-align: left;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.mv-block h2 {
  font-size: 2rem;
  color: #1e3d38;
  margin-bottom: 1rem;
}

.mv-block p {
  font-size: 1.125rem;
  color: #070707;
}

/* Core Values */
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1e3d38;
}

.values-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.value-box {
  background: white;
  padding: 2rem;
  border: 4px solid; /* inline style */
  border-radius: 0.5rem;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  position: relative;
}

.tab-1 {
  margin-left: 2rem;
}

.tab-2 {
  margin-left: 4rem;
}

.value-box .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: inherit;
  font-weight: bold;
}

.value-box h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1e3d38;
}

.value-box p {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  color: #010101;
}
/* our culture*/
.culture-vertical {
  padding: 4rem 1rem;
  background-color: #E9FCEF;
}

.culture-vertical h2 {
  text-align: center;
  font-size: 2rem;
  color: #014d40;
}

.culture-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #010000;
}

.culture-timeline {
  position: relative;
  margin: 0 auto;
  border-left: 2px dashed #014d40;
  max-width: 600px;
}

.culture-block {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}

.culture-block .circle {
  position: absolute;
  left: -1.25rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: white;
  border: 3px solid #014d40;
  border-radius: 50%;
  color: #014d40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.culture-block .content h3 {
  margin-bottom: 0.5rem;
  color: #014d40;
  font-size: 1.2rem;
}

.culture-block .content ul {
  margin: 0;
  padding-left: 1rem;
  list-style: disc;
  color: #020202;
  font-size: 1rem;
}
.culture-quote-box {
  max-width: 600px;
  margin: 3rem auto 2rem;
  padding: 2rem 1.5rem;
  border: 2px solid #014d40;
  border-radius: 1rem;
  background-color: #f1fbf7;
  text-align: center;
  position: relative;
  font-family: Georgia, serif;
}

.quote-icon {
  font-size: 2.5rem;
  color: #014d40;
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1.25rem;
  color: #014d40;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 1rem;
  color: #0b0a0a;
  font-weight: bold;
}


/*team.php*/
.team-hero video {
  width: 100%;
  height: auto;
  display: block;
}

.team-block {
  width: 100%;
  padding: 4rem 2rem;
}

.team-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.team-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.left-img .team-img { order: 1; }
.left-img .team-text { order: 2; }

.right-img .team-img { order: 2; }
.right-img .team-text { order: 1; }

.team-text {
  flex: 1;
  padding: 2rem;
  font-size: 1.1rem;
}

/*SDG Page*/
/* Intro Section */
.pagesdg-intro {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.pagesdg-container {
    max-width: 900px;
    margin: 0 auto;
}

.pagesdg-line {
    width: 80px;
    height: 4px;
    background-color: #0B5D4A; 
    margin: 0 auto 20px;
}

.pagesdg-intro h1 {
    font-size: 36px;
    color: #0B5D4A;
    margin-bottom: 20px;
}

.pagesdg-intro p {
    font-size: 18px;
    color: #555;
}

/* Background Section */
/* Intro Section */
.pagesdg-intro {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.pagesdg-container {
    max-width: 900px;
    margin: 0 auto;
}

.pagesdg-line {
    width: 80px;
    height: 4px;
    background-color: #0B5D4A;
    margin: 0 auto 20px;
}

.pagesdg-intro h1 {
    font-size: 36px;
    color: #0B5D4A;
    margin-bottom: 20px;
}

.pagesdg-intro p {
    font-size: 18px;
    color: #555;
}

/* Background Section */
.pagesdg-background {
    background: url('/wp-content/themes/Christy/assets/images/sdg-background.webp') no-repeat center center fixed;
    background-size: cover;
    padding: 100px 20px;
}

.pagesdg-overlay {
    background: rgba(255, 255, 255, 0.0);
    padding: 50px 0;
}

.pagesdg-sdgs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.pagesdg-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.pagesdg-box img {
    width: 70px;
    margin-bottom: 20px;
}

.pagesdg-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pagesdg-box p {
    font-size: 17px;
    color: #555;
}

/* CTA Section */
.pagesdg-cta {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.pagesdg-cta h2 {
    font-size: 32px;
    color: #0B5D4A;
    margin-bottom: 20px;
}

.pagesdg-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.pagesdg-buttons a {
    display: inline-block;
    margin: 0 15px;
    padding: 12px 30px;
    background: #0B5D4A;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.pagesdg-buttons a:hover {
    background: #094636;
}

/*  Pellets page  */
:root {
  --myrtle: #094636;
  --myrtle-light: #e4f9f7;
  --charcoal: #333;
}

/*  Utility wrappers */
.pelletspage-section       { padding:4rem 2rem; }
.pelletspage-center-text   { text-align:center; }
.pelletspage-section-title { font-size:2.5rem; font-weight:700; margin-bottom:2rem; color:var(--myrtle); }

.pelletspage-bg-white  { background:#fff; }
.pelletspage-bg-faded  { background:var(--myrtle-light); }
.pelletspage-bg-myrtle { background:var(--myrtle); color:#fff; }

/* Hero  */
.pelletspage-hero            { position:relative; height:80vh; overflow:hidden; }
.pelletspage-hero__video     { width:100%; height:100%; object-fit:cover; }
.pelletspage-play-btn        { position:absolute; bottom:1.25rem; right:1.25rem;
                               background:rgba(255,255,255,0.8); border:none; border-radius:50%;
                               width:48px; height:48px; font-size:1.4rem; cursor:pointer; }

/* Overview */
.pelletspage-overview__inner { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; align-items:center; }
.pelletspage-overview__image img { width:80%; border-radius:.5rem; box-shadow:0 4px 16px rgba(0,0,0,.1); }

/*  Key Benefits timeline  */
.pelletspage-timeline__list          { list-style:none; max-width:700px; margin:0 auto; padding:0; position:relative; }
.pelletspage-timeline__list::before  { content:''; position:absolute; left:1rem; top:0; bottom:0; width:2px; border-left:2px dotted var(--myrtle); }
.pelletspage-timeline__list li       { position:relative; padding-left:3rem; margin-bottom:2rem; }
.pelletspage-timeline__icon          { position:absolute; left:0; top:0; width:32px; height:32px; border-radius:50%; background:var(--myrtle); color:#fff;
                                       display:flex; align-items:center; justify-content:center; }

/*  Target Users grid  */
.pelletspage-icon-list               { display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:1.5rem; margin-top:2rem; }
.pelletspage-icon-list li            { text-align:center; }
.pelletspage-icon-list__icon         { font-size:2rem; margin-bottom:.5rem; }

/*  Production process  */
.pelletspage-process__timeline       { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1rem; text-align:center; }
.pelletspage-process__timeline li    { background:#d3ede6; border-left:4px solid var(--myrtle); padding:1.25rem .75rem; border-radius:.5rem; position:relative; }
.pelletspage-process__timeline li::after { content:'→'; position:absolute; right:-.8rem; top:50%; transform:translateY(-50%); color:var(--myrtle); font-size:1.25rem; }
.pelletspage-process__timeline li:last-child::after { content:''; }

/*  Comparison table  */
.pelletspage-comparison__table-wrapper { width:100%; overflow-x:auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.pelletspage-comparison__table         { width:100%; min-width:600px; border-collapse:collapse; text-align: left; }
.pelletspage-comparison__table th,
.pelletspage-comparison__table td      { border:2px solid var(--myrtle); padding:12px 16px; font-size:1rem; vertical-align: top; white-space: nowrap; }
.pelletspage-comparison__table th      { background:var(--myrtle); color:#fff; }
.pelletspage-green-col                 { background:#d6ebe4; color:var(--myrtle); }
.pelletspage-dark-col                  { background:#f2f2f2; color:#2a2a2a; }

/*  Packaging cards */
.pelletspage-packaging__cards          { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.25rem; }
.pelletspage-packaging__card           { background:#fff; border-radius:.5rem; overflow:hidden; box-shadow:0 4px 10px rgba(0,0,0,.1); transition:.3s; }
.pelletspage-packaging__card:hover     { transform:translateY(-4px); box-shadow:0 8px 20px rgba(0,0,0,.15); }
.pelletspage-packaging__card img       { width:100%; height:180px; object-fit:contain; }
.pelletspage-packaging__card h4        { margin:1rem; color:var(--myrtle); }
.pelletspage-packaging__card p         { margin:0 1rem 1rem; color:#444; }

/*  CTA buttons */
.pelletspage-cta__buttons              { display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; margin-top:2rem; }
.btn                                   { display:inline-block; padding:.75rem 1.5rem; border-radius:4px; font-weight:600; text-decoration:none; transition:.3s; }
.btn--primary                          { background:var(--myrtle); color:#fff; }
.btn--primary:hover                    { background:#0b5b45; }
.btn--secondary, .btn--outline         { background:transparent; border:2px solid var(--myrtle); color:var(--myrtle); }
.btn--secondary:hover, .btn--outline:hover { background:var(--myrtle); color:#fff; }

/*  Responsive tweak  */
@media (max-width:768px){
  .pelletspage-process__timeline { grid-template-columns:1fr; }
}
/* Calculators */
.pelletspage-calculators {
  padding: 60px 20px;
  background: #00796b;
  
}
.pelletspage-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}
.pelletspage-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 320px;
}
.pelletspage-form-group {
  margin-bottom: 15px;
}
.pelletspage-form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.pelletspage-form-group input,
.pelletspage-form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.pelletspage-results {
  margin-top: 15px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}
.pelletspage-results h4 {
  margin-top: 20px;
  font-size: 1.4em;
  text-align: center;
}

.pelletspage-monthly {
  color: #094636; /* Myrtle Green */
  font-weight: bold;
  font-size: 2em; /* larger emphasis */
  text-align: center;
  margin-top: 10px;
}

