body {
    font-family: 'Inter', sans-serif;
}

.awards-section {
    padding: 4rem 0;
    background: white;
    margin-top: -5vh;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.awards-header-image {
    text-align: center; /* Center the image horizontally */
    margin-bottom: 2rem; /* Add some space below the image */
}

.awards-header-image img {
    max-width: 250px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensures margin auto works for centering block elements */
    margin-left: auto; /* Center the image */
    margin-right: auto; /* Center the image */
}


.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.award-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.award-card.platinum {
    border-color: #ffbd59;
}

.award-card.gold {
    border-color: #82b535;
}

.award-card.silver {
    border-color: #bf63f3;
}

.award-icon {
    width: 80px; /* Adjust the size as needed */
    height: 80px; /* Adjust the size as needed */
    margin: 0 auto 1rem auto;
}

.award-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This will ensure the image scales properly within the div */
}

.award-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004aad;
    margin-bottom: 0.5rem;
}

.award-winner {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1rem;
}

.award-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    margin: 2rem 0 0 2rem;
    font-weight: 600;
    color: #1868db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #004aad;
}