.newsletter {
    background: #e6f0f6;
    padding: 80px 20px;
}

.newsletter-box {
    max-width: 700px;
    margin: auto;
    text-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.newsletter-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

    .newsletter-form input {
        flex: 1;
        min-width: 250px;
        padding: 14px 16px;
        border-radius: 10px;
        border: 1px solid #ddd;
        font-size: 14px;
        transition: 0.3s;
    }

        .newsletter-form input:focus {
            outline: none;
            border-color: #1e2bb8;
            box-shadow: 0 0 0 3px rgba(30,43,184,0.1);
        }

    .newsletter-form button {
        padding: 14px 22px;
        border: none;
        border-radius: 10px;
        background: #1e2bb8;
        color: white;
        font-weight: 600;
        transition: 0.3s;
    }

        .newsletter-form button:hover {
            background: #162091;
        }

.newsletter small {
    display: block;
    margin-top: 15px;
    color: #888;
    font-size: 12px;
}

    .newsletter small a {
        color: #1e2bb8;
        text-decoration: underline;
    }

/* Mobile */
@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

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