
        
        .news-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .main-title {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
        }
        
        .news-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .featured-news {
            flex: 2;
            min-width: 300px;
        }
        
        .recent-news {
            flex: 1;
            min-width: 300px;
        }
        
        .news-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .news-card h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .news-card p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        .read-more-btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .read-more-btn:hover {
            background-color: #2980b9;
        }
        
        .divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 30px 0;
        }
        
        .recent-title {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e74c3c;
        }
        
        .recent-news-list {
            list-style-type: none;
        }
        
        .recent-news-item {
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .recent-news-item:last-child {
            border-bottom: none;
        }
        
        .recent-news-item h3 {
            color: #2c3e50;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        
        .news-date {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 8px;
            color: #3498db;
        }
        
        .explore-btn-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .explore-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #e74c3c;
            color: white;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .explore-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
        }
        
        .explore-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .news-content {
                flex-direction: column;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .news-card h2 {
                font-size: 1.6rem;
            }
        }