
        /* Reset dan Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #2f48a2d1;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: #3498db;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #3498db;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background: #e8f4fc;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #7f8c8d;
        }
		/* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('data:image/svg+xml;utf8,');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .cta-button:hover {
            background: #2980b9;
        }
        
        /* Main Content Styles */
        .main-content {
            display: flex;
            margin: 2rem 0;
            gap: 2rem;
        }
        
        .article-container {
            flex: 2;
            background: #e5e5e5;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 2rem;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: #e4e0b7;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .sidebar-widget h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
        }
        
        .article-header {
            margin-bottom: 2rem;
        }
        
        .article-title {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .article-meta {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #3498db;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .article-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 8px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            padding: 2rem;
        }
        
        .article-content h2 {
            color: #2c3e50;
            margin: 0.1rem 0 0.1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .article-content h3 {
            color: #3498db;
            margin: 0.5rem 0 1rem;
        }
        
        .article-content p {
			margin-bottom: 1rem;
            text-align: justify;
        }
        
        .definition-box {
            background: #e8f6f3;
            border-left: 4px solid #3498db;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        
        .quote-box {
            background: #e8f4fc;
            border-left: 4px solid #2980b9;
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            border-radius: 0 4px 4px 0;
        }
        
        .expert-card {
            background: #e4e0b7;
            border: 1px solid #ecf0f1;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 0.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .expert-name {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .expert-theory {
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .reference-list {
            background: #e8f6f3;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        
        .reference-list h3 {
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        
        .reference-list ul {
            list-style-type: none;
        }
        
        .reference-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .reference-list li:before {
            content: "•";
            color: #3498db;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .reference-list a {
            color: #3498db;
            text-decoration: none;
        }
        
        .reference-list a:hover {
            text-decoration: underline;
        }
        
        .conclusion-box {
            background: #e8f6f3;
            border: 1px solid #1abc9c;
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .conclusion-box h3 {
            color: #16a085;
            margin-bottom: 1rem;
        }
        
        /* Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }
        
        .service-card {
            background: #92d9ea70;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .service-card h3 i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .service-card p {
            margin-bottom: 1rem;
        }
        
        .service-link {
            color: #3498db;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .service-link:hover {
            text-decoration: underline;
        }
        
        /* Stats Section */
        .stats-container {
            background: #dee78669;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 3rem 0;
            text-align: center;
        }
        
        .stat-item {
            padding: 1.5rem;
            flex: 1;
            min-width: 200px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #7f8c8d;
            margin-top: 0.5rem;
        }
        
        /* Footer Styles */
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1.5rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #3498db;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            margin-top: 1.5rem;
            color: #bdc3c7;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 0.5rem;
            }
            
            .article-title {
                font-size: 1.8rem;
            }
            
            .article-image {
                height: 250px;
                font-size: 1.2rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
		

        .header {
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #4a6fa5;
        }
        
        .header h1 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .note {
            background-color: #f0f8ff;
            border-left: 4px solid #4a6fa5;
            padding: 10px 15px;
            margin-bottom: 20px;
            font-size: 0.9em;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        
        th {
            background-color: #4a6fa5;
            color: white;
            text-align: left;
            padding: 10px 15px;
            font-weight: bold;
        }
        
        td {
            padding: 10px 15px;
            border-bottom: 1px solid #ddd;
            vertical-align: top;
        }
        
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        tr:hover {
            background-color: #f0f7ff;
        }
        
        .subject-name {
            font-weight: bold;
			font-size: 0.7rem;
        }
        
        .sub-item {
            padding-left: 20px;
            color: #555;
			font-size: 0.7rem;
        }
        
        .category-header {
            background-color: #e8f0fe;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .total-row {
            background-color: #d4edda;
            font-weight: bold;
            border-top: 2px solid #155724;
        }
        
        .grand-total {
            background-color: #cce5ff;
            font-weight: bold;
            border-top: 2px solid #004085;
        }
        
        .keterangan {
            font-size: 1rem;
            color: #666;
            font-style: italic;
            margin-top: 5px;
        }
        
        .footer-note {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 4px;
            padding: 10px 15px;
            margin-top: 20px;
            font-size: 0.9em;
            color: #856404;
        }