/* style.css */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1e1e1e;
  background-color: #fdf8f6;
  line-height: 1.6;
}

header.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background-color: #f5ece9;
}

.logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  font-weight: 800;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #2e2d2d;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 3rem 1.5rem;
  max-width: 768px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section ul {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.section ul li {
  margin-bottom: 0.5rem;
}

.section.signup form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto 0;
}

.section.signup input[type="email"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.section.signup button {
  padding: 0.75rem;
  background-color: #2e2d2d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f8f8f8;
  font-size: 0.9rem;
  color: #555;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

