 
:root {
--title_color:#171717;
}
* {
 margin: 0px;
 padding: 0px;
 box-sizing: border-box;
 }
.page_banner {
 padding: 120px 0px;
 background: center top / contain no-repeat;
 position: relative;
 }
.page_banner::after {
 content: "";
 display: block;
 width: 100%;
 height: 100%;
 position: absolute;
 top: 0px;
 left: 0px;
 background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0) 35%);
 opacity: 0.45;
 }
body > section {
 position: relative;
 }
body > section:hover {
  }
@media screen and (max-width: 768px){
.page_banner {
 padding: 5rem 0px 3rem;
 }}
@media screen and (max-width: 768px){
.page_banner::after {
 background: rgba(0, 0, 0, 0.4);
 }}
.content {
 max-width: 1585px;
 margin: 0px auto;
 position: relative;
 }
@media screen and (min-width: 768px) and (max-width: 1600px){
.content {
 max-width: 1440px;
 }}
@media screen and (min-width: 768px) and (max-width: 1440px){
.content, .account_dashboard .content, .account_latest .content, .orders_nav .content {
 padding: 0px 1.2rem;
 max-width: 1220px;
 }}
@media screen and (min-width: 768px) and (max-width: 1220px){
.content, .swiper_content, .account_dashboard .content, .account_latest .content, .orders_nav .content, .post_main .content {
 max-width: 1000px;
 }}
@media screen and (min-width: 768px) and (max-width: 1024px){
.content, .swiper_content, .account_dashboard .content, .account_latest .content, .orders_nav .content {
 max-width: 768px;
 }}
@media screen and (max-width: 768px){
.content {
 padding: 0px 1.2rem;
 }}
.flex {
 display: flex;
 }
.page_banner .flex {
 min-height: 548px;
 align-items: end;
 position: relative;
 z-index: 2;
 }
@media screen and (max-width: 768px){
.page_banner .flex {
 min-height: 100px;
 }}
.page_banner .head {
 padding-bottom: 0.34%;
 }
@media screen and (max-width: 768px){
.page_banner .head {
 padding: 0px;
 }}
h1, h2, h3, h4, h5, h6, .title {
 font-family: "Shippori Mincho", sans-serif;
 }
.page_banner h1 {
 font-size: 54px;
 color: rgb(255, 255, 255);
 line-height: 59px;
 font-weight: 500;
 }
.fadeInLeft {
 animation-name: fadeInLeft;
 }
@media screen and (max-width: 768px){
.head h1 {
 font-size: 25px;
 line-height: 1.5;
 }}
.page_banner .desc {
 font-size: 17px;
 color: rgba(255, 255, 255, 0.85);
 font-weight: 300;
 margin-top: 23px;
 }
@media screen and (max-width: 768px){
.head .desc {
 font-size: 0.9rem;
 line-height: 1.5rem;
 }}
@media screen and (max-width: 768px){
.page_banner .head .desc {
 margin-top: 0.5rem;
 }}
button, input, textarea {
 outline: none;
 border: none;
 font-family: unset;
 color: var(--title_color);
 }
input[type="submit"], button {
 cursor: pointer;
 }
.sytech_export_template {
 display: none;
 }
 
@media screen and (max-width: 786px){


}
 
.mission {
  padding: 60px 20px;
  text-align: center;
}

.mission__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Grid layout for the three cards */
.mission__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.mission__card {
  background: #f0f0f0; 
  padding: 40px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mission__card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.mission__card p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.mission__link {
  font-weight: bold;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.mission__link:hover {
  color: #555;
  border-color: #555;
}

/* Unique background colors for each card */
.mission__card--green {
  background: #9ba17e;
  color: #000;
}

.mission__card--tan {
  background: #b4a995;
  color: #000;
}

.mission__card--brown {
  background: #a07f57;
  color: #000;
}

 
@media (max-width: 768px) {
  .mission__grid {
      grid-template-columns: repeat(1, 1fr);
  }
  .mission{
    padding: 3rem 0;
  }
}
 
.two-images-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Adjust if you want images aligned differently */
  align-items: center;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.image-container {
  flex: 1 1 50%;
  min-width: 300px;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
 
/* Responsive */
@media (max-width: 768px) {
  .two-images-section {
    flex-direction: column;
    padding: 20px;
  }
  
  .image-container {
    flex: 1 1 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
 

.section-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 0;
}

.image-column {
  flex: 1 1 50%;
  min-width: 300px;
  box-sizing: border-box;
  text-align: left;
}

.image-column img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-column {
  flex: 1 1 50%;
  min-width: 300px;
  box-sizing: border-box;
  padding-left: 20px;
}

.text-column h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}

.text-column hr {
  width: 40px;
  border: none;
  border-top: 4px solid #ccc;
  margin: 20px 0;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

 
/* Responsive */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
  }

  .text-column {
    order: 2;
    padding-left: 0;
    margin-top: 20px;
  }

  .image-column {
    order: 1;
    text-align: center;
  }
}
 

/* IMPACT STATS SECTION */
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fefefe;
  padding: 50px 0;
  gap: 20px;
}

.stat-card {
  background: #ccb198; /* This should closely match the provided UI background tone */
  flex: 1 1 250px;
  min-width: 250px;
  max-width: unset;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.stat-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.3;
}

.stat-card p {
  font-size: 0.9rem;
  margin: 0;
}



 
@media (max-width: 600px) {
    .impact-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        max-width: 100%;
    }

    
}
 


/* REPORT INTRO SECTION */
.report-intro {
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: left;
}

.report-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.report-intro p {
  font-size: 1rem;
  margin: 20px 0;
  line-height: 1.6;
}

.report-button {
  display: inline-block;
  text-decoration: none;
  border: 2px solid #000;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 30px;
  transition: background-color 0.3s, color 0.3s;
  color: #000;
}

.report-button:hover {
  background: #000;
  color: #fff;
}
 
@media (max-width: 600px) {
    

    .report-intro {
        margin: 40px auto 60px;
    }

    .report-intro h2 {
        font-size: 1.8rem;
    }

    .report-intro p {
        font-size: 0.95rem;
    }

    .report-button {
        font-size: 0.9rem;
    }
}