







.housekeeping-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 90%;
  margin: 30px auto;
  padding: 30px;
  border-radius: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  align-items: flex-start;
}

.image-block {
  flex: 1 1 300px;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.image-caption {
  font-weight: bold;
  font-size: 18px;
  margin-top: 8px;
  color: #444;
  text-align: center;
}

.text-block {
  flex: 2 1 400px;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  padding-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .housekeeping-section {
    flex-direction: column;
    padding: 20px;
  }

  .text-block {
    padding-right: 0;
  }

  .image-caption {
    font-size: 16px;
  }
}





@media screen and (max-width: 992px) {

  .text-block {
    padding-right: 0;
    margin-top: 20px;
    font-size: 16px;
  }

  .image-block img {
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
  }
}

@media screen and (max-width: 600px) {
  .housekeeping-section {
    padding: 15px;
  }

  .text-block {
    font-size: 15px;
  }

  .image-caption {
    font-size: 16px;
    text-align: center;
  }
}

