.about-section{
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
} 

h2{
  color: rgb(19, 1, 68);
  font-size: 35px;
  font-weight: 800;
  width: 80%;
  line-height: 1.2;
}

h2 span{
  color: rgb(255, 10, 92);
}

.about-salon-description{
  color: rgb(60, 50, 100);
  line-height: 1.7;
  font-weight: 500;
  font-size: 19px;
}

/* IMAGE STYLING */
.about-right-section-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  border: 5px solid white;
  box-shadow: 0 19px 25px rgba(0,0,0,0.45);
}

/* ICON GRID SECTION */
.left-section-description-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.left-section-description-container div{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: rgb(234, 234, 245);
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.left-section-description-container div:hover{
  background-color: white;
  border: 1px solid rgb(255, 10, 92);
}
.left-section-description-container p{
  color: rgb(60 , 50, 100);
  font-size: 16px;
}

/* ICON FIX */
.about-icon{
  width: 35px;
  height: 35px;
  display: block;
  flex-shrink: 0;
  margin-top: 13px;
}

/* 📱 TABLET + MOBILE */
@media (max-width: 767px){

  .about-section{
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
    height: auto;
  }

  h2{
    width: 100%;
    font-size: 26px;
  }

  .about-salon-description{
    font-size: 16px;
  }

  .left-section-description-container{
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}