.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #E8F5E8;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .main-content {
            background: #fafafa;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-titless {
            font-size: 2.5rem;
            color: #2E7D32;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .section-description {
            font-size: 1.2rem;
            color: #666666;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Awards Grid */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .award-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }

        .award-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }

        .award-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .award-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .award-content {
            padding: 35px;
        }

        .award-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .award-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 20px;
            color: white;
            flex-shrink: 0;
        }

        .award-meta {
            flex: 1;
        }

        .award-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2E7D32;
            margin-bottom: 0;
            line-height: 1.3;
        }

        .award-description {
            color: #666666;
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
            font-weight: 300;
        }

        .award-organization {
            font-weight: 600;
            color: #4CAF50;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-titless {
                font-size: 2rem;
            }
            
            .awards-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .award-content {
                padding: 30px 25px;
            }
            
            .award-image {
                height: 220px;
            }
            
            .award-header {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .award-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .stat-item {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }