.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5rem;
  }

  .info-text {
    flex: 1 1 60%;
    min-width: 250px;
  }

  .info-img {
    flex: 1 1 35%;
    min-width: 200px;
    text-align: center;
  }

  .info-img img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .info-section {
      flex-direction: column-reverse;
    }

    .info-img {
      order: -1;
    }
  }

.responsive-btn {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}

.btn-label {
  font-size: 14px;
  display: inline-block;
  line-height: 1.2;
  word-break: break-word;
}

@media (min-width: 640px) {
  .responsive-btn {
    width: auto;
    padding: 12px 24px;
color:white;
  }

  .btn-label {
    font-size: 18px;
    color: white;
    white-space: nowrap;
  }
}
