
        * {
            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: #f8fafc;
            padding: 20px;
        }
        
        .blog-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        .blog-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        .blog-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .blog-meta {
            font-size: 16px;
            opacity: 0.85;
            margin-top: 10px;
        }
        
        .blog-content {
            padding: 40px 30px;
            font-size: 18px;
        }
        
        .intro {
            font-size: 20px;
            color: #2d3748;
            margin-bottom: 30px;
            line-height: 1.7;
            font-weight: 500;
        }
        
        h2 {
            color: #1e3c72;
            margin: 35px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
            font-size: 26px;
        }
        
        h3 {
            color: #2a5298;
            margin: 25px 0 15px 0;
            font-size: 22px;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        ul {
            margin: 15px 0 20px 30px;
        }
        
        li {
            margin-bottom: 12px;
        }
        
        .highlight-box {
            background: #f0f7ff;
            border-left: 4px solid #2a5298;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .treatment-plan {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
        }
        
        .treatment-plan h4 {
            color: #1e3c72;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .treatment-detail {
            display: flex;
            margin-bottom: 10px;
        }
        
        .treatment-label {
            font-weight: 600;
            min-width: 100px;
        }
        
        .conclusion {
            background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
        }
        
        .conclusion h3 {
            color: #1e3c72;
            margin-bottom: 15px;
        }
        
        .cta-button {
            display: inline-block;
            background: #1e3c72;
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: #2a5298;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .icon-heading {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        @media (max-width: 600px) {
            .blog-content {
                padding: 25px 20px;
            }
            
            .blog-title {
                font-size: 26px;
            }
            
            h2 {
                font-size: 22px;
            }
        }
    