
.blue-section {
    background-color: #0040c3;
    width: 100%;
    /* min-height: 600px;  */
    padding: 40px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    box-sizing: border-box;
}


.blue-section img.logo {
    max-width: 180px;
    margin-bottom: 30px;
}

.blue-section h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
}

.feature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    width: fit-content;
    margin-top: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.feature-list li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.partners {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin-top: auto;
    padding: 20px 0;
    box-sizing: border-box;
}

.partners-inner {
    display: flex;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
}

.partner-logo img {
    max-height: 80px;
    margin: 0 20px;
}


@media (max-width: 767.98px) {
    .blue-section {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .blue-section {
        display: flex;
        width: 300px; 
        height: 650px;
        flex-shrink: 0;
        border-radius: 15px;
        background: #0040C3;
    }
}


@media (min-width: 1024px) and (max-width: 1440px) {
    .blue-section {
        display: flex; 
        width: 300px; 
        height: 650px; 
        flex-shrink: 0;
        border-radius: 15px;
        background: #0040C3;
    }
}

@media (min-width: 1440px) {
    .blue-section {
        width: 498px;
        height: 650px; 
        flex-shrink: 0;
        border-radius: 15px;
        background: #0040C3;
    }
}
