.awards-section {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}
.section-title {
    font-size: 32px;
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 20px;
}
.section-description {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.award-card {
    background: rgb(255, 255, 255);
    color: #000000;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0 4px 8px rgb(9, 54, 71);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.award-card i {
    color: rgb(0, 0, 0);
    font-size: 2em;
    margin-bottom: 10px;
}
.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px 5px rgb(2, 31, 42);
}
.award-card h3 {
    font-size: 18px;
    font-weight: bolder;
    color: #000000;
    margin-bottom: 10px;
}
.award-card p {
    font-size: 14px;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}