.img-check {
  width: 24px;   
  height: 24px; 
}

.benefits-section {
  overflow: hidden;
}

.benefit-image {
  height: 100%;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-box {
  background-color: #1953A0; 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-box-white {
  background-color: #fff; 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1rem;
}

.benefit-box ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .benefit-image img {
    height: 300px;
  }
  .benefit-box {
    padding: 2rem;
  }
}