.sub-footer {
    background:linear-gradient(135deg, #002F5B, #0A5EA8, #3FA7D6, #A7D8F5);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 20px;
}

.sub-footer-container {
    max-width: 1180px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sub-footer-left {
    flex: 1;
    min-width: 280px;
}

.sub-footer-left h3 {
    color: white;
    margin: 0 0 10px;
    font-size: 24px;
}

.sub-footer-left p {
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.sub-footer-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.sub-footer-right img {
    width: 120px;
    height: 120px;
    object-fit: contain;

    background: white;
    border-radius: 18px;
    padding: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.25s ease;
}

.sub-footer-right img:hover {
    transform: translateY(-4px);
}

@media(max-width: 768px){

    .sub-footer-container{
        flex-direction: column;
        text-align: center;
    }

    .sub-footer-left p{
        margin: auto;
    }

    .sub-footer-right{
        justify-content: center;
    }

    .sub-footer-right img{
        width: 100px;
        height: 100px;
    }

}