.newsletter-container{
    max-width: 600px;
    margin:50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.newsletter-container h2{
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #333;
}

.newsletter-container form{
    display: flex;
    flex-direction: column;
}

  .newsletter-container input,
  .newsletter-container textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-container button {
    padding: 12px;
    background-color: black;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

.newsletter-container button:hover {
    background-color: #444443;
}

.newsletter-container p {
    text-align: center;
    margin-top: 20px;
    color: #45a049;
    font-weight: 500;
}