.awards-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.award-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
}

.badge-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.badge-circle:hover {
    transform: translateY(-5px);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-content .fas,
.badge-content .fab,
.rating-number {
    font-size: 2.5em;
    color: #333;
}

.badge-text {
    font-size: 0.9em;
    color: #555;
    line-height: 1.4;
}

.stars {
    font-size: 1em;
    color: #f1c40f;
}