body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            padding: 20px;
        }
        
        .page-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #333;
            font-weight: 600;
        }
        
        .awards-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 20px;
        }
        
        .award-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .award-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .award-image {
            height: 120px; /* Container remains same size */
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden; /* Ensures larger images don't overflow container */
        }
        
        .award-image img {
            width: 400px;  /* Changed from max-width */
            height: 140px; /* Image height larger than container */
            object-fit: cover; /* Changed from contain to cover more area */
            transition: transform 0.3s ease;
        }
        
        .award-card:hover .award-image img {
            transform: scale(1.05);
        }
        
        .award-content {
            padding: 20px;
            flex-grow: 1;
        }
        
        .award-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .award-year {
            display: inline-block;
            background: #f0f0f0;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
            color: #666;
        }
        
        .award-description {
            color: #666;
            line-height: 1.5;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .award-button {
            display: inline-block;
            background: #4a6bdf;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background 0.3s ease;
            margin-top: auto;
        }
        
        .award-button:hover {
            background: #3a56c0;
        }
        
        @media (max-width: 768px) {
            .awards-container {
                grid-template-columns: 1fr;
            }
        }