 :root {
            --primary: #1a5f7a;
            --secondary: #2c8fb5;
            --accent: #d32f2f;
            --light: #f8f9fa;
            --dark: #222;
            --gray: #555;
            --light-gray: #e9ecef;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, var(--primary), #2a7a9a);
            color: white;
            padding: 25px 0;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        
        .hospital-name {
            font-size: 2.2rem;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .hospital-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .article-title {
            font-size: 2.5rem;
            margin-top: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.2;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 15px;
            font-size: 0.95rem;
            opacity: 0.85;
        }
        
        /* Content Sections */
        .content-section {
            background-color: white;
            border-radius: var(--radius);
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        
        .section-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .intro-text {
            font-size: 1.15rem;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .highlight-box {
            background-color: white;
   
            padding: 20px;
            margin: 25px 0;
           
        }
        
        .highlight-box p {
            margin: 0;
            font-size: 1.05rem;
        }
        
        /* Lists */
        .content-list {
            margin: 25px 0;
            padding-left: 25px;
        }
        
        .content-list li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            color: var(--gray);
        }
        
      
        
        /* Warning Symptoms Section */
        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .symptom-card {
            background-color: #fff8f8;
            border-radius: var(--radius);
            padding: 25px;
            border-top: 4px solid var(--accent);
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        
        .symptom-number {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .symptom-title {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .symptom-list {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        .symptom-list li {
            margin-bottom: 8px;
            color: var(--gray);
        }
        
        /* Comparison Section */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .comparison-table th {
            background-color: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* Emergency Warning */
        .emergency-warning {
            background-color: #fff2f2;
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            padding: 25px;
            margin: 30px 0;
        }
        
        .emergency-title {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .emergency-list {
            margin-left: 25px;
            margin-top: 15px;
        }
        
        .emergency-list li {
            margin-bottom: 10px;
            font-size: 1.1rem;
            color: #b71c1c;
            font-weight: 500;
        }
        
        /* Conclusion */
        .conclusion-box {
            background: linear-gradient(135deg, #f0f8ff, #e3f2fd);
            border-radius: var(--radius);
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        
        .conclusion-title {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
     
        
     
        
        /* FAQ Section */
        .faq-section {
            margin-top: 40px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 20px;
        }
        
        .faq-question {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-question:before {
            content: "+";
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .faq-answer {
            color: var(--gray);
            padding-left: 25px;
            display: none;
        }
        
      a{
        color: black;
      }
       
        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .symptoms-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        .intro-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

/* Left Text */
.intro-content {
    flex: 1;
}

/* Right Image */
.intro-image {
    flex: 1;
    text-align: right;
}

.intro-image img {
    max-width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Text Styling */
.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .intro-section {
        flex-direction: column;
    }

    .intro-image {
        text-align: center;
    }
}
