.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 30px 30px 20px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
  font-size: 16px;
}

.popup-content h2 {
  color: #b31885;
  margin-bottom: 15px;
  font-size: 1.8em;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.popup-content h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #007292;
  margin-top: 10px;
}

.body p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 15px;
}

.popup-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0 15px;
}

.feedback-btn,
.no-thanks-btn {
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feedback-btn {
  background: #22617c;
  color: #fff;
  border: none;
}

.feedback-btn:hover {
  background-color: #11394a;
}

.no-thanks-btn {
  background: none;
  color: #22617c;
  border: 2px solid #22617c;
}

.no-thanks-btn:hover {
  color: #11394a;
  border-color: #11394a;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.popup-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.footer-logo {
  height: 60px;
}

.privacy-link {
  color: #22617c;
  font-size: 14px;
  transition: color 0.3s ease;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #11394a;
}

.popup-screenreader {
    margin-top: 20px;
    text-align: center;   
}

@media (max-width: 600px) {
    .popup-content {
    width: 95%;
    padding: 20px;
  }

  .feedback-btn,
  .no-thanks-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 20px;
  }

  .popup-footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}
