.quality-section {
    padding: 80px 10%;
    background-color: #f8fbff;
}

.quality-container {

 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 gap: 60px;
 flex-wrap: wrap;

}

.quality-text {
  margin-top: 5%;
  flex: 1 1 55%;
  max-width: 600px;
}

.quality-text h5 {
  color: #1a4b84;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.quality-text h2 {
  font-size: 1.8rem;
  color: #002b70;
  margin-bottom: 25px;
  line-height: 1.5;
}

.quality-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.quality-list {
  list-style: none;
  padding: 0;
}

.quality-list li {
  background: url('../pics/check-icon.png') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #1a4b84;
  font-weight: 500;
}

.quality-image {
  flex: 1 1 40%;
  text-align: center;
}

.quality-image img {
 margin-top: 5%;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.quality-image img:hover {
  transform: scale(1.03);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .quality-container {
    flex-direction: column;
    text-align: center;
  }

  .quality-image img {
    width: 90%;
  }

  .quality-text {
    max-width: 100%;
  }
}
