.email-signup {
    background-color: #fff8f0;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
  }
  
  .email-signup h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .email-signup p {
    margin: 0.5rem 0 1rem;
    color: #333;
    font-size: 1rem;
  }
  
  .email-signup input[type="email"] {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 65%;
    max-width: 280px;
    margin-right: 0.5rem;
    font-size: 1rem;
  }
  
  .email-signup button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .email-signup button:hover {
    background-color: #49a874;
  }
  