.email-submit-section {
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    padding: 50px 0;
    text-align: center;
}

.email-submit-header {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.email-submit-subheader {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.email-submit-section form {
    display: inline-block;
    margin: 0 auto;
}

.email-submit-section input[type="email"] {
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.email-submit-section button {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #FF0000; /* Red background for the button */
    color: #FFFFFF; /* White text for the button */
    border: none;
    cursor: pointer;
}

.email-submit-section button:hover {
    background-color: darken(#FF0000, 10%);
}
