* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.popup-container {
  padding: 40px 20px;
  display: flex;
  justify-content: Center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: -35%;
}

.card {
  background-color: #f7f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 20px;
  width: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  vertical-align: middle;
}


.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 100px;
  background-color: rgba(142, 151, 255, 0.08);
  border-top-right-radius: 250px;
  z-index: 0;
  pointer-events: none;
}

.card h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;


}

.card h2::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 2px solid #C0CAFA;
  border-radius: 50%;
  z-index: 2;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: center;
}

.card-arrow {
  position: absolute;
  top: 15px;
  right: 13px;
  width: 22 px;
  height: 22px;
  z-index: 3;
}

.card a.email-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.92rem;
}

.card button {
  background-color: #0d0034;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.card button:hover {
  background-color: #2c2c61;
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
    align-items: center;
  }
}