.post_artikel * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .post_artikel {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .post_artikel-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-bottom: 30px;
        }
        /* Typography */
        
        .post_artikel h1 {
            color: #2c5e1a;
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
            border-bottom: 2px solid #e8f5e9;
            padding-bottom: 15px;
        }
        
        .post_artikel h2 {
            color: #388e3c;
            font-size: 24px;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e8f5e9;
        }
        
        .post_artikel h3 {
            color: #4caf50;
            font-size: 20px;
            margin: 25px 0 12px;
        }
        
        .post_artikel p {
            margin-bottom: 18px;
            text-align: justify;
        }
        /* List styles */
        
        .post_artikel ul,
        .post_artikel ol {
            margin: 15px 0;
            padding-left: 25px;
        }
        
        .post_artikel li {
            margin-bottom: 10px;
        }
        /* Highlight boxes */
        
        .post_artikel-info-box {
            background-color: #e8f5e9;
            border-left: 4px solid #4caf50;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .post_artikel-warning-box {
            background-color: #fff8e1;
            border-left: 4px solid #ffa000;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .post_artikel-tip-box {
            background-color: #e3f2fd;
            border-left: 4px solid #2196f3;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        /* Table styles */
        
        .post_artikel-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .post_artikel-table th {
            background-color: #4caf50;
            color: white;
            text-align: left;
            padding: 12px 15px;
        }
        
        .post_artikel-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .post_artikel-table tr:nth-child(even) {
            background-color: #f5f5f5;
        }
        
        .post_artikel-table tr:hover {
            background-color: #f1f8e9;
        }
        /* Responsive design */
        
        @media (max-width: 768px) {
            .post_artikel {
                padding: 10px;
            }
            .post_artikel-container {
                padding: 20px;
            }
            .post_artikel h1 {
                font-size: 26px;
            }
            .post_artikel h2 {
                font-size: 22px;
            }
            .post_artikel h3 {
                font-size: 18px;
            }
            .post_artikel-table {
                font-size: 14px;
            }
            .post_artikel-table th,
            .post_artikel-table td {
                padding: 8px 10px;
            }
        }
        /* Additional visual elements */
        
        .post_artikel-highlight {
            background-color: #fff9c4;
            padding: 2px 5px;
            border-radius: 3px;
        }
        
        .post_artikel-conclusion {
            background-color: #f5f5f5;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid #4caf50;
        }
        
        .post_artikel-category-tag {
            display: inline-block;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        .post_artikel-read-more {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 10px;
            transition: background-color 0.3s;
        }
        
        .post_artikel-read-more:hover {
            background-color: #388e3c;
        }
        /* Image styling */
        
        .post_artikel-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .post_artikel-img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -15px;
            margin-bottom: 20px;
            font-size: 14px;
        }
        /* Blockquote styling */
        
        .post_artikel-blockquote {
            border-left: 4px solid #4caf50;
            padding: 15px 20px;
            margin: 20px 0;
            background-color: #f9f9f9;
            font-style: italic;
        }
        /* Section divider */
        
        .post_artikel-divider {
            height: 1px;
            background: linear-gradient( to right, transparent, #4caf50, transparent);
            margin: 30px 0;
            border: none;
        }