.wf-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow-y: auto;
}

.wf-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.wf-popup-box {
  position: relative;
  max-width: 950px;
  margin: 85px auto;
  border-radius: 12px;
  overflow-y: auto;
  max-height: 90vh;
  background:
    linear-gradient(rgba(252, 211, 77, 0.95), rgba(252, 211, 77, 0.95)),
    url("https://wealthfit.com/wp-content/uploads/2025/02/1f38651f-07e0-43b3-81b6-5f0f562ca0ac_class-covers_section-bg.webp") center/cover no-repeat;
  z-index: 2;
}

.wf-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
}

.wf-popup-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.wf-left {
  flex: 1 1 43%;
}

.wf-left .wf-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.wf-left h1 {
  font-size: 75px;
  line-height: 1.1;
  font-weight: 300;
  font-family: 'IBM Plex Serif';
  color: #262524;
	margin: 0px;
}

.wf-left p {
  font-size: 26px;
  margin-bottom: 20px;
  font-family: 'Brandon grotesque';
  font-weight: 400;
}

.wf-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 30px;
  font-size: 26px;
  font-family: 'Brandone grotesque';
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wf-btn:hover {
  background: #fff;
  color: #000;
}

.wf-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.wf-main-img {
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .wf-popup-box {
    margin: 20px;
    padding: 20px;
  }

  .wf-popup-inner {
    flex-direction: column;
    text-align: center;
  }

  .wf-left h1 {
    font-size: 2rem;
  }
}