.paint-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 60px;
  min-height: 80vh;
  top: 0;
}
.paint-text {
  max-width: 40%;
}
.paint-text h3 {
  font-size: 18px;
  color: #004a99; /* Blue heading */
  margin-bottom: 10px;
}
.paint-text h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}
.paint-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.paint-image {
  position: relative;
  width: 50%;
  text-align: center;
}
.paint-image img {
  max-width: 450px;
  z-index: 2;
  position: relative;
}
/* Background drops */
.drop {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
  z-index: 1;
}
.drop.orange {
  width: 320px;
  height: 420px;
  background: orange;
  top: -50px;
  right: 90px;
  border-radius: 50% 50% 60% 60% / 70% 70% 30% 30%;
  transform: rotate(20deg);
}
.drop.blue {
  width: 100px;
  height: 100px;
  background: #557BFF;
  top: 60px;
  left: 50px;
}
.drop.yellow {
  width: 70px;
  height: 70px;
  background: #ffec66;
  top: 10px;
  right: 20px;
}