.services-card-section {
  background-color: #f6f4ef;
  padding: 60px 40px;
  border-radius: 16px;
}

.whisper-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.whisper-text {
  flex: 1 1 50%;
}

.whisper-text h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.whisper-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.separator2 {
  width: 60px;
  height: 4px;
  background-color:  var(--accent-color, #ffc83d);
  border-radius: 2px;
  margin-bottom: 24px;
}

.whisper-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

.whisper-benefits {
  flex: 1 1 40%;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-icon {
  color: #27ae60;
  font-size: 20px;
  font-weight: bold;
  margin-top: 4px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #1f2937;
}

.benefit-content p {
  font-size: 16px;
  margin: 0;
  color: #4b5563;
}

/* Full-width image at the bottom */
.whisper-image {
  margin-top: 60px;
  text-align: center;
}

.whisper-image img {
  width: 100%;
  height: auto;
  max-width: 1400px;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}


@media (max-width: 900px) {
  .services-card-section {
    padding: 40px 10px;
    border-radius: 10px;
  }
  .whisper-container {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  .whisper-text, .whisper-benefits {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .whisper-text h2 {
    font-size: 32px;
  }
  .whisper-text h3 {
    font-size: 18px;
  }
  .whisper-description {
    font-size: 15px !important;
    max-width: 100%;
  }
  .whisper-benefits {
    padding: 24px;
    border-radius: 10px;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .benefit-content h4 {
    font-size: 15px;
  }
  .benefit-content p {
    font-size: 13px;
  }
  .whisper-image {
    margin-top: 32px;
  }
  .whisper-image img {
    border-radius: 10px;
    max-width: 100vw;
  }
}

@media (max-width: 600px) {
  .services-card-section {
    padding: 20px 0;
  }
  .whisper-text h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .whisper-text h3 {
    font-size: 16px;
  }
  .separator2 {
    width: 40px;
    height: 3px;
    margin-bottom: 16px;
  }
  .whisper-benefits {
    padding: 14px;
    border-radius: 8px;
  }
  .whisper-image {
    margin-top: 16px;
  }
  .whisper-image img {
    border-radius: 8px;
  }
}
