.newsletter-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  margin-top: 2rem;
}

.newsletter-box h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.newsletter-box p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.newsletter-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.newsletter-box input[type="email"] {
  padding: 0.6rem 1rem;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-box button {
  background-color: #1abc9c;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-box button:hover {
  background-color: #17a88c;
}


.newsletter-box.small {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  margin: 2rem auto;
}

.newsletter-box.small h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.newsletter-box.small .desc {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: #555;
}

.newsletter-box.small input[type="email"] {
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 0.5rem;
}

.newsletter-box.small button {
  background: #00b894;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-box.compact {
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  margin: 1.2rem auto;
  line-height: 1;
}

.newsletter-box.compact h2 {
  font-size: 1.2rem;
  margin: 0 0 0.2rem 0;
  line-height: 1.2;
}

.newsletter-box.compact .desc {
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
  color: #555;
}

.newsletter-box.compact input[type="email"] {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 0.4rem;
}

.newsletter-box.compact button {
  background: #00b894;
  color: white;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
