body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #5c4d7d;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.hero {
  background: linear-gradient(to bottom right, #ede7f6, #fff8e1);
  padding: 100px 20px 80px;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: 500;
}

.btn.primary {
  background-color: #b39ddb;
  color: white;
}

.btn.secondary {
  background-color: #f8bbd0;
  color: white;
}

.btn:hover {
  opacity: 0.85;
}

.about {
  background-color: #fafafa;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.features .card {
  background-color: #f3e5f5;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.1em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.freebie {
  background-color: #fff3e0;
  padding: 60px 20px;
}

footer {
  background-color: #ede7f6;
  padding: 20px 0;
  font-size: 0.9em;
}

/* Popup Modal Styling */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
}

.popup-content h2 {
  margin-top: 0;
  font-size: 1.6em;
}

.popup-content input[type="email"] {
  width: 80%;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.popup-content .btn {
  width: 80%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5em;
  color: #333;
  cursor: pointer;
}
