.features-section {
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding: 40px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
    box-sizing: border-box;
    gap: 36px;
}

.features-text {
    flex: 1 1 360px;
    min-width: 320px;
}

.features-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.0rem;
    color: #1373d1;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        position: relative;
        padding-left: 2.6em;
        margin-bottom: 1.05rem;
        font-size: 1.09rem;
        color: #1d3557;
        font-weight: 500;
        background: transparent;
    }

        .features-list li::before {
            content: '';
            display: inline-block;
            width: 1.6em;
            height: 1.6em;
            background: url('/Images/icons/blue-check.png') no-repeat center center/contain;
            position: absolute;
            left: 0;
            top: 0.08em;
            filter: drop-shadow(0 0 0.5px #1373d1);
        }

.features-image-wrapper {
    flex: 1 1 340px;
    text-align: right;
    min-width: 240px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.features-image {
    max-width: 340px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #f5f9fd;
    box-shadow: 0 2px 10px rgba(80,130,220,0.09);
    border: 1.5px solid #e2eaf6;
}
