/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #2b2d42, #8d99ae);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #edf2f4;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #edf2f4;
}

.services ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.services li {
  margin: 0.5rem 0;
  font-weight: 500;
}

.description {
  margin-bottom: 2rem;
  color: #edf2f4;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe-form input[type="email"] {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 80%;
  max-width: 300px;
  font-size: 1rem;
}

.subscribe-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #ef233c;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #d90429;
}

.follow {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #edf2f4;
}

/* Responsive */
@media (max-width: 500px) {
  h1 {
    font-size: 2rem;
  }

  .subscribe-form input[type="email"] {
    width: 100%;
  }
}
