.movie-vpn {
  background-color: #9fff8f;
  border-radius: 16px;
  padding: 24px;
  color: #1d1e30;
}

.movie-vpn__title {
  font-size: 24px;
  text-decoration: underline;
}

.movie-vpn__subtitle {
  margin: 24px 0;
  font-size: 16px;
}

.movie-vpn__steps,
.movie-vpn__features {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 24px;
}

.movie-vpn__steps {
  font-size: 17px;
  color: #1e5122;
}

.movie-vpn__step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.movie-vpn__link {
  color: #1e5122;
  text-decoration: underline;
}

.movie-vpn__features {
  font-size: 15.5px;
  color: #2e7d32;
  font-weight: bold;
}

.movie-vpn__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.movie-vpn__cta {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #2e7d32;
  color: white;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  transition: transform 0.2s;
}

.movie-vpn__cta:hover {
  transform: translateY(-1px);
}

.movie-vpn__promo {
  text-align: center;
  font-size: 14px;
  color: #2e7d32;
}

@media (max-width: 768px) {
  .movie-vpn {
    padding: 16px;
  }

  .movie-vpn__title {
    font-size: 20px;
  }
}
