header {
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    width: 100%;
    height: 120px;
  }
  
  .left {
    padding-block: 45px;
    padding-inline: 65px;
  }
  
  .left img {
    width: 373px;
    height: 29px;
  }
  
  .right {
    display: flex;
  }
  

.company {
  height: 120px;
  background-color: var(--primary-teal);
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 38px;
}

.school {
    height: 120px;
    background-color: var(--primary-coral);
    gap: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 38px;
}

.company:hover {
  background-color: #eae4d9; /* 背景を薄いベージュに変更 */
  color: var(--primary-teal); /* 文字色を元の背景色に */
}

.school:hover {
  background-color: #eae4d9; /* 背景を薄いベージュに変更 */
  color: var(--primary-coral); /* 文字色を元の背景色に */
}

/* SVGアイコンなどを含む場合は、子要素にも色を反映 */
.company:hover svg,
.school:hover svg {
  color: inherit;
  fill: currentColor;
}

.company,
.school {
  transition: all 0.3s ease;
}
  
  .school img:nth-child(2) {
      margin-top: 8px;
  }

  .response {
    display: none;
  }
  
  main{
        overflow-x: hidden;
    overflow-y: hidden;
  }
  
  .response-475 {
    display: none;
  }
  
  body {
    overflow: hidden;
  }


.section1 {
    /* background-image: url('/assets/image/section1/bg.png'); */
    background-image: url('./assets/image/section1/bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.section1 > img{
    position: absolute;
    right: 0;
    top: 0;
    width: 850px;
    height: 700px;
}


.text {
    display: flex;
    flex-direction: column;
}

.text img:nth-child(1) {
    width: 700px;
    height: 60px;
    margin-left: 60px;
    margin-top: 124px;
    z-index: 1;
}

.text img:nth-child(2) {
    width: 323px;
    height: 45px;
    margin-left: 60px;
    margin-top: 20px;
    z-index: 1;
}

.section1 .text h1 {
  margin-left: 50px;
  margin-top: 130px;
  font-size: 80px;
  color: var(--primary-green);
  font-family: "Averia Serif Libre", serif;
  z-index: 10;

}
.section1 .text h3 {
  font-size: 40px;
  margin-left: 50px;

  color: var(--primary-green);
  font-family: "Averia Serif Libre", serif;
  z-index: 10;

}

.red-text {
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 35px;
    margin-left: -20px;
}

.text p {
    color: #434343;
    font-size: 25px;
    margin-left: 60px;
    z-index: 1;
    margin-top: 22px;
}

.section1 button {
  width: 391px;
  height: 70px;
  margin-left: 60px;
  border-radius: 5px;
  background-color: var(--primary-coral);
  padding-inline: 32px;
  padding-block: 16px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-top: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.section1 button p {
  color: var(--white);
  font-size: 25px;
  transition: color 0.3s ease;
}

.section1 button img:nth-child(1) {
  width: 25px;
  height: 20px;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* makes icon white */
}

/* --- Hover state --- */
.section1 button:hover {
  background-color: var(--white);
  color: var(--primary-coral);
}

.section1 button:hover p {
  color: var(--primary-coral);
}

.section1 button:hover img {
  /* tint icon coral-like */
  filter: brightness(0) saturate(100%) invert(66%) sepia(50%) saturate(537%) hue-rotate(320deg) brightness(97%) contrast(97%);
}



.section2 {
    width: 100%;
    /* height: 853px; */
    background-color: var(--white);  
    padding-top: 112px;
    padding-bottom: 120px;
    /* padding-inline: 20px; */


}

.section2 h1 {
    font-family: "Averia Serif Libre", serif;
    color: #6A9576;
    font-weight: bold;
    font-size: 80px;
    text-align: center;
    margin: 0;

}

.section2 p {
    font-size: 40px;
    color: #434343;
    text-align: center;
    margin: 0;
}

.section2-content {
    display: flex;
    justify-content: center;   /* centers the two divs */
    column-gap: 70px;   /* horizontal spacing */
    flex-wrap: wrap;           /* allows wrapping on small screens */
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 80px;

}

.section2-content img {
    width: 430px;
    height: 296px;
    border-radius: 5px;

}

.section2-text{
    width: 500px;
}

.section2-text p {
    font-size: 16px!important;
    color: #434343;
    text-align: start;
    margin-inline: 20px;
}

.section2-text h2 {
    margin-inline: 20px;
    font-size: 20px;
    color: var(--primary-coral);
}

.section3 {
    background-color: #D3E0D6;
    border-radius: 40px;
    padding-top: 40px;
    padding-bottom: 64px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.section3 h1 {
    font-family: "Averia Serif Libre", serif;
    font-size: 80px;
    color: var(--white);
    margin: 0;
    text-align: center;
  }

  .section3 p {
    font-size: 40px;
    color: #434343;
    text-align: start;
    margin: 0;
}

.card {
    margin-top: 48px;
    display: flex;
    max-width: 1000px;
    align-items: center;
    flex-wrap: wrap;   /* allows wrapping on smaller screens */
    gap: 32px;
    justify-content: center;

  }
  

.card1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.card1 .title {

    background-color: var(--primary-green);
    border-radius: 30px;
    padding-inline: 16px;
    padding-block: 8px;
    width: 135px;
}

.card1 .title h1{
    font-size: 20px;
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    color: var(--white);
    margin: 0;
    text-align: center;
}

.card1 .content {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    width: 312px;
    height: 486px;
}
.card1 .content img {
    width: 100%;
    height: 250px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card1 .content .text {
    background-color: var(--white);
    width: 100%;
    padding-top: 24px;
    height: 320px;
}
.card1 .content .text h2 {
    color: var(--primary-coral);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
    margin-inline: 16px;
}
.card1 .content .text p {
    color: #434343;
    font-size: 16px;
    margin-inline: 16px;
}

.section4 {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section4 h1 {
    color: var(--primary-green);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 120px;
    text-align: center;
    margin: 0;
}

.section4 p {
    font-size: 40px;
    color: #434343;
    text-align: center;
    margin: 0;
}

.section4 .content {
    max-width: 910px;
    margin-inline: 20px;
    margin-bottom: 64px;
}

.section4 .content h3 {
    font-size: 25px;
    color: var(--primary-coral);
    text-align: center;
    margin: 0;
}
.section4 .content p {
    font-size: 16px;
    text-align: start;
}

.img {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 24px;
    max-width: 940px;
}

.img img {
    width: 380px;
    height: 380px;

}

.img .right {
    display: flex;
    flex-direction: column;

}

.img .right img:nth-child(1) {
    width: 206px;
    height: 60px;

}







.stats {
  max-width: 500px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #5c7d68;
  margin-top: 25px;
}

.top, .below {
  display: flex;
  margin-bottom: 40px;
}

.top .cardx, .below .card {
  flex: 1;
  margin: 0 10px;
  text-align: center;
  border-top: 1px solid #434343;
  border-bottom:1px solid #434343;
}
.top .cardx , .below .cardy {
  flex: 1;
  margin: 0 10px;
  text-align: center;
  border-top: 1px solid #434343;
  border-bottom:1px solid #434343;
}

.top .cardx p, .below .card p {
  margin: 5px 0;
  font-size: 16px;
}

.cardx .text {
  display: flex;
  margin-top: 12px;
  flex-direction: row;
}

.contentx {
  display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    margin-left: 37px;
}

.contentx p {
  color: var(--primary-green);
}

.contentx p:nth-child(1) {
  font-size: 40px;
}
.icon1{
  height: 80px!important;
  width: 80px!important;
}
.number {
  font-size: 48px;
  font-weight: bold;
}

.text .icon1 img {
  height: 80px!important;
  width: 80px!important;
  margin: 0;
}

/* 下段3つは間隔調整 */
.below .card:first-child {
  margin-left: 0;
}
.below .card:last-child {
  margin-right: 0;
}

.cardy {
  position: relative;
  width: 150px;
  height: 100px;
}
.icon2 img {
  width: 70px !important;
  height: 72px !important;
  position: absolute;
  bottom: 10px;
  left: 0;
}

.texty {
  display: flex;
  flex-direction: column;
  position: absolute;
    bottom: 10px;
    right: 0;
}

.texty p {
  font-size: 16px!important;
}

.contenty {
  display: flex;
}

.contenty p {
  color: var(--primary-green );
}

.contenty .number {
  font-size: 40px!important;
}

.number {
  color: var(--primary-green)!important;
}
.contenty p:nth-child(2) {
  margin-top: 20px!important;
}














  .section5 {
    background-image: url('./assets/image/section5/Rectangle\ 16.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    border-radius: 40px;
    padding-top: 48px;
    padding-bottom: 80px;
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section5 h1 {
    color: var(--white);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 120px;
    text-align: center;
    margin: 0;
}


.section5 p {
    font-size: 40px;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.section5 .content {
    max-width: 1000px;
    margin-inline: 20px;
    margin-top: 40px;
    margin-bottom: 42px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.section5 .content p {
    font-size: 20px;
    text-align: start;
    color: var(--white);
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 33px;  
    column-gap: 56px;
    max-width: 1000px;
    margin: 0 auto;   /* center container */
  }
  
  .section5-card {
    width: 474px;
    height: 200px;
    flex: 1 1 calc(50% - 28px);  /* two per row, accounting for gap */
    max-width: calc(50% - 28px);
    background: #eee;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    position: relative;
  }
  

  .section5-card img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    height: 166px;
  }

  .section5-card .card-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section5-card div:nth-child(2) {
    width: 30%;

  }

  

  .section5-card .card-content h3 {
    color: var(--primary-coral);
    font-size: 25px;
    margin-top: 32px;
    /* align-items: center; */
    margin-left: 20px;
  }

  .section5-card .card-content p {
    color: #434343;
    font-size: 16px;
    margin-top: 16px;
    text-align: start   ;
    margin-left: 20px;
  }


  .section6 {
    background-image: url('./assets/image/section6/Mana\ Earthly\ Paradise\ 1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding-inline: 370; */
    padding-block: 102px;
    margin-bottom: 120px;
}

.section6 h1 {
    color: var(--white);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    margin: 0;
}


.section6 p {
    font-size: 20px;
    color: var(--white);
    text-align: center;
    margin: 0;
    max-width: 700px;
}


.section7 {
 background-color: var(--white);

}

.green-back {
    background-color: var(--back-green);
    width: 96%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 46px;
    padding-bottom: 148px;
  }
  
  .red-back {
    background: linear-gradient(
      to top,
      var(--back-red) 0%,
      var(--back-red) 80%,
      rgba(0, 102, 204, 0.2) 100%   /* ← 青みを薄く */
    );
    width: 96%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-top: -77px; /* overlap */
    position: relative;
    float: inline-end;
    z-index: 2;
    margin-bottom: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
  }

  .section7 .green-back h1 {
    color: var(--primary-green);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 120px;
    text-align: center;
    margin: 0;
  }

  .section7 .green-back p {
    font-size: 40px;
    font-weight: bold;
    text-align: left;
    color: #434343;
    margin-inline: 10px;
  }

  .section7 .green-back .content p {
    font-size: 20px;
    text-align: center;
    color: #434343;
    max-width: 770px;
    margin-top: 48px;
    margin-inline: 10px;
}


.section7-card {
    display: flex;
    flex-wrap: wrap;              /* allow wrapping */
    justify-content: center;      /* center items */
    gap: 32px;                    /* gap between cards */
    max-width: 1000px;            /* max container width */
    margin: 0 auto;  
    margin-top: 80px;  
    /* center container */
  }
  
  .card-group {
    height: 450px;
    flex: 1 1 calc(33.333% - 32px);  /* 3 cards per row (with gap) */
    max-width: calc(33.333% - 32px);
    min-width: 312px;                /* prevents too small cards */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: offset-x offset-y blur-radius spread-radius color;
    display: flex;
    flex-direction: column;
    
  }

  .card-group img:nth-child(1) {
    width: 156px;
    height: 59px;
    position: absolute;
    left: 0;
    top: -29px;
  }
  .card-group img:nth-child(2) {
    width: 200px;
    height: 213px;
    margin-top: 48px;
  }
  .img2 img:nth-child(2) {
    width: 168px;
    height: 184px;
  }
  .img3 img:nth-child(2) {
    width: 168px;
    height: 165px;
  }
  .img4 img:nth-child(2) {
    width: 228px;
    height: 167px;
  }
  .img5 img:nth-child(2) {
    width: 270px;
    height: 155px;
  }

  .card-group h6 {
    margin-top: 16px;
    color: var(--primary-coral);
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }

  .card-group p {
    margin-top: 16px;
    color: #434343;
    font-size: 16px!important;
    text-align: start;
    margin-inline: 24px;
  }

  .red-back p {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #434343;
    margin-inline: 10px;
    margin-top: 140px;
  }

  .section7 .red-back .content p {
    font-size: 20px;
    text-align: start;
    color: #434343;
    max-width: 770px;
    margin-top: 48px;
    margin-inline: 10px;
}

.card-group1 {
    padding-bottom: 25px;
    flex: 1 1 calc(50% - 40px);   /* 2 cards per row normally */
    max-width: calc(50% - 40px);
    min-width: 480px;             /* prevents shrinking too much on desktop */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* soft shadow */
    align-items: center;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #D17775;   /* fixed border syntax */
  }
  .card-group1 h1 {
    font-size: 25px;
    color: var(--primary-coral);
    text-align: center;
    margin-top: 24px;

  }

  .card-group1 img {
    width: 320px;
    height: 176px;
    margin-top: 16px;

  }

  .card-group1 p {
    margin-inline: 24px;
    font-size: 16px!important;
    color: #434343;
    text-align: start;
    margin-top: 24px;
  }
  
  #atag {
  width: 100%;
  margin-left: 65px;
}
  
  .section7-card a {
  color: #d17775!important;
  }
  

  .section8 {
    background-image: url('./assets/image/section8/image_forc-min.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;

}

.section8 h6 {
    color: var(--white);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 120px;
    text-align: center;
    margin: 0;
}


  .section8 p {
    font-size: 40px;
    font-weight: bold;
    text-align: start;
    color: var(--white);
    margin-inline: 10px;

  }

  .section8 .content p {
    font-size: 20px;
    color: var(--white);
    font-weight: bold;
    margin-block: 48px;
    margin-inline: 10px;
    max-width: 786px;
  }

  .stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 784px;
    gap: 175px;          /* default gap on large screens */
    padding: 0 40px;     /* default side padding */
    margin: 0 auto;
    margin-bottom: 90px;
  }
  
  .stat-box img {
    width: 100px;
    height: 100px;
  }
  
  .stat-label p {
    font-size: 16px;
    color: var(--white);
  }
  
  .stat-number p {
    font-size: 25px;
    color: var(--white);
  }

  .section9 {
    width: 100%;
    padding-top: 120px;
  }


  .section9 h6 {
    color: var(--primary-green);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 120px;
    text-align: center;
    margin: 0;
}

  .section9 p {
    font-size: 40px;
    text-align: center;
    color: #434343;
    margin-inline: 10px;
  }

  .voice1 {
    display: flex;
    gap: 72px;
    justify-content: center;
    margin: 0 auto;
    margin-top: 80px;
    max-width: 821px;
    margin-bottom: 40px;

  }

  .voice1 img {
    width: 185px;
    height: 208px;
  }

.voice1 .content {
    background-color: var(--back-green);
    padding-inline:30px;
    padding-block: 32px;
    border-radius: 10px;

}

.voice1 .content p {
    text-align: start;
    font-size: 16px;

}
  .voice2 {
    display: flex;
    gap: 72px;
    justify-content: center;
    margin: 0 auto;
    margin-top: 80px;
    max-width: 821px;
    margin-bottom: 120px;

  }

  .voice2 img {
    width: 220px;
    height: 208px;
  }

.voice2 .content {
    background-color: var(--back-green);
    padding-inline:30px;
    padding-block: 32px;
    border-radius: 10px;

}

.voice2 .content p {
    text-align: start;
    font-size: 16px;

}

.section10 {
    background-image: url('./assets/image/section10/写真①\ 1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 223px;
}

.section11 {
    padding-top: 120px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section11 h1 {
    color: var(--primary-green);
    font-family: "Averia Serif Libre", serif;
    font-weight: bold;
    font-size: 120px;
    text-align: center;
    margin: 0;
}

.section11 p {
    color: #434343;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    margin-inline: 10px;
    margin: 0;
}

.section11 .content p {
    color: #434343;
    font-size: 16px;
    text-align: center;
    margin: 0;
    margin-top: 48px;
    margin-inline: 10px;
}




  
  /* Tablet */
  @media (max-width: 900px) {
    .stats-section {
      gap: 100px;      /* reduce gap */
      padding: 0 20px; /* reduce side padding */
    }
    .stat-label p {
        font-size: 16px!important;
        color: var(--white);
      }
  }
  
  /* Mobile */
  @media (max-width: 600px) {
    .stats-section {
      gap: 50px;
      padding: 0 15px;
    }
    .stat-box img {
      width: 80px;
      height: 80px;
    }
    .stat-number p {
      font-size: 40px;
    }
    .stat-label p {
        font-size: 16px!important;
        color: var(--white);
      }
  }
  
  /* Very small screens */
  @media (max-width: 400px) {
    .stats-section {
      gap: 12px;
      padding: 0 10px;
    }

    .stat-box img {
        width: 60px;
        height: 60px;
      }
      .stat-label p {
        font-size: 16px!important;
        color: var(--white);
      }

      
      .stat-number p {
        font-size: 20px;
      }
      
  }
  




















footer {
    background-color: var(--primary-green);
    width: 100%;
    /* height: 480px; */
    display: flex;
    flex-direction: column;
    align-items: center;
  
  }
  
  footer button {
    padding-block: 31px;
    padding-inline: 40px;
    background-color: var(--white);
    border: none;
    margin-top: 64px;
    margin-bottom: 32px;
  }
  
  footer p {
    font-size: 25px;
    font-weight:400;           /* medium weight */
    letter-spacing: 1px;        /* spacing between letters */
    text-align: center;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    margin: 0;
  }
  
  .address {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 40px;
  }
  
  .footer-text {
    font-size: 12px;
    margin-bottom: 32px;
  }









@media(max-width: 1440px) {
    .left {
        padding-block: 45px;
        padding-inline: 41px;
    }
  
    .company {
        gap: 12px;
        padding-inline: 19px;
  
    }
  
    .school {
        gap: 12px;
        padding-inline: 19px;
  
    }
  }
  
  
  @media(max-width: 1024px) {
  
    .left {
        padding-block: 40px;
        padding-inline: 24px;
    }
  
    .left img {
        width: 250px;
        height: 20px;
    }
  
    .company {
        gap: 4px;
        height: 100px;
        padding-inline: 10px;
  
    }
  
    .school {
        gap: 4px;
        height: 100px;
        padding-inline: 10px;
    }
  
    header{
  
        height: 100px;
    }
  
    
  }
  
  
  @media(max-width: 768px) {
    .right {
        display: none;
    }
  
    .response {
        display: flex;
        width: 100%;
    }
  
    .res-company {
        width: 50%;
        background-color: var(--primary-teal);
        gap: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-inline: 10px;
        padding-block: 20px;
    }
  
    .res-school {
        width: 50%;
        background-color: var(--primary-coral);
        gap: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-block: 20px;
        padding-inline: 10px;
    }
      
    
  }
  
  
  @media(max-width: 475px) {
    .response {
        display: none;
    }
    .response-475{
        display: flex;
    }
    .response-475 .res-company, .res-school  {
        display: flex;
        flex-direction: column;
    }
  
  }
  
  /* ---------Main------------------ */
  
  
  /*   --------------footer----------- */
  
  @media(max-width: 1440px) {
    footer button img {
        width: 100%;
  
      }
  
      footer button {
        padding-inline: 30px;
        padding-block: 25px;
      }
  
  
  }
  @media(max-width: 960px) {
   
  }
  @media(max-width: 768px) {
   
  }
  @media(max-width: 475px) {
  
  }
  
  
  /* ---------company---------- */
  @media (max-width: 1440px) {
    .section2 h1,
    .section3 h1,
    .section9 h6,
    .section4 h1,
    .section5 h1,
    .section11 h1,
    .section7 .green-back h1,
    .section8 h6 {
      font-size: 80px;
    }
    .section2 p,
    .section3 p,
    .section9 p,
    .section4 p,
    .section5 p,
    .section11 p,
    .section7 .green-back p,
    .red-back p {
      font-size: 30px;
    }
  
    .card-group p {
      font-size: 16px !important;
    }
    .card-group1 p {
      font-size: 16px !important;
    }
    .stat-label p {
      font-size: 16px !important;
      color: var(--white);
    }
  }
  
  @media (max-width: 1024px) {

  
 .section1 .text h1 {
  margin-left: 20px;
  margin-top: 180px;
  font-size: 50px;


}
.section1 .text h3 {
  font-size: 40px;
  margin-left: 20px;

}

  
    .text p {
      color: #434343;
      font-size: 20px;
      margin-left: 30px;
    }
    .red-text {
      color: var(--primary-coral);
      font-weight: bold;
      font-size: 25px;
    }
    .section1 button {
      width: 300px;
      height: 50px;
      margin-left: 30px;
      padding-inline: 16px;
      padding-block: 8px;
    }
  
    .section1 button p {
      font-size: 20px;
    }
  
    .section1 button img:nth-child(1) {
      width: 20px;
      height: 17px;
    }
  
    .section2 h1,
    .section9 h6,
    .section3 h1,
    .section4 h1,
    .section5 h1,
    .section11 h1,
    .section7 .green-back h1,
    .section8 h6 {
      font-size: 60px;
    }
    .section2 p,
    .section3 p,
    .section9 p,
    .section4 p,
    .section5 p,
    .section11 p,
    .section7 .green-back p,
    .red-back p,
    .section8 p {
      font-size: 24px;
    }
    .section4 .content h3 {
      font-size: 20px;
    }
  
    .card-group p {
      font-size: 16px !important;
    }
    .card-group1 p {
      font-size: 16px !important;
    }
    .stat-label p {
      font-size: 16px !important;
      color: var(--white);
    }
  
    .voice1 .content {
      padding-inline: 10px;
      padding-block: 12px;
    }
  
    .voice1 {
      display: flex;
      gap: 36px;
  
      
    }
    .voice1 img {
      width: 155px;
      height: 178px;
      margin-left: 10px;
    }
    .voice1 .content {
      margin-right: 10px;
  }
    .voice2 .content {
      padding-inline: 10px;
      padding-block: 12px;
    }
  
    .voice2 {
      display: flex;
      gap: 36px;
  
      
    }
    .voice2 img {
      width: 155px;
      height: 178px;
      margin-right: 10px;
    }
    .voice2 .content {
      margin-left: 10px;
  }
  .section9 {
      padding-top: 70px;
    }
  .voice2 {
      margin-bottom: 70px;
    }
  
    .section10 {
  
      height: 100px;
  }
  
  
  
  }
  
  @media (max-width: 768px) {
    .section1 > img {
      width: 417px;
      height: 330px;
    }
    .card-group p {
      font-size: 16px;
    }
      .section1 .text h1 {
    margin-left: 10px;
    margin-top: 230px;
    font-size: 40px;
  
  
  }
  .section1 .text h3 {
    font-size: 20px;
    margin-left: 10px;
  
  }
  

    .text p {
      color: #434343;
      font-size: 20px;
      margin-left: 20px;
    }
    .section2 h1,
    .section9 h6,
    .section3 h1,
    .section4 h1,
    .section5 h1,
    .section11 h1,
    .section7 .green-back h1,
    .section8 h6 {
      font-size: 50px;
    }
  
    .section2-text {
      margin-top: 10px;
    }
  
    .img > img {
      width: 300px;
      height: 300px;
    }
  
    .img .right img:nth-child(1) {
      width: 180px;
      height: 50px;
    }
  
    .img .right img:nth-child(2) {
      width: 400px;
      height: 240px;
    }
  
    .section4 {
      padding-top: 70px;
      padding-bottom: 70px;
    }
  
    .section5 .content p {
      font-size: 16px;
    }
  
    .section5-card {
      flex: 1 1 100%;
      max-width: calc(100% - 20px); /* full width minus 20px margin left/right */
      margin-inline: 10px; /* keeps 20px space on both sides */
    }
  
    .section6 h1 {
      font-size: 24px;
    }
  
    .section6 p {
      font-size: 16px;
      margin-inline: 10px;
    }
  
    .section7 .green-back .content p {
      font-size: 18px;
    }
  
    .section7 .red-back .content p {
      font-size: 16px;
      margin-top: 40px;
    }
    .card-group1 p {
      font-size: 16px !important;
    }
  
    .section8 .content p {
      font-size: 18px;
    }
  
    .section9 {
      padding-top: 56px;
    }
    .voice2 {
      margin-bottom: 70px;
    }
  
    .section10 {
  
      height: 58px;
  }
  
  }
  
  @media (max-width: 475px) {
    .section1 > img {
      width: 417px;
      height: 278px;
    }
    .section2-content img {
      width: 343px;
      height: 236px;
    }
    
        .section1 .text h1 {
      margin-left: 10px;
      margin-top: 292px;
      font-size: 35px;
    
    
    }
    .section1 .text h3 {
      font-size: 20px;
      margin-left: 10px;
    
    }
    .card-group p {
      font-size: 16px;
    }
  
    .section5-card .card-content h3 {
      /* color: var(--primary-coral) */
      font-size: 20px;
    }
  
    .section5-card img {
      width: 100px;
      height: 128px;
    }
  
    .img > img {
      width: 280px;
      height: 280px;
    }
  
    .img .right img:nth-child(1) {
      width: 160px;
      height: 48px;
    }
  
    .img .right img:nth-child(2) {
      width: 344px;
      height: 201px;
    }
  
    .section4 {
      padding-top: 58px;
      padding-bottom: 56px;
    }
  
    .section5-card {
      width: 355px;
      flex: 1 1 100%;
      max-width: calc(100% - 20px); /* full width minus 20px margin left/right */
      margin-inline: 10px; /* keeps 20px space on both sides */
    }
    .section5 {
      margin-bottom: 40px;
    }
  
    .section6 {
      margin-bottom: 147px;
    }
  
    .card-group1 {
      flex: 1 1 329px;
      max-width: 329px;
      min-width: 329px; /* force width to 329px */
    }
  
    .card-group1 p {
      font-size: 16px !important;
    }
  }