/* style.css */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #1a1a1a;
}

.hero {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero span {
  color: #2563eb;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: #444;
}

button {
  padding: 10px 20px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #f0f0f0;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 60px;
  margin-bottom: 10px;
}

.cta {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.cta input[type="email"] {
  padding: 10px;
  width: 250px;
  max-width: 100%;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.count-display {
  margin-top: 10px;
  color: #2563eb;
  font-weight: 600;
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: #ccc;
  margin-left: 10px;
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-content label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.modal-content button[type="submit"] {
  margin-top: 15px;
  width: 100%;
  background-color: #2563eb;
  color: white;
  font-size: 16px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  margin-top: 10px;
  cursor: pointer;
  color: #2563eb;
}
