
   
        
        .container {
            max-width: 1640px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .disease-section {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;

        }
        
        .disease-title {
            font-size: 26px;
            font-weight: 700;
            color: #1a5276;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
            position: relative;
        }
        
        .disease-title::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
        }
        
        .subsection {
            margin: 25px 0;
        }
        
        .subsection-title {
            font-size: 18px;
            font-weight: 600;
            color: #2874a6;
            margin-bottom: 15px;
            padding-left: 15px;
            border-left: 4px solid #3498db;
        }
        
        .intro-text {
            color: #444;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .info-list {
            list-style: none;
            padding: 0;
        }
        
        .info-list li {
            padding: 12px 20px;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
            border-radius: 8px;
            border-left: 4px solid #3498db;
            position: relative;
        }
        
        .info-list li strong {
            color: #1a5276;
            display: inline-block;
   
        }
        
        .sub-list {
            list-style: none;
            padding-left: 20px;
            margin-top: 10px;
        }
        
        .sub-list li {
            padding: 10px 15px;
            margin-bottom: 8px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid #2ecc71;
        }
        
        .sub-list li strong {
            color: #1e8449;
        }
        
        .advantage-box {
            background: linear-gradient(135deg, #e8f8f5 0%, #d4efdf 100%);
            border: 1px solid #27ae60;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
        }
        
        .advantage-title {
            font-size: 16px;
            font-weight: 600;
            color: #1d8348;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .advantage-title::before {
            content: '✓';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: #27ae60;
            color: #fff;
            border-radius: 50%;
            font-size: 14px;
        }
        
        .highlight {
            font-weight: 600;
            color: #1a5276;
        }
        
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #dee2e6, transparent);
            margin: 30px 0;
        }
        
        .table-info {
            background: #f8f9fa;
            padding: 15px 20px;
            border-radius: 8px;
            margin: 10px 0;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            .disease-section {
                padding: 25px 20px;
            }
            
            .disease-title {
                font-size: 22px;
            }
            
            .info-list li strong {
                display: block;
                margin-bottom: 5px;
            }
        }
    