body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.award-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 40px 0;
    margin: 20px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.award-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(34,139,34,0.05)" cx="20" cy="20" r="15"/><circle fill="rgba(34,139,34,0.05)" cx="80" cy="80" r="20"/><circle fill="rgba(34,139,34,0.05)" cx="60" cy="30" r="10"/></svg>');
    pointer-events: none;
}

.award-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.award-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #228b22;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.award-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.featured-award {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.featured-award:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #228b22;
}

.award-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-award:hover .award-image {
    transform: scale(1.05);
}

.award-content {
    padding: 20px 0;
}

.award-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #228b22;
    margin-bottom: 10px;
}

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

.award-category {
    background: #228b22;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.winners-grid {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.winners-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.winner-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    margin-bottom: 15px;
}

.winner-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #228b22;
}

.winner-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #228b22;
    transition: transform 0.3s ease;
}

.winner-card:hover .winner-image {
    transform: scale(1.1);
}

.winner-info {
    margin-left: 15px;
}

.winner-name {
    font-weight: bold;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.winner-achievement {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cta-section {
    background: #228b22;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: white;
    color: #228b22;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #f0f8f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #228b22;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .award-title {
        font-size: 2rem;
    }
    
    .award-section {
        padding: 30px 0;
    }
    
    .featured-award {
        padding: 20px;
    }
    
    .winners-grid {
        padding: 20px;
    }
    
    .winner-card {
        padding: 12px;
    }
    
    .winner-image {
        width: 50px;
        height: 50px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .award-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .award-section {
        margin: 10px 0;
        border-radius: 0;
    }
    
    .featured-award {
        padding: 15px;
    }
    
    .award-image {
        height: 150px;
    }
    
    .winner-info {
        margin-left: 10px;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Interactive hover effects */
.award-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.award-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(34,139,34,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-award:hover .award-image-overlay {
    opacity: 1;
}