/* Newsletter Section */
.site-newsletter {
    background: #2f363b;
    padding: 50px 20px;
    color: #ffffff;
}

/* Inner container */
.newsletter-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Text */
.newsletter-text {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Form layout */
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Input */
.newsletter-form input[type="email"] {
    padding: 14px 16px;
    font-size: 1rem;
    border: 1px solid #BCBCBC;
    border-radius: 4px;
    background: #414A50;
    color: #ffffff;
    min-width: 260px;
    width: 100%;
    max-width: 400px;
}

/* Placeholder color */
.newsletter-form input::placeholder {
    color: #cccccc;
}

/* Button */
.newsletter-form button {
    padding: 14px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background: #f04e23; /* adjust to brand color */
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.newsletter-form button:hover {
    background: #d8431d;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .newsletter-text {
        font-size: 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        max-width: 400px;
    }
}