.legal-page h3 {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 24px;
}
.legal-page ul {
  padding-left: 50px;
}

.legal-page ul li {
  list-style: circle;
}
.navbar-icon-wrapper {
  max-width: 270px;
}
.dropdown-menu {
  width: 420px;
  padding: 17px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.card-testimonial h4 {
  color: #fff;
}
.cta-service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
/* Popup */
.popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.popup-content {
  background: #fff;
  padding: 50px;
  width: min(90vw, 600px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: slideUp 0.5s ease;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: #000;
}

.popup-icon {
  font-size: 60px;
  color: #c82aef;
  margin-bottom: 20px;
}

#popup-message {
  font-size: 26px;
  color: #333;
  margin: 20px 0;
  line-height: 1.5;
}

.popup-button {
  margin-top: 20px;
  padding: 14px 32px;
  background-color: #c82aef;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-button:hover {
  background-color: #c82aef;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
