:root {
  --color-bg: #4D3166;
  --color-accent: #FF9D33;
  --color-white: #FFFFFF;
  --color-text-dark: #322144;
  --color-text-grey: #6A5B7B;
}

.discovery-benefits {
  padding: 100px 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.discovery-benefits__title {
  color: var(--color-white);
  font-weight: 600;
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 0;
}

.discovery-benefits__subtitle {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
  opacity: 0.9;
}

/* Advantages Cards */
.benefit-card {
  background: var(--color-white);
  border-radius: 32px;
  padding: 40px 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-card__title {
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.benefit-card__text {
  color: var(--color-text-grey);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Student Features */
.student-feature {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 30px 35px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.student-feature:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

.student-feature__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.student-feature__text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .discovery-benefits__title {
    font-size: 38px;
  }
  
  .benefit-card {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .discovery-benefits {
    padding: 60px 0;
  }
  
  .discovery-benefits__title {
    font-size: 32px;
  }
  
  .student-feature {
    padding: 20px;
  }

  .student-feature__text {
    font-size: 16px;
  }
}