.newsletter-section {
    background: #0f335f;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.newsletter-inner {
    margin: auto;
}

.ns-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ns-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.ns-input-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.ns-input-wrapper input {
    width: 100%;
    max-width: 500px;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    outline: none;
    margin-bottom: 15px;
}

.ns-checkbox label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 20px;
}

.ns-checkbox input {
    transform: scale(1.2);
}

.ns-checkbox a {
    color: #fff;
    text-decoration: underline;
}

.ns-submit-btn {
    background: #C43D1A;
    border: none;
    padding: 12px 80px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.ns-submit-btn:hover {
    background: #C43D1A;
}

.ns-checkbox input[type="checkbox"] {
    top: 0;
}

/* Tablet */


/* Mobile */
@media (max-width: 767px) {
    .ns-checkbox input[type="checkbox"] {
        min-width: 22px;
        min-height: 22px;
    }

    .ns-title {
        font-size: 26px;
    }

    .ns-subtitle {
        font-size: 14px;
    }

    .ns-input-wrapper input {
        padding: 12px 14px;
    }

    .ns-submit-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}

.ns-checkbox a:hover {
    color: #fff;
    text-decoration: underline !important;
}
