.about{
   padding-bottom: 5rem;
}

.about__title {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 3rem;
   color: #333;
}

.about__title-highlight {
   color: #149c9c;
}

.about-intro {
   position: relative;
   height: 75vh; 
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: white;
   overflow: hidden;
   margin-bottom: 5rem;
}

.about-intro__bg-container {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: -1;
}

.about-intro__bg-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.65);
   transition: transform 0.5s ease;
}

.about-intro:hover .about-intro__bg-image {
   transform: scale(1.05);
}

.about-intro__content {
   max-width: 800px;
   padding: 2rem;
   z-index: 1;
}

.about-intro__title {
   font-size: 3.5rem;
   font-weight: 800;
   margin-bottom: 1rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-intro__title-highlight {
   color: #149c9c;
}

.about-intro__subtitle {
   font-size: 1.8rem;
   font-weight: 500;
   margin-bottom: 1.5rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-intro__separator {
   width: 80px;
   height: 3px;
   background-color: #149c9c;
   margin: 0 auto 1.5rem;
}

.about-intro__description {
   font-size: 1.2rem;
   line-height: 1.8;
   max-width: 600px;
   margin: 0 auto;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about__section {
   margin-bottom: 5rem;
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.about__section:last-child {
   margin-bottom: 0;
}

.about__content {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}

.about__image-wrapper {
   flex: 1;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about__image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.about__image:hover {
   transform: scale(1.05);
}

.about__text-content {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.about__subtitle {
   font-size: 1.8rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   color: #149c9c;
}

.about__description {
   color: #555;
   line-height: 1.7;
   margin-bottom: 1.5rem;
}

.about__list {
   list-style: none;
   margin-bottom: 1.5rem;
}

.about__list-item {
   position: relative;
   padding-left: 1.5rem;
   margin-bottom: 0.75rem;
   color: #555;
   line-height: 1.5;
}

.about__list-item::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0.5rem;
   width: 8px;
   height: 8px;
   background-color: #149c9c;
   border-radius: 50%;
}

.about__contact {
   background-color: #f8f8f8;
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about__contact-info {
   display: flex;
   align-items: center;
   margin-bottom: 1rem;
}

.about__contact-icon {
   width: 20px;
   height: 20px;
   margin-right: 1rem;
   fill: none;
   stroke: #149c9c;
   stroke-width: 2;
}

.about__contact-text {
   color: #555;
}

/* Responsive Design */
@media (min-width: 768px) {
   .about__content {
       flex-direction: row;
   }

   .about__section--reverse .about__content {
       flex-direction: row-reverse;
   }
}

@media (max-width: 767px) {
   .about__title {
       font-size: 2rem;
       margin-bottom: 2rem;
   }

   .about__subtitle {
       font-size: 1.5rem;
       margin-bottom: 1rem;
   }

   .about__section {
       margin-bottom: 3rem;
   }

   .about-intro {
      height: 60vh; /* Slightly shorter on mobile */
  }

  .about-intro__title {
      font-size: 2.5rem;
  }

  .about-intro__subtitle {
      font-size: 1.4rem;
  }

  .about-intro__description {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
   .about{
      padding-bottom: 3rem;
   }

   .about-intro{
      height: 50vh;
      margin-bottom: 3rem;
   }
}