.news-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 20px;
            overflow: hidden;
        }
        
      
        .news-grid {
            display: flex;
            grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
            gap: 20px;
            margin-bottom: 10px; 
            flex-direction: row;
            justify-content: center;
        }
        
        .news-card {
                width: 33%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(31, 76, 135, 0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(31, 76, 135, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .news-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #2c5282 0%, #4a7bb9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5em;
            position: relative;
            overflow: hidden;
        }
        
        .news-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.1) 50%);
            background-size: 10px 10px;
            opacity: 0.3;
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            color: #004098;
            font-size: 0.95em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-weight: 500;
        }
        
        .news-date::before {
            content: '📅';
            margin-right: 8px;
            filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
        }
        
        .news-title {
            font-size: 1.8em;
            color: #000000;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: #383838;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            color: #004098;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-size: 16px;
        }
        
        .read-more::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover {
            color: #1a3a6c;
            transform: translateX(5px);
        }
        
        .read-more:hover::after {
            transform: translateX(3px);
        }
        
        .contact-info {
            background: linear-gradient(135deg, #1a3a6c 0%, #2c5282 100%);
            color: white;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(31, 76, 135, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 C30,80 70,120 100,100 L100,0 L0,0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }
        
        .contact-info h2 {
            margin-bottom: 25px;
            font-size: 1.8em;
            position: relative;
        }
        
        .contact-item {
            margin: 15px 0;
            font-size: 1.15em;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .contact-item strong {
            min-width: 80px;
            text-align: right;
        }
        
        .breadcrumb {
            margin-bottom: 30px;
            color: #4a7bb9;
            font-size: 1.05em;
        }
        
        .breadcrumb a {
            color: #2c5282;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: #1a3a6c;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            
            .news-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .news-card{
                width: 100%;
            }
            .contact-info {
                padding: 30px 20px;
            }
            
            .contact-item {
                flex-direction: column;
                gap: 5px;
            }
            
            .contact-item strong {
                min-width: auto;
                text-align: center;
            }
        }