

.top-ranked {
    background-color: #002855;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.top-ranked img{
    border-radius: 50%;
}
.top-ranked .content {
    max-width: 800px;
    margin: 0 auto;
}

.top-ranked h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.rankings-list {
    list-style: none;
    padding: 0;
}

.rankings-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.rankings-list img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.awards {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.awards img {
    width: 100px;
    height: auto;
    margin: 0 10px;
    border-radius: 50%;;
}

@media (max-width: 768px) {
    .rankings-list li {
        font-size: 16px;
    }

    .awards img {
        width: 80px;
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .top-ranked h2 {
        font-size: 24px;
    }

    .rankings-list li {
        font-size: 14px;
    }

    .awards img {
        width: 60px;
        margin: 0 3px;
    }
}
