.news-latter-section {
    background-color: #fff;
}

.news-latter-wrapper {
    display: flex;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    gap: 12px;
}

.news-latter-image {
    flex: 1;
    min-width: 50%;
}

.news-latter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-latter-content {
    flex: 1;
    display: flex;
    padding: 0 60px;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    position: relative;
}

/* Subtle texture/pattern for the blue background as seen in image */
.news-latter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.5px, transparent 0.5px);
    background-size: 4px 4px;
    opacity: 0.8;
    pointer-events: none;
}

.nl-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

.nl-title {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #1a1a1a;
    margin-top: 30px;
}

/* Specific styling for the second part of the title if it contains a span */
.nl-title span {
    color: #94a3b8;
    /* Greyish color for 'Your Brand.' */
    font-weight: 400;
}

.nl-form-container {
    width: 100%;
}

/* Targeting actual Drupal Webform elements */
.nl-form-container .webform-submission-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    padding-bottom: 15px;
}

.nl-form-container .js-form-item {
    flex: 1;
    margin: 0;
    border-bottom: 1px solid;
}

.nl-form-container .form-item label {
    display: none;
    /* Hide labels as per design */
}

.nl-form-container input.form-control,
.nl-form-container input.form-email,
.nl-form-container input.form-text {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 20px !important;
    padding: 10px 0 !important;
    width: 100% !important;
}

.nl-form-container input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.nl-form-container .form-actions {
    margin: 0;
}

.nl-form-container .webform-button--submit {
    background: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 35px 12px 60px !important;
    /* Extra padding left for the arrow icon */
    font-weight: 700 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Adding the blue arrow circle using a pseudo-element since it's an input/button */
.nl-form-container .form-actions {
    position: relative;
}

/* Target the wrapper to place the arrow icon over the button */
.nl-form-container .form-actions::before {
    content: '→';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #3b82f6;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    pointer-events: none;
}

.nl-form-container .webform-button--submit:hover {
    background: #f8fafc !important;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .news-latter-wrapper {
        flex-direction: column;
    }

    .news-latter-image {
        min-height: 300px;
    }

    .nl-title {
        font-size: 32px;
    }

    .news-latter-content {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .news-latter-section {
        padding: 40px 15px;
    }

    .nl-submit-btn {
        padding: 6px 20px 6px 6px;
    }
}