
.hero-about {
    background-color: #ffffff;
    padding: 80px 20px;
  }
  
  .hero-about-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  
  .hero-about-text {
    flex: 1;
    max-width: 45%;
  }
  
  .hero-about-text h1 {
    font-size: 70px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    -webkit-text-stroke: 2px #000
  }
  
  .hero-about-text h1 span {
    font-size: 67px;
    color: #027F00;
    -webkit-text-stroke: 0px #027F00
  }
  
  .hero-about-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
  }
  
  .hero-about-text button {
    background-color: #027F00;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 24px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .hero-about-text button:hover {
    background-color: #09923a;
  }
  
  .hero-about-images {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: center;
  }
  
  .hero-about-left-img {
    flex: 1;
  }
  
  .hero-about-right-img {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center; 
    margin: auto 0; 
  }
  
  
  .hero-about-left-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .hero-about-right-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
  }

  .hero-about-right-img img {
    height: 300px;
  }
  .hero-about-right-img img:last-child {
    height: 200px;
  }
  
  @media (max-width: 768px) {
    .hero-about {
      padding: 60px 20px;
    }
    .hero-about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-about-images {
      flex-direction: column;
    }
  
    .hero-about-left-img img {
      height: 340px;
    }
  
    .hero-about-right-img img {
      height: 210px;
    }

    .hero-about-right-img img:last-child {
      height: 120px;
  }


    .hero-about-text {
      max-width: 100%;
      text-align: left;
    }

    .hero-about-text h1 {
     font-size: 28px;         
     font-weight: bold;
     display: flex;          
     flex-wrap: nowrap;
     justify-content: center;
     align-items: center;
     gap: 6px;           
     margin-bottom: 15px;
     -webkit-text-stroke: 1px #000;
    }

    .hero-about-text h1 span {
      font-size: 28px;
      color: #027F00;
    }
  
    .hero-about-text p {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
  
  }

.what-we-offer {
    position: relative;
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
  }
  
  .offer-overlay {
    position: relative;
    height: 400px;
    background: url('/assets/images/restorative/AdobeStock_476248735.jpg') center center/cover no-repeat;
  }
  
  .offer-overlay::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #013800ce;
    z-index: 1;
  }
  
  .offer-overlay h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 60px;
    text-align: center;
    padding-top: 80px;
    font-weight: bold;
  }
  
  .offer-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -200px;
    padding: 0 20px 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  
  .offer-item {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .offer-card {
    background-color: #fff;
    color: #000;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .offer-card img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  
  .offer-text {
    margin-top: 10px;
    padding: 0 10px;
    text-align: left;
    color: #000;
  }
  
  .offer-text h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .offer-text p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  


  @media (max-width: 768px) {
    .offer-wrapper {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 20px;
      padding-bottom: 20px;
    }

    .offer-wrapper::-webkit-scrollbar {
      display: none;
    }
  
    .offer-item {
      flex: 0 0 85%;
      scroll-snap-align: start;
      border-radius: 12px;
      padding: 10px 0;
    }
  
    .offer-item:first-child {
      margin-left: 20px;
    }
  
    .offer-item:last-child {
      margin-right: 20px;
    }

    .offer-overlay h2 {
      position: relative;
      z-index: 2;
      color: #fff;
      font-size: 40px;
      text-align: center;
      padding-top: 80px;
      font-weight: bold;
  }
  
  }
  
.why-choose {
    background-color: #fff;
    padding: 35px 20px;
    padding-bottom: 65px;
    text-align: left;
  }
  
  .why-choose h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: bold;
    color: #027F00;
  }
  
  .why-choose h2 span {
    color: inherit;
    font-size: 40px;
    font-weight: bolder;
    -webkit-text-stroke: 1px #027F00;
  }
  
  .choose-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .choose-card {
    background-color: #f9f9f9;
    padding: 30px 25px;
    border-radius: 16px;
    flex: 1 1 220px;
    max-width: 250px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  
  .choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }
  
  .choose-card h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .choose-card p {
    font-size: 13px;
    line-height: 1.6;
  }

.our-mission {
    background-color: #027F00;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
  }
  
  .mission-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .our-mission h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .mission-line {
    width: 480px;
    height: 1px;
    background-color: #fff;
    margin: 0 auto 30px;
  }
  
  .our-mission p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .our-mission strong {
    font-weight: bold;
    font-size: 16px;
  }
  
@media (max-width: 768px) {
  .hero-about-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
  }

  .hero-about-text {
    width: 100%;
  }

  .hero-about-text h1 span {
    color: #027F00;
    font-weight: bold;
    display: inline;
  }

  .hero-about-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    text-align: left;
    margin: 0;
    text-indent: 0;
    word-break: break-word;
  }

  .hero-about-images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-about-left-img img,
  .hero-about-right-img img {
    width: 100%;
    border-radius: 8px;
  }

  .hero-about-left-img {
    width: 48%;
  }

  .hero-about-right-img {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 48%;
  }

  .why-choose h2 span {
    color: inherit;
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-choose h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }

  .mission-line {
    width: 250px;
  }

  .choose-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 0 10px 20px;
    scroll-padding-left: 20px;
    width: 100%;
  }

  .choose-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 200px;
  }

  .choose-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .choose-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .choose-card:last-child {
    margin-right: 20px;
  }

  .our-mission {
    padding: 80px 50px;
  }

  .our-mission h2 {
    font-size: 25px;
    margin-bottom: 35px;
  }


}

.desktop-only, .mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline-block;
        background: #027F00;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 14px;
        cursor: pointer;
        margin-top: 16px;
  }

  .mobile-only:hover {
    background-color: #088c33;
  }
}

