/* Bottom Banner Section */
.bottom-banner-section {
    padding: 0;
    background-color: #FFFFFF;
    overflow: auto;
}

/* Newsletter Section */
.bottom-banner-section .newsletter-section {
    background-color: #FFFFFF;
    padding: 50px 60px;
    margin-bottom: 0;
}

.bottom-banner-section .newsletter-content {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.bottom-banner-section .newsletter-text {
    margin-bottom: 0;
    text-align: left;
}

.bottom-banner-section .newsletter-label {
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(90deg, #13618C 0%, #297B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: none;
    margin: 0 0 10px 0;
}

.bottom-banner-section .newsletter-text h2 {
    font-size: 25px;
    font-weight: 700;
    color: #1D2939;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.bottom-banner-section .newsletter-description {
    font-size: 14px;
    font-weight: 500;
    color: #475467;
    margin: 0;
    line-height: 1.6;
}

.bottom-banner-section .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: left;
    align-items: flex-start;
    justify-self: end;
}

.bottom-banner-section .newsletter-form-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    width: auto;
    justify-content: flex-start;
}

.bottom-banner-section .newsletter-input {
    flex: 1;
    min-width: 350px;
    max-width: 750px;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 2px;
    background-color: #F3F4F6;
    font-size: 14px;
    color: #475467;
    transition: all 0.3s ease;
}

.bottom-banner-section .newsletter-input:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: #288CCB;
    box-shadow: 0 0 0 3px rgba(40, 140, 203, 0.1);
}

.bottom-banner-section .newsletter-input::placeholder {
    color: #98A2B3;
}

.bottom-banner-section .newsletter-btn {
    padding: 12px 32px;
    background: linear-gradient(90deg, #13618C 0%, #297B35 100%);
    color: #FCFCFD;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.bottom-banner-section .newsletter-btn:hover {
    opacity: 0.9;
    box-shadow: 0 4px 12px rgba(19, 97, 140, 0.3);
}

.bottom-banner-section .newsletter-disclaimer {
    font-size: 12px;
    font-weight: 400;
    color: #475467;
    margin: 12px 0 0 0;
    line-height: 1.5;
    text-align: left;
    width: 100%;
}

.bottom-banner-section .newsletter-disclaimer a {
    color: #1D2939;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bottom-banner-section .newsletter-disclaimer a:hover {
    color: #245a3d;
    text-decoration: underline;
}

/* Features Section */
.bottom-banner-section .features-section {
    background: linear-gradient(90deg, #13618C 0%, #297B35 100%);
    
}

.bottom-banner-section .features-items {
    display: flex;
    justify-content: center;
    gap: 150px;
    padding: 40px 60px;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.bottom-banner-section .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2px;
}

.bottom-banner-section .feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(255, 255, 255, 0.15); */
    /* border-radius: 6px; */
    flex-shrink: 0;
}

.bottom-banner-section .feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.bottom-banner-section .feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bottom-banner-section .feature-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.bottom-banner-section .feature-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bottom-banner-section .newsletter-section {
        padding: 40px;
    }

    .bottom-banner-section .newsletter-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bottom-banner-section .newsletter-form {
        flex-direction: row;
        width: 100%;
    }

    .bottom-banner-section .newsletter-input {
        min-width: auto;
        flex: 1;
    }

    .bottom-banner-section .features-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        padding: 10px 10px;
        margin: 0 0px;
    }
}

@media (max-width: 768px) {
    .bottom-banner-section {
        padding: 40px 0;
    }

    .bottom-banner-section .newsletter-section {
        padding: 30px;
        margin-bottom: 0;
    }

    .bottom-banner-section .newsletter-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bottom-banner-section .newsletter-text h2 {
        font-size: 22px;
    }

    .bottom-banner-section .newsletter-label {
        font-size: 12px;
    }

    .bottom-banner-section .newsletter-description {
        font-size: 12px;
    }

    .bottom-banner-section .newsletter-form {
        flex-direction: row;
        width: 100%;
    }

    .bottom-banner-section .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 25px 30px;
        margin: 0 -30px;
    }

    .bottom-banner-section .feature-icon {
        width: 50px;
        height: 50px;
    }

    .bottom-banner-section .feature-icon img {
        width: 28px;
        height: 28px;
    }

    .bottom-banner-section .feature-content h4 {
        font-size: 12px;
    }

    .bottom-banner-section .feature-content p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .bottom-banner-section {
        padding: 30px 0;
    }

    .bottom-banner-section .newsletter-section {
        padding: 20px;
        margin-bottom: 0;
        border-radius: 0;
    }

    .bottom-banner-section .newsletter-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bottom-banner-section .newsletter-text h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .bottom-banner-section .newsletter-label {
        font-size: 11px;
    }

    .bottom-banner-section .newsletter-description {
        font-size: 12px;
    }

    .bottom-banner-section .newsletter-form {
        gap: 8px;
        width: 100%;
        flex-direction: row;
    }

    .bottom-banner-section .newsletter-input {
        min-width: auto;
        flex: 1;
    }

    .bottom-banner-section .newsletter-btn {
        padding: 10px 20px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .bottom-banner-section .newsletter-disclaimer {
        font-size: 11px;
    }

    .bottom-banner-section .features-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
        padding: 20px;
        margin: 0;
    }

    .bottom-banner-section .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }

    .bottom-banner-section .feature-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .bottom-banner-section .feature-icon img {
        width: 24px;
        height: 24px;
    }

    .bottom-banner-section .feature-content h4 {
        font-size: 11px;
    }

    .bottom-banner-section .feature-content p {
        font-size: 10px;
    }
}
