:root {
  --bg-purple: #724b98;
  --btn-green: #a0d051;
}

.reasons {
  padding: 100px 0;
  background-color: #714798;
  overflow: hidden;
}

.reasons__header {
  margin-bottom: 50px;
}

.reasons__title {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
}

.reasons__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #a0d051;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reasons__btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reasons__btn:active {
  transform: scale(0.95);
}

.reasons__slider {
  overflow: visible !important;
}

.reason-card {
  height: 500px;
  width: 100%;
  border-radius: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.4s ease;
}

.reason-card:hover {
  transform: scale(1.02);
}

.reason-card__parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 991px) {
  .reasons__title {
    font-size: 36px;
  }
  .reason-card {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .reasons {
    padding: 60px 0;
  }
  .reasons__header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }
  .reasons__title {
    font-size: 28px;
  }
  .reason-card {
    height: 450px;
  }
}