#newsletter-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-overlay {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-content {
  background: #fff;
  width: 90%; max-width: 800px;
  display: flex;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 10;
  border-radius: 8px;
  overflow: hidden;
}

.popup-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.popup-form {
  flex: 1;
  padding: 2rem;
}

.popup-form h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}

.popup-form input[type="email"] {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-form button {
  background: #facc15;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}
