    /* Awards Section Styles */
    .awards-section {
        padding: 80px 0;
        background: #f9f9f9;
    }
    
    .awards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin: 40px 0;
    }
    
    .award-card {
        width: 100%;
        max-width: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .award-card:hover {
        transform: translateY(-10px);
    }
    
    .award-image {
        position: relative;
        height: 300px;
        overflow: hidden;
    }
    
    .award-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .award-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 20px;
        text-align: center;
    }
    
    .award-card:hover .award-overlay {
        opacity: 1;
    }
    
    .award-caption {
        padding: 15px;
        background: white;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .award-icon {
        color: #2c3e50;
        font-size: 20px;
    }
    
    .awards-description {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .description-card {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .description-card h3 {
        color: #2c3e50;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    @media (max-width: 768px) {
        .awards-container {
            flex-direction: column;
            align-items: center;
        }
        
        .award-card {
            width: 100%;
        }
    }
    .ranking-details {
        margin-top: 50px;
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .ranking-title {
        color: #2c3e50;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .ranking-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }
    
    .ranking-table th, .ranking-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #ecf0f1;
    }
    
    .ranking-table th {
        background-color: #f8f9fa;
        font-weight: 600;
    }
    
    .ranking-table tr:hover {
        background-color: #f8f9fa;
    }
    
    .ranking-source {
        text-align: center;
        margin-top: 20px;
    }
    
    @media (max-width: 768px) {
        .ranking-table {
            display: block;
            overflow-x: auto;
        }
    }