        :root {
            --primary-color: #065ec4;
            --secondary-color: #D0EAE8;
            --background-color: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--background-color);
            color: #333;
            line-height: 1.7;
        }
        
        /* Header Styles */
        .header {
            background-color: var(--background-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        
        .logo {
            height: 70px;
        }
        
        .office-name {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--secondary-color);
            padding: 10px 15px;
            border-radius: 5px;
        }
        
        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        /* News Detail Styles */
        .news-detail-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .news-header {
            margin-bottom: 30px;
        }
        
        .news-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .news-date {
            color: #666;
            font-size: 0.95rem;
        }
        
        .news-date i {
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .news-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .news-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }
        
        .news-content p {
            margin-bottom: 20px;
        }
        
        .news-content h2, 
        .news-content h3, 
        .news-content h4 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .news-content ul, 
        .news-content ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .news-content li {
            margin-bottom: 8px;
        }
        
        .news-content blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #666;
        }
        
        .action-buttons {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #054a9c;
            color: white;
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            border-radius: 30px;
            font-weight: 500;
            padding: 10px 20px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Footer */
        .footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #aaa;
        }
        
        /* Share buttons */
        .share-buttons {
            margin-top: 30px;
            display: flex;
            gap: 10px;
        }
        
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .share-btn:hover {
            transform: translateY(-2px);
        }
        
        .share-facebook:hover {
            background-color: #3b5998;
            color: white;
        }
        
        .share-twitter:hover {
            background-color: #1da1f2;
            color: white;
        }
        
        .share-linkedin:hover {
            background-color: #0077b5;
            color: white;
        }
        
        .share-whatsapp:hover {
            background-color: #25d366;
            color: white;
        }
 