
    .awards-header {
        text-align: center;
        padding: 5rem 1rem;
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    }

    .awards-header h1 {
        font-size: 3.5rem;
        color: #333;
        margin-bottom: 1rem;
    }

    .awards-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        margin: -50px auto 5rem auto;
        padding: 0 1rem;
    }

    .award-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 3rem;
        text-align: center;
        flex: 1 1 400px;
        max-width: 500px;
        transition: transform 0.3s ease;
    }

    .award-card:hover {
        transform: translateY(-10px);
    }

    .medal-img {
        width: 200px;
        height: auto;
        margin-bottom: 2rem;
        filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    }

    .nomination-img {
        width: 200px;
        height: auto;
        margin-bottom: 2rem;
        filter: drop-shadow(0 5px 15px rgba(50, 200, 50, 0.4));
    }

    .award-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .gold-text { color: #d4af37; }
    .sdg-text { color: #27ae60; }

    .award-desc {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
    }

    .awards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 800px;
        margin: 0 auto 5rem auto;
        padding: 0 1rem;
    }

    .award-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 3rem;
        text-align: center;
        width: 100%;
        transition: transform 0.3s ease;
    }

    .award-card:hover {
        transform: translateY(-5px);
    }

    .medal-img, .nomination-img {
        width: 200px;
        height: auto;
        margin-bottom: 2rem;
    }

    .awards-header {
        text-align: center;
        padding: 5rem 1rem 3rem 1rem;
    }

    .awards-header h1 { font-size: 3.5rem; color: #333; margin-bottom: 1rem; }
    .award-title { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: #2c3e50; }
    .gold-text { color: #d4af37; }
    .sdg-text { color: #27ae60; }
    .award-desc { font-size: 1.1rem; color: #666; line-height: 1.6; }