 .news-section {
     padding: 80px 0;
     background-color: #fff;
 }

 .news-section h2 {
     text-align: center;
     font-size: 36px;
     margin-bottom: 60px;
     color: #333;
 }

 .news-tabs {
     display: flex;
     justify-content: center;
     margin-bottom: 40px;
     border-bottom: 2px solid #e0e0e0;
 }

 .news-tab {
     padding: 15px 30px;
     cursor: pointer;
     font-size: 18px;
     font-weight: 500;
     color: #666;
     border-bottom: 3px solid transparent;
     transition: all 0.3s ease;
 }

 .news-tab.active {
     color: #0066cc;
     border-bottom-color: #0066cc;
 }

 .news-content {
     display: none;
 }

 .news-content.active {
     display: block;
 }

 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .news-card {
     background-color: #f9f9f9;
     border-radius: 10px;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .news-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .news-image {
     width: 100%;
     height: 200px;
     overflow: hidden;
 }

 .news-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

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

 .news-info {
     padding: 20px;
 }

 .news-date {
     font-size: 14px;
     color: #999;
     margin-bottom: 10px;
 }

 .news-info h3 {
     padding: 0px;
     font-size: 18px;
     margin-bottom: 10px;
     color: #333;
     display: -webkit-box;
     -webkit-line-clamp: 1;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .news-info p {
     padding: 0px;
     margin-bottom: 15px;
     color: #666;
     line-height: 1.6;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .news-info small {
     display: -webkit-box;
     -webkit-line-clamp: 1;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .news-link {
     display: inline-block;
     color: #0066cc;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .news-link:hover {
     color: #004080;
 }

 @media (max-width: 768px) {
     .news-tabs {
         flex-direction: column;
         align-items: center;
     }

     .news-tab {
         width: 100%;
         text-align: center;
     }
 }