:root {
            --dark-blue: #003a70;
            --teal: #20c997;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        ::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #20c997;
    border-radius: 5px;
}

        
        /* Header & Navigation */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--dark-blue);
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            height: 50px;
            margin-right: 10px;
        }

        .navbar-brand:hover {
            color: #20c997;
            transition:0.5s;
        }

        
        .nav-link {
            color: var(--dark-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--teal) !important;
        }

        .nav-link-drop:hover {
            color: var(--teal) !important;
        }
        
        .btn-appointment {
            background-color: var(--teal);
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-appointment:hover {
            background-color: #003a70;
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 4px 8px rgba(32, 201, 151, 0.3);
        }
        

        .hero {
            height: 65vh;
            background: linear-gradient(rgba(0, 58, 112, 0.5), rgba(0, 58, 112, 0.5)), url('/images/realimages/beds.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;

        }

        
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: var(--teal);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: #1ba87e;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(32, 201, 151, 0.4);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-heading {
            color: #003a70;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
        }
        
        .service-item-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            margin-bottom: 30px;
        }
        
        .service-item-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon-container {
            background-color: rgba(32, 201, 151, 0.1);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #20c997;
        }
        
        .service-item-card h3 {
            color: #003a70;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .services-page-links {
            text-decoration: none;
            color: black;
        }
        
        .view-all-btn {
            background-color: #20c997;
            color: white;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            margin-top: 20px;
        }
        
        .view-all-btn:hover {
            background-color: #003a70;
            color:white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(32, 201, 151, 0.4);
        }
        
        .hidden-services {
            display: none;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
            
            .section-heading {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .service-item-card {
                padding: 20px;
            }
            
            .service-icon-container {
                width: 70px;
                height: 70px;
            }
            
            .service-item-card h3 {
                font-size: 1.1rem;
            }
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
        }
        
        .about-text {
            padding-right: 30px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: var(--dark-blue);
            color: white;
        }
        
        .testimonial-card {
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .author-info p {
            margin-bottom: 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Footer */
        .footer {
            background-color: #00264d;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--teal);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-col-qucik {
            margin-left: 5rem;
        }

        .footer-contact-us {
            margin-left: 5rem;
        }

        .footer-image-div{
            background-color: white;
            height: 70px;
            width: 80px;
            border-radius: 10px;
            margin: center;
            margin-bottom: 10px;

        }

        #footer-logo-img {
            max-width: 100%;
            width: 80px;

        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--teal);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--teal);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }

.footer-col-qucik {
                margin-left: 0px;
            }

            .footer-contact-us {
                margin-left: 0px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1rem;
            }
            
            .navbar-brand img {
                height: 40px;
            }
.footer-col-qucik {
                margin-left: 0px;
            }

            .footer-contact-us {
                margin-left: 0px;
            }
            
            .hero {
                padding: 40px 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card, .testimonial-card {
                padding: 20px;
            }

        }
        
        @media (max-width: 350px) {
            .navbar-brand {
                font-size: 1rem;
            }
            
            .navbar-brand img {
                height: 35px;
            }
.footer-col-qucik {
                margin-left: 0px;
            }

            .footer-contact-us {
                margin-left: 0px;
            }
            
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .btn-hero {
                padding: 10px 20px;
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }


        }
/*///////////////////////////////////////////////////////////////////////*/
         /* About Page Styles */
/*/////////////////////////////////////////////////////////////*/
        
        .about-main-header {
            background: linear-gradient(rgba(0, 58, 112, 0.85), rgba(0, 58, 112, 0.9)), url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 80px;
        }
        
        .about-main-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-main-subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hospital-story-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .story-heading {
            color: #003a70;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }
        
        .story-heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #20c997;
        }
        
        .story-paragraph {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .mission-highlight {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 30px;
            border-left: 4px solid #20c997;
        }
        
        .excellence-section {
            padding: 80px 0;
            background-color: white;
            margin-top: -90px;
        }
        
        .excellence-title {
            color: #003a70;
            font-weight: 700;
            /*margin-bottom: 40px;*/
            text-align: center;
        }
        
        .commitment-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .commitment-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .commitment-symbol {
            width: 80px;
            height: 80px;
            background-color: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #20c997;
            font-size: 2rem;
        }
        
        .commitment-box h3 {
            color: #003a70;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .specialties-area {
            padding: 80px 0;
            background-color: #f8f9fa;
            margin-top: -90px;
        }
        
        .specialties-heading {
            color: #003a70;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .specialty-group {
            margin-bottom: 40px;
        }
        
        .specialty-group h3 {
            color: #20c997;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(32, 201, 151, 0.3);
        }
        
        .specialty-items {
            list-style-type: none;
            padding: 0;
        }
        
        .specialty-items li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }
        
        .specialty-items li:before {
            content: '\f0a9';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: #20c997;
            position: absolute;
            left: 0;
        }
        
        .diagnostic-facilities {
            padding: 80px 0;
            background-color: white;
            margin-top: -90px;
        }
        
        .diagnostic-title {
            color: #003a70;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .facility-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .facility-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 58, 112, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #003a70;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .facility-content h4 {
            color: #003a70;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .trust-reasons {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 58, 112, 0.9), rgba(0, 58, 112, 0.9)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .trust-title {
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .trust-point {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .trust-symbol {
            font-size: 2.5rem;
            color: #20c997;
            margin-bottom: 15px;
        }
        
        .trust-point h4 {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .contact-action {
            padding: 80px 0;
            background-color: #f8f9fa;
            text-align: center;
        }
        
        .contact-action-title {
            color: #003a70;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .contact-action-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-details-group {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .contact-detail-item {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-detail-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #20c997;
            font-size: 1.2rem;
            margin-right: 15px;
        }
        
        .contact-info-text h4 {
            color: #003a70;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .book-now-button {
            background-color: #20c997;
            color: white;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .book-now-button:hover {
            background-color: #1ba87e;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(32, 201, 151, 0.4);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .about-main-header {
                padding: 80px 0 60px;
            }
            
            .about-main-title {
                font-size: 2.2rem;
            }
            
            .contact-details-group {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-detail-item {
                width: 100%;
                max-width: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .about-main-title {
                font-size: 1.8rem;
            }
            
            .about-main-subtitle {
                font-size: 1rem;
            }
            
            .mission-highlight {
                padding: 20px;
            }
        }

        
/* Department of Obstetrics & Gynaecology Styles */
[data-department="obstetrics-gynaecology"] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dept-obgyn-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dept-obgyn-title {
    color: #003a70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dept-obgyn-subtitle {
    color: #20c997;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dept-obgyn-intro {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.dept-obgyn-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dept-obgyn-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.dept-section-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 1.5rem 0;
}

.dept-section-heading h3 {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.dept-icon-star {
    font-size: 1.5rem;
}

.dept-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #20c997;
    padding-bottom: 0.5rem;
}

/* Services Grid */
.dept-services-grid h4 {
    color: #003a70;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dept-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dept-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dept-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dept-check-list [data-item="service"] {
    padding: 0.5rem 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.5;
}

.dept-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dept-bullet-list [data-item="condition"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.dept-bullet-list [data-item="condition"]::before {
    content: "•";
    color: #20c997;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Condition Categories */
.dept-condition-category {
    margin-bottom: 2.5rem;
}

.dept-condition-category h4 {
    color: #20c997;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Specialized Services */
.dept-specialized-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.dept-service-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #20c997;
    transition: transform 0.3s ease;
}

.dept-service-item:hover {
    transform: translateY(-2px);
}

.dept-service-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Why Choose Section */
.dept-why-choose {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.dept-why-choose .dept-section-heading h3 {
    color: white;
}

.dept-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dept-icon-check {
    color: #20c997;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dept-feature-item h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dept-feature-item p {
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.dept-faq-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.dept-faq-note {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.dept-faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.dept-faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dept-faq-item h5 {
    color: #003a70;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.dept-faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dept-obgyn-title {
        font-size: 2rem;
    }
    
    .dept-obgyn-subtitle {
        font-size: 1.3rem;
    }
    
    .dept-grid-2col,
    .dept-grid-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dept-why-choose {
        padding: 2rem 1.5rem;
    }
    
    .dept-specialized-section,
    .dept-faq-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    [data-department="obstetrics-gynaecology"] {
        padding: 3rem 0;
    }
    
    .dept-obgyn-title {
        font-size: 1.8rem;
    }
    
    .dept-obgyn-intro {
        font-size: 1.1rem;
    }
    
    .dept-section-heading h3,
    .dept-section-title {
        font-size: 1.5rem;
    }
}

/* Cardiology Department Styles */
[data-department="cardiology"] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cardio-dept-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cardio-dept-title {
    color: #003a70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cardio-dept-subtitle {
    color: #20c997;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cardio-dept-intro {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cardio-dept-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cardio-dept-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cardio-section-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 1.5rem 0;
}

.cardio-section-heading h3 {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.cardio-icon-star {
    font-size: 1.5rem;
}

.cardio-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #20c997;
    padding-bottom: 0.5rem;
}

/* Grid Layouts */
.cardio-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cardio-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Lists Styling */
.cardio-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cardio-bullet-list [data-item="condition"],
.cardio-bullet-list [data-item="condition"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.cardio-bullet-list [data-item="condition"]::before,
.cardio-bullet-list [data-item="condition"]::before {
    content: "•";
    color: #20c997;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.cardio-procedure-list,
.cardio-specialty-list,
.cardio-symptom-list,
.cardio-reason-list,
.cardio-disease-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cardio-procedure-list [data-item="procedure"],
.cardio-specialty-list [data-item="specialty"],
.cardio-symptom-list [data-item="symptom"],
.cardio-reason-list [data-item="reason"],
.cardio-disease-list [data-item="disease"] {
    padding: 0.5rem 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.cardio-procedure-list [data-item="procedure"]::before,
.cardio-specialty-list [data-item="specialty"]::before,
.cardio-symptom-list [data-item="symptom"]::before,
.cardio-reason-list [data-item="reason"]::before,
.cardio-disease-list [data-item="disease"]::before {
    content: "•";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Condition Categories */
.cardio-condition-category {
    margin-bottom: 2.5rem;
}

.cardio-condition-category h4 {
    color: #20c997;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Diagnostic Tests */
.cardio-diagnostics-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.cardio-test-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    transition: transform 0.3s ease;
}

.cardio-test-item:hover {
    transform: translateY(-2px);
}

.cardio-test-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cardio-test-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Specialties */
.cardio-specialty-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cardio-specialty-item:hover {
    border-color: #20c997;
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.1);
}

.cardio-specialty-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cardio-specialty-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Section */
.cardio-why-choose {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.cardio-why-choose .cardio-section-heading h3 {
    color: white;
}

.cardio-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cardio-icon-check {
    color: #20c997;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.cardio-feature-item h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cardio-feature-item p {
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

/* Additional Sections */
.cardio-overview-section,
.cardio-procedures-section,
.cardio-specialties-section,
.cardio-visit-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.cardio-add-specialties,
.cardio-symptoms-section,
.cardio-diseases-section {
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cardio-dept-title {
        font-size: 2rem;
    }
    
    .cardio-dept-subtitle {
        font-size: 1.3rem;
    }
    
    .cardio-grid-2col,
    .cardio-grid-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cardio-why-choose {
        padding: 2rem 1.5rem;
    }
    
    .cardio-diagnostics-section,
    .cardio-overview-section,
    .cardio-procedures-section,
    .cardio-specialties-section,
    .cardio-visit-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    [data-department="cardiology"] {
        padding: 3rem 0;
    }
    
    .cardio-dept-title {
        font-size: 1.8rem;
    }
    
    .cardio-dept-intro {
        font-size: 1.1rem;
    }
    
    .cardio-section-heading h3,
    .cardio-section-title {
        font-size: 1.5rem;
    }
    
    .cardio-test-item,
    .cardio-specialty-item {
        padding: 1rem;
    }
}





/* Neurology Department Styles */
[data-department="neurology"] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.neuro-dept-header {
    text-align: center;
    margin-bottom: 3rem;
}

.neuro-dept-title {
    color: #003a70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.neuro-dept-subtitle {
    color: #20c997;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.neuro-dept-intro {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.neuro-dept-content {
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-dept-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.neuro-section-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 1.5rem 0;
}

.neuro-section-heading h3 {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.neuro-icon-star {
    font-size: 1.5rem;
}

.neuro-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #20c997;
    padding-bottom: 0.5rem;
}

/* Grid Layouts */
.neuro-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.neuro-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Lists Styling */
.neuro-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neuro-check-list [data-item="facility"] {
    padding: 0.5rem 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.5;
}

.neuro-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neuro-bullet-list [data-item="symptom"],
.neuro-bullet-list [data-item="disorder"],
.neuro-bullet-list [data-item="condition"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.neuro-bullet-list [data-item="symptom"]::before,
.neuro-bullet-list [data-item="disorder"]::before,
.neuro-bullet-list [data-item="condition"]::before {
    content: "•";
    color: #6f42c1;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Disorders Section */
.neuro-disorders-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.neuro-disorder-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.neuro-disorder-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.neuro-disorder-item h4 {
    color: #20c997;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* BE-FAST Grid */
.neuro-befast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.neuro-symptom-item {
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #20c997;
    font-size: 1rem;
}

.neuro-symptom-item strong {
    color: #20c997;
    font-size: 1.2rem;
}

/* Emergency Box */
.neuro-emergency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.neuro-emergency-box h5 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.neuro-action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neuro-action-list [data-item="action"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #856404;
    position: relative;
}

.neuro-action-list [data-item="action"]::before {
    content: "➡";
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* First Aid Box */
.neuro-firstaid-box {
    background: #d1ecf1;
    border: 2px solid #17a2b8;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.neuro-firstaid-box h5 {
    color: #0c5460;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.neuro-do-list,
.neuro-dont-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neuro-do-list [data-item="action"] {
    padding: 0.3rem 0 0.3rem 1.5rem;
    color: #155724;
    position: relative;
}

.neuro-do-list [data-item="action"]::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.neuro-dont-list [data-item="action"] {
    padding: 0.3rem 0 0.3rem 1.5rem;
    color: #721c24;
    position: relative;
}

.neuro-dont-list [data-item="action"]::before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Guidelines Box */
.neuro-guidelines-box {
    background: #e2e3e5;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.neuro-guidelines-box h5 {
    color: #383d41;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.neuro-guideline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neuro-guideline-list [data-item="guideline"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #383d41;
    position: relative;
}

.neuro-guideline-list [data-item="guideline"]::before {
    content: "⚠";
    color: #ffc107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Visit Section */
.neuro-visit-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.neuro-symptom-visit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neuro-symptom-visit-list [data-item="symptom"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.neuro-symptom-visit-list [data-item="symptom"]::before {
    content: "→";
    color: #6f42c1;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Diagnostic Tests */
.neuro-diagnostics-section {
    margin: 2rem 0;
}

.neuro-test-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #20c997;
    transition: transform 0.3s ease;
}

.neuro-test-item:hover {
    transform: translateY(-2px);
}

.neuro-test-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.neuro-test-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Section */
.neuro-why-choose {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.neuro-why-choose .neuro-section-heading h3 {
    color: white;
}

.neuro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.neuro-icon-check {
    color: #20c997;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.neuro-feature-item h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.neuro-feature-item p {
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

/* Additional Sections */
.neuro-overview-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .neuro-dept-title {
        font-size: 2rem;
    }
    
    .neuro-dept-subtitle {
        font-size: 1.3rem;
    }
    
    .neuro-grid-2col,
    .neuro-grid-3col,
    .neuro-befast-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .neuro-why-choose {
        padding: 2rem 1.5rem;
    }
    
    .neuro-disorders-section,
    .neuro-visit-section,
    .neuro-overview-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    [data-department="neurology"] {
        padding: 3rem 0;
    }
    
    .neuro-dept-title {
        font-size: 1.8rem;
    }
    
    .neuro-dept-intro {
        font-size: 1.1rem;
    }
    
    .neuro-section-heading h3,
    .neuro-section-title {
        font-size: 1.5rem;
    }
    
    .neuro-test-item {
        padding: 1rem;
    }
}



/*////////////////////////*/

/* Paediatrics Department Styles */
[data-department="paediatrics"] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pedia-dept-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pedia-dept-title {
    color: #003a70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pedia-dept-subtitle {
    color: #20c997;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pedia-dept-intro {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pedia-dept-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pedia-dept-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pedia-section-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 1.5rem 0;
}

.pedia-section-heading h3 {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.pedia-icon-star {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: bold;
}

.pedia-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #20c997;
    padding-bottom: 0.5rem;
}

/* Grid Layouts */
.pedia-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pedia-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* What is Paediatrics Section */
.pedia-whatis-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.pedia-responsibilities h4 {
    color: #003a70;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pedia-duty-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pedia-duty-list [data-item="duty"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.pedia-duty-list [data-item="duty"]::before {
    content: ">";
    color: #ff6b6b;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Conditions Section */
.pedia-conditions-section {
    margin: 2rem 0;
}

.pedia-condition-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b6b;
    transition: all 0.3s ease;
    position: relative;
}

.pedia-condition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15);
}

.pedia-condition-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ff6b6b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.pedia-condition-item h4 {
    color: #003a70;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.pedia-condition-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Symptoms Section */
.pedia-symptoms-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.pedia-symptom-list {
    list-style: disc;
    padding: 0;
    margin: 0;
}

.pedia-symptom-list [data-item="symptom"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    padding-left: 0px;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}


.pedia-symptoms-note {
    background: #e7f5ff;
    border-left: 4px solid #4dabf7;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Diagnostic Tests */
.pedia-diagnostics-section {
    margin: 2rem 0;
}

.pedia-test-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4dabf7;
    transition: transform 0.3s ease;
}

.pedia-test-item:hover {
    transform: translateY(-2px);
}

.pedia-test-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pedia-test-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Services Section */
.pedia-services-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.pedia-service-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.pedia-service-item:hover {
    border-color: #20c997;
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.1);
}

.pedia-service-item h4 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.pedia-service-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Facilities Section */
.pedia-facilities-section {
    margin: 2rem 0;
}

.pedia-facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pedia-facility-list [data-item="facility"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.pedia-facility-list [data-item="facility"]::before {
    content: "+";
    color: #20c997;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Why Choose Section */
.pedia-why-choose {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.pedia-why-choose .pedia-section-heading h3 {
    color: white;
}

.pedia-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pedia-icon-check {
    color: #20c997;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.pedia-feature-item h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.pedia-conclusion {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.pedia-conclusion p {
    color: #e9ecef;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pedia-dept-title {
        font-size: 2rem;
    }
    
    .pedia-dept-subtitle {
        font-size: 1.3rem;
    }
    
    .pedia-grid-2col,
    .pedia-grid-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pedia-why-choose {
        padding: 2rem 1.5rem;
    }
    
    .pedia-whatis-section,
    .pedia-symptoms-section,
    .pedia-services-section {
        padding: 1.5rem;
    }
    
    .pedia-condition-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    [data-department="paediatrics"] {
        padding: 3rem 0;
    }
    
    .pedia-dept-title {
        font-size: 1.8rem;
    }
    
    .pedia-dept-intro {
        font-size: 1.1rem;
    }
    
    .pedia-section-heading h3,
    .pedia-section-title {
        font-size: 1.5rem;
    }
    
    .pedia-test-item,
    .pedia-service-item {
        padding: 1rem;
    }
    
    .pedia-condition-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        top: -8px;
        left: -8px;
    }
}

/* Gastroenterology Department Styles */
[data-department="gastroenterology"] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gastro-dept-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gastro-dept-title {
    color: #003a70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gastro-dept-subtitle {
    color: #20c997;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.gastro-dept-intro {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gastro-dept-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gastro-dept-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.gastro-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #20c997;
    padding-bottom: 0.5rem;
}

/* Grid Layouts */
.gastro-grid-1col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gastro-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gastro-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* What is Gastroenterology Section */
.gastro-whatis-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

/* Conditions Section */
.gastro-conditions-section {
    margin: 2rem 0;
}

.gastro-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.gastro-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gastro-category h4 {
    color: #20c997;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.gastro-condition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gastro-condition-list [data-item="condition"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.gastro-condition-list [data-item="condition"]::before {
    content: ">";
    color: #20c997;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Diagnostic Services */
.gastro-diagnostics-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.gastro-test-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #003a70;
    transition: transform 0.3s ease;
}

.gastro-test-item:hover {
    transform: translateY(-2px);
}

.gastro-test-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gastro-test-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Treatment Approaches */
.gastro-treatments-section {
    margin: 2rem 0;
}

.gastro-treatment-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-top: 4px solid #20c997;
    transition: all 0.3s ease;
}

.gastro-treatment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.gastro-treatment-item h4 {
    color: #003a70;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gastro-treatment-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.gastro-why-choose {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.gastro-why-choose .gastro-section-title {
    color: white;
    border-bottom-color: #20c997;
}

.gastro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gastro-icon-check {
    color: #20c997;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.gastro-feature-item h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gastro-feature-item p {
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

/* When to Visit Section */
.gastro-visit-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.gastro-symptom-list {
    list-style: disc;
    padding: 0;
    margin: 0;
}

.gastro-symptom-list [data-item="symptom"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    padding-left: 0px;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}


.gastro-visit-note {
    background: #e7f5ff;
    border-left: 4px solid #4dabf7;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* FAQ Section */
.gastro-faq-section {
    margin: 2rem 0;
}

.gastro-faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #20c997;
    transition: all 0.3s ease;
}

.gastro-faq-item:hover {
    transform: translateX(5px);
}

.gastro-faq-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.gastro-faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {
    .gastro-dept-title {
        font-size: 2rem;
    }
    
    .gastro-dept-subtitle {
        font-size: 1.3rem;
    }
    
    .gastro-grid-2col,
    .gastro-grid-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gastro-why-choose {
        padding: 2rem 1.5rem;
    }
    
    .gastro-whatis-section,
    .gastro-diagnostics-section,
    .gastro-visit-section {
        padding: 1.5rem;
    }
    
    .gastro-test-item,
    .gastro-treatment-item,
    .gastro-faq-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    [data-department="gastroenterology"] {
        padding: 3rem 0;
    }
    
    .gastro-dept-title {
        font-size: 1.8rem;
    }
    
    .gastro-dept-intro {
        font-size: 1.1rem;
    }
    
    .gastro-section-title {
        font-size: 1.5rem;
    }
    
    .gastro-test-item,
    .gastro-treatment-item,
    .gastro-faq-item {
        padding: 1rem;
    }
}

/* Orthopaedics & Spine Department Styles */
[data-department="orthopaedics-spine"] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ortho-dept-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ortho-dept-title {
    color: #003a70;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ortho-dept-subtitle {
    color: #20c997;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ortho-dept-intro {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ortho-dept-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ortho-dept-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.ortho-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #20c997;
    padding-bottom: 0.5rem;
}

/* Grid Layouts */
.ortho-grid-1col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.ortho-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ortho-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Philosophy Section */
.ortho-philosophy-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

/* Services Section */
.ortho-services-section {
    margin: 2rem 0;
}

.ortho-service-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid #003a70;
    transition: all 0.3s ease;
}

.ortho-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.ortho-service-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ortho-service-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Spine Care Section */
.ortho-spine-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.ortho-care-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #20c997;
    transition: transform 0.3s ease;
}

.ortho-care-item:hover {
    transform: translateX(5px);
}

.ortho-care-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ortho-care-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Conditions Section */
.ortho-conditions-section {
    margin: 2rem 0;
}

.ortho-condition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ortho-condition-list [data-item="condition"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.ortho-condition-list [data-item="condition"]::before {
    content: ">";
    color: #003a70;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Diagnostics Section */
.ortho-diagnostics-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.ortho-test-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #20c997;
    transition: transform 0.3s ease;
}

.ortho-test-item:hover {
    transform: translateY(-2px);
}

.ortho-test-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ortho-test-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Rehabilitation Section */
.ortho-rehab-section {
    margin: 2rem 0;
}

.ortho-rehab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ortho-rehab-list [data-item="service"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.ortho-rehab-list [data-item="service"]::before {
    content: "+";
    color: #20c997;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Why Choose Section */
.ortho-why-choose {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.ortho-why-choose .ortho-section-title {
    color: white;
    border-bottom-color: #20c997;
}

.ortho-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ortho-icon-check {
    color: #20c997;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ortho-feature-item h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ortho-feature-item p {
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

/* Patient Selection Section */
.ortho-selection-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.ortho-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ortho-criteria-list [data-item="criterion"] {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
}

.ortho-criteria-list [data-item="criterion"]::before {
    content: "-";
    color: #003a70;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.ortho-selection-note {
    background: #e7f5ff;
    border-left: 4px solid #4dabf7;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* FAQ Section */
.ortho-faq-section {
    margin: 2rem 0;
}

.ortho-faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #003a70;
    transition: all 0.3s ease;
}

.ortho-faq-item:hover {
    transform: translateX(5px);
}

.ortho-faq-item h5 {
    color: #003a70;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.ortho-faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {
    .ortho-dept-title {
        font-size: 2rem;
    }
    
    .ortho-dept-subtitle {
        font-size: 1.3rem;
    }
    
    .ortho-grid-2col,
    .ortho-grid-3col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ortho-why-choose {
        padding: 2rem 1.5rem;
    }
    
    .ortho-philosophy-section,
    .ortho-spine-section,
    .ortho-diagnostics-section,
    .ortho-selection-section {
        padding: 1.5rem;
    }
    
    .ortho-service-item,
    .ortho-care-item,
    .ortho-test-item,
    .ortho-faq-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    [data-department="orthopaedics-spine"] {
        padding: 3rem 0;
    }
    
    .ortho-dept-title {
        font-size: 1.8rem;
    }
    
    .ortho-dept-intro {
        font-size: 1.1rem;
    }
    
    .ortho-section-title {
        font-size: 1.5rem;
    }
    
    .ortho-service-item,
    .ortho-care-item,
    .ortho-test-item,
    .ortho-faq-item {
        padding: 1rem;
    }
}


/*///////////////////////////////////*/
/*Blogs*/
/*/////////////////////////////////////*/

/* Blog Main Page Styles */
[data-page="blog-main"] {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-main-title {
    color: #003a70;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Post */
.blog-featured-section {
    margin-bottom: 4rem;
}

.blog-featured-post {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
}

.blog-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured-image:hover .blog-img-main {
    transform: scale(1.05);
}

.blog-featured-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #20c997;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-featured-title {
    color: #003a70;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-featured-excerpt {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-meta-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blog-icon-user {
    color: #003a70;
    font-weight: 600;
    font-size: 1rem;
}

.blog-meta-readtime {
    color: #666;
    font-size: 0.9rem;
}

.blog-read-btn {
    display: inline-block;
    background: #20c997;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-btn:hover {
    background: #1ba87e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* Categories Section */
.blog-categories-section {
    margin-bottom: 4rem;
}

.blog-section-title {
    color: #003a70;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-category-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-category-card:hover {
    transform: translateY(-5px);
    border-color: #20c997;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-category-title {
    color: #003a70;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-category-count {
    color: #666;
    font-size: 0.9rem;
}

/* Recent Posts Section */
.blog-recent-section {
    margin-bottom: 4rem;
}

.blog-recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-viewall-btn {
    color: #20c997;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-viewall-btn:hover {
    color: #1ba87e;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.specific-blog-page-link {
    text-decoration: none;
}

.blog-post-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-img-card {
    transform: scale(1.1);
}

.blog-post-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 58, 112, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-title {
    color: #003a70;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
    line-height: 1.4;
}

.blog-post-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Topics Section */
.blog-topics-section {
    margin-bottom: 4rem;
}

.blog-topics-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.blog-topic-link {
    background: #f8f9fa;
    color: #003a70;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-topic-link:hover {
    background: #20c997;
    color: white;
    border-color: #20c997;
}

/* Newsletter Section */
.blog-newsletter-section {
    background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.blog-newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blog-newsletter-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-newsletter-desc {
    color: #e9ecef;
    line-height: 1.6;
    margin: 0;
}

.blog-subscribe-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-email-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.blog-subscribe-btn {
    background: #20c997;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-subscribe-btn:hover {
    background: #1ba87e;
    transform: translateY(-2px);
}

.blog-form-note {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-featured-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories-grid,
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-newsletter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2.2rem;
    }
    
    .blog-categories-grid,
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-recent-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .blog-subscribe-form {
        flex-direction: column;
    }
    
    .blog-email-input,
    .blog-subscribe-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    [data-page="blog-main"] {
        padding: 2rem 0;
    }
    
    .blog-main-title {
        font-size: 1.8rem;
    }
    
    .blog-featured-content {
        padding: 1.5rem;
    }
    
    .blog-featured-title {
        font-size: 1.5rem;
    }
    
    .blog-newsletter-section {
        padding: 2rem 1.5rem;
    }
}

/* ====================== CONTACT FORM – UNIQUE & CLEAN ====================== */
[data-contact="wrapper"] {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  background: white;
}

[data-contact="image"] {
  flex: 1 1 400px;
  min-height: 420px;
  background: linear-gradient(rgba(0,58,112,0.75), rgba(0,58,112,0.85)), 
              url('images/image.jpg') center/cover no-repeat;
}

[data-contact="form-container"] {
  flex: 1 1 400px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fffd 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.captcha-box {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

[data-contact="title"] {
  font-size: 2rem;
  font-weight: 700;
  color: #003a70;
  margin-bottom: 8px;
  text-align: center;
}

[data-contact="subtitle"] {
  font-size: 1.1rem;
  color: #20c997;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

[data-contact="input"] {
  width: 100%;
  max-width: 380px;
  margin: 12px auto;
  padding: 16px 20px;
  border: 2px solid #e0e6f0;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s;
  display: block;
}

[data-contact="input"]:focus {
  outline: none;
  border-color: #20c997;
  box-shadow: 0 0 0 4px rgba(32,201,151,0.15);
}

[data-contact="button"] {
  width: 100%;
  max-width: 380px;
  margin: 20px auto 0;
  padding: 16px;
  background: #20c997;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
}

[data-contact="button"]:hover {
  background: #003a70;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(32,201,151,0.3);
}

[data-contact="success"] {
  margin-top: 20px;
  padding: 18px;
  background: #d4edda;
  color: #155724;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

/* Responsive – Perfect on Mobile & Small Screens */
@media (max-width: 992px) {
  [data-contact="wrapper"] { margin: 40px 20px; }
}

@media (max-width: 768px) {
  [data-contact="wrapper"] { flex-direction: column; }
  [data-contact="image"] { min-height: 300px; }
  [data-contact="form-container"] { padding: 40px 30px; }
}

@media (max-width: 480px) {
  [data-contact="title"] { font-size: 1.7rem; }
  [data-contact="form-container"] { padding: 35px 25px; }
  [data-contact="input"], [data-contact="button"] { padding: 14px 18px; }
}

@media (max-width: 350px) {
  [data-contact="form-container"] { padding: 30px 20px; }
  [data-contact="input"], [data-contact="button"] { font-size: 0.95rem; }
  [data-contact="input"]  {background-color: red}
}







/*/////////////////////////////////////////////////////////////*/
/*blog page*/

  /* Blog Container Styles */
        [data-blog="container"] {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        /* Blog Header */
        [data-blog="header"] {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 3px solid #20c997;
        }

        [data-blog="title"] {
            font-size: 2rem;
            color: #003a70;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        [data-blog="meta"] {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
            font-size: 1rem;
            margin-top: 20px;
        }

        [data-blog="meta-item"] {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Featured Image */
        [data-blog="featured-image"] {
            width: 100%;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        [data-blog="featured-image"] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        [data-blog="featured-image"]:hover img {
            transform: scale(1.03);
        }

        /* Blog Content */
        [data-blog="content"] {
            max-width: 900px;
            margin: 0 auto;
        }

        [data-blog="intro"] {
            font-size: 1rem;
            color: #444;
            margin-bottom: 40px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border-left: 5px solid #20c997;
        }

        /* Section Styles */
        [data-blog="section"] {
            margin-bottom: 50px;
        }

        [data-blog="section-title"] {
            font-size: 1.8rem;
            color: #003a70;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #20c997;
            font-weight: 600;
        }

        [data-blog="paragraph"] {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #444;
            line-height: 1.7;
        }

        /* Important Note Box */
        [data-blog="note-box"] {
            background-color: #e7f5ff;
            border-left: 4px solid #4dabf7;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        [data-blog="note-title"] {
            font-size: 1.2rem;
            color: #003a70;
            margin-bottom: 15px;
            font-weight: 600;
        }

        [data-blog="note-text"] {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }

        /* Vaccination Schedule Table */
        [data-blog="schedule-table"] {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        [data-blog="table-header"] {
            background-color: #003a70;
            color: white;
            font-weight: 600;
        }

        [data-blog="table-header"] th {
            padding: 18px 15px;
            text-align: left;
            font-size: 1.1rem;
        }

        [data-blog="table-row"] {
            border-bottom: 1px solid #e9ecef;
            transition: background-color 0.3s ease;
        }

        [data-blog="table-row"]:nth-child(even) {
            background-color: #f8f9fa;
        }

        [data-blog="table-row"]:hover {
            background-color: rgba(32, 201, 151, 0.1);
        }

        [data-blog="table-cell"] {
            padding: 16px 15px;
            font-size: 1rem;
            color: #444;
        }

        [data-blog="vaccine-name"] {
            color: #003a70;
            font-weight: 600;
        }

        [data-blog="vaccine-age"] {
            color: #20c997;
            font-weight: 600;
        }

        /* Checklist */
        [data-blog="checklist"] {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        [data-blog="check-item"] {
            padding: 12px 0 12px 40px;
            position: relative;
            font-size: 1rem;
            color: #444;
        }

        [data-blog="check-item"]:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 18px;
            width: 20px;
            height: 20px;
            background-color: #20c997;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Tips Section */
        [data-blog="tips-container"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        [data-blog="tip-card"] {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #20c997;
            transition: transform 0.3s ease;
        }

        [data-blog="tip-card"]:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        [data-blog="tip-icon"] {
            font-size: 2rem;
            color: #20c997;
            margin-bottom: 15px;
        }

        [data-blog="tip-title"] {
            font-size: 1.3rem;
            color: #003a70;
            margin-bottom: 15px;
            font-weight: 600;
        }

        [data-blog="tip-text"] {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }

        /* FAQ Section */
        [data-blog="faq-item"] {
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            background-color: #f8f9fa;
        }

        [data-blog="faq-question"] {
            padding: 20px;
            background-color: white;
            font-size: 1.2rem;
            color: #003a70;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e9ecef;
        }

        [data-blog="faq-answer"] {
            padding: 20px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
            display: none;
        }

        [data-blog="faq-item"].active [data-blog="faq-answer"] {
            display: block;
        }

        /* Call to Action */
        [data-blog="cta"] {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
            color: white;
            border-radius: 15px;
            margin-top: 50px;
        }

        [data-blog="cta-title"] {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        [data-blog="cta-button"] {
            display: inline-block;
            background-color: #20c997;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        [data-blog="cta-button"]:hover {
            background-color: #1ba87e;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            [data-blog="container"] {
                padding: 30px 15px;
            }

            [data-blog="title"] {
                font-size: 2.2rem;
            }

            [data-blog="featured-image"] {
                height: 300px;
            }

            [data-blog="intro"] {
                font-size: 1.2rem;
                padding: 20px;
            }

            [data-blog="section-title"] {
                font-size: 1.6rem;
            }

            [data-blog="table-header"] th {
                padding: 14px 10px;
                font-size: 1rem;
            }

            [data-blog="table-cell"] {
                padding: 12px 10px;
                font-size: 0.95rem;
            }

            [data-blog="tips-container"] {
                grid-template-columns: 1fr;
            }

            [data-blog="cta"] {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            [data-blog="title"] {
                font-size: 1.9rem;
            }

            [data-blog="meta"] {
                flex-direction: column;
                gap: 10px;
            }

            [data-blog="featured-image"] {
                height: 250px;
            }

            [data-blog="intro"] {
                font-size: 1.1rem;
                padding: 15px;
            }

            [data-blog="section-title"] {
                font-size: 1.4rem;
            }

            [data-blog="paragraph"] {
                font-size: 1rem;
            }

            [data-blog="note-box"] {
                padding: 20px;
            }

            [data-blog="table-header"] th {
                padding: 12px 8px;
                font-size: 0.9rem;
            }

            [data-blog="table-cell"] {
                padding: 10px 8px;
                font-size: 0.9rem;
            }

            [data-blog="check-item"] {
                padding-left: 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 400px) {
            [data-blog="container"] {
                padding: 25px 12px;
            }

            [data-blog="title"] {
                font-size: 1.7rem;
            }

            [data-blog="featured-image"] {
                height: 220px;
                border-radius: 10px;
            }

            [data-blog="intro"] {
                font-size: 1rem;
                padding: 15px;
            }

            [data-blog="section-title"] {
                font-size: 1.3rem;
            }

            [data-blog="paragraph"] {
                font-size: 0.95rem;
            }

            [data-blog="note-box"] {
                padding: 15px;
            }

            [data-blog="table-header"] th {
                padding: 10px 6px;
                font-size: 0.85rem;
            }

            [data-blog="table-cell"] {
                padding: 8px 6px;
                font-size: 0.85rem;
            }

            [data-blog="check-item"] {
                padding-left: 30px;
                font-size: 0.95rem;
            }

            [data-blog="tip-card"] {
                padding: 20px;
            }

            [data-blog="tip-title"] {
                font-size: 1.2rem;
            }

            [data-blog="cta"] {
                padding: 25px 15px;
            }

            [data-blog="cta-title"] {
                font-size: 1.5rem;
            }

            [data-blog="cta-button"] {
                padding: 12px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 350px) {
            [data-blog="container"] {
                padding: 20px 10px;
            }

            [data-blog="title"] {
                font-size: 1.5rem;
            }

            [data-blog="featured-image"] {
                height: 200px;
            }

            [data-blog="section-title"] {
                font-size: 1.2rem;
            }

            [data-blog="paragraph"] {
                font-size: 0.9rem;
            }

            [data-blog="table-header"] th {
                padding: 8px 5px;
                font-size: 0.8rem;
            }

            [data-blog="table-cell"] {
                padding: 7px 5px;
                font-size: 0.8rem;
            }

            [data-blog="check-item"] {
                padding-left: 28px;
                font-size: 0.9rem;
            }

            [data-blog="tip-card"] {
                padding: 15px;
            }

            [data-blog="tip-icon"] {
                font-size: 1.5rem;
            }

            [data-blog="tip-title"] {
                font-size: 1.1rem;
            }

            [data-blog="cta"] {
                padding: 20px 12px;
            }

            [data-blog="cta-title"] {
                font-size: 1.3rem;
            }

            [data-blog="cta-button"] {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }

        /* Back Pain Blog Container */
        [data-backguide="container"] {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        /* Header Section */
        [data-backguide="header"] {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #003a70;
        }

        [data-backguide="title"] {
            font-size: 2.2rem;
            color: #003a70;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.2;
        }

        [data-backguide="subtitle"] {
            font-size: 1.2rem;
            color: #20c997;
            max-width: 800px;
            margin: 0 auto 15px;
            font-weight: 500;
        }

        [data-backguide="meta"] {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: #666;
            font-size: 0.9rem;
            margin-top: 15px;
        }

        [data-backguide="meta-item"] {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Featured Image */
        [data-backguide="featured-image"] {
            width: 100%;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-backguide="featured-image"] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        [data-backguide="featured-image"]:hover img {
            transform: scale(1.02);
        }

        /* Content Layout */
        [data-backguide="content"] {
            max-width: 800px;
            margin: 0 auto;
        }

        [data-backguide="intro"] {
            font-size: 1rem;
            color: #444;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f0f8ff;
            border-radius: 8px;
            border-left: 4px solid #003a70;
        }

        /* Section Styles */
        [data-backguide="section"] {
            margin-bottom: 40px;
        }

        [data-backguide="section-title"] {
            font-size: 1.4rem;
            color: #003a70;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #20c997;
            font-weight: 600;
        }

        [data-backguide="paragraph"] {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #444;
            line-height: 1.6;
        }

        /* Warning Box */
        [data-backguide="warning-box"] {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        [data-backguide="warning-title"] {
            font-size: 1.1rem;
            color: #856404;
            margin-bottom: 10px;
            font-weight: 600;
        }

        [data-backguide="warning-text"] {
            font-size: 1rem;
            color: #856404;
            line-height: 1.5;
        }

        /* Emergency Alert */
        [data-backguide="emergency-box"] {
            background-color: #f8d7da;
            border-left: 4px solid #dc3545;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        [data-backguide="emergency-title"] {
            font-size: 1.1rem;
            color: #721c24;
            margin-bottom: 10px;
            font-weight: 700;
        }

        [data-backguide="emergency-text"] {
            font-size: 1rem;
            color: #721c24;
            line-height: 1.5;
        }

        /* Causes Grid */
        [data-backguide="causes-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-backguide="cause-item"] {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #003a70;
            transition: all 0.3s ease;
        }

        [data-backguide="cause-item"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-backguide="cause-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-backguide="cause-description"] {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }

        /* Remedies List */
        [data-backguide="remedies-list"] {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        [data-backguide="remedy-item"] {
            padding: 10px 0 10px 30px;
            position: relative;
            font-size: 1rem;
            color: #444;
            margin-bottom: 8px;
        }

        [data-backguide="remedy-item"]:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            width: 22px;
            height: 22px;
            background-color: #20c997;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Warning Signs */
        [data-backguide="warning-signs"] {
            margin: 25px 0;
        }

        [data-backguide="warning-sign"] {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            border-left: 3px solid #20c997;
            transition: background-color 0.3s ease;
        }

        [data-backguide="warning-sign"]:hover {
            background-color: rgba(32, 201, 151, 0.1);
        }

        [data-backguide="warning-sign-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-backguide="warning-sign-desc"] {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

        /* Benefits Grid */
        [data-backguide="benefits-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-backguide="benefit-item"] {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        [data-backguide="benefit-item"]:hover {
            transform: translateY(-3px);
        }

        [data-backguide="benefit-icon"] {
            font-size: 1.2rem;
            color: #20c997;
            margin-bottom: 10px;
            height: 40px;
            width: 40px;
            background-color: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        [data-backguide="benefit-text"] {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }

        /* Action Steps */
        [data-backguide="action-steps"] {
            margin: 30px 0;
        }

        [data-backguide="step"] {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }

        [data-backguide="step-number"] {
            width: 32px;
            height: 32px;
            background-color: #003a70;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        [data-backguide="step-content"] {
            flex: 1;
        }

        [data-backguide="step-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-backguide="step-desc"] {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

        /* CTA Section */
        [data-backguide="cta"] {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
            color: white;
            border-radius: 10px;
            margin-top: 40px;
        }

        [data-backguide="cta-title"] {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        [data-backguide="cta-button"] {
            display: inline-block;
            background-color: #20c997;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        [data-backguide="cta-button"]:hover {
            background-color: #1ba87e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            [data-backguide="container"] {
                padding: 30px 15px;
            }

            [data-backguide="title"] {
                font-size: 1.8rem;
            }

            [data-backguide="subtitle"] {
                font-size: 1.1rem;
            }

            [data-backguide="featured-image"] {
                height: 250px;
            }

            [data-backguide="intro"] {
                padding: 15px;
                font-size: 1rem;
            }

            [data-backguide="section-title"] {
                font-size: 1.3rem;
            }

            [data-backguide="causes-grid"],
            [data-backguide="benefits-grid"] {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 12px;
            }
        }

        @media (max-width: 576px) {
            [data-backguide="title"] {
                font-size: 1.6rem;
            }

            [data-backguide="meta"] {
                flex-direction: column;
                gap: 8px;
            }

            [data-backguide="featured-image"] {
                height: 200px;
            }

            [data-backguide="section-title"] {
                font-size: 1.2rem;
            }

            [data-backguide="warning-box"],
            [data-backguide="emergency-box"] {
                padding: 15px;
            }

            [data-backguide="cause-item"] {
                padding: 12px;
            }

            [data-backguide="step"] {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            [data-backguide="step-number"] {
                margin-bottom: 8px;
            }

            [data-backguide="cta"] {
                padding: 20px 15px;
            }
        }

        @media (max-width: 400px) {
            [data-backguide="container"] {
                padding: 20px 12px;
            }

            [data-backguide="title"] {
                font-size: 1.4rem;
            }

            [data-backguide="featured-image"] {
                height: 180px;
            }

            [data-backguide="causes-grid"],
            [data-backguide="benefits-grid"] {
                grid-template-columns: 1fr;
            }

            [data-backguide="remedy-item"] {
                padding-left: 28px;
            }

            [data-backguide="warning-sign"] {
                padding: 12px;
            }

            [data-backguide="benefit-item"] {
                padding: 12px;
            }
        }

        @media (max-width: 350px) {
            [data-backguide="container"] {
                padding: 15px 10px;
            }

            [data-backguide="title"] {
                font-size: 1.3rem;
            }

            [data-backguide="subtitle"] {
                font-size: 1rem;
            }

            [data-backguide="featured-image"] {
                height: 160px;
            }

            [data-backguide="intro"] {
                padding: 12px;
                font-size: 0.95rem;
            }

            [data-backguide="section-title"] {
                font-size: 1.1rem;
            }

            [data-backguide="paragraph"] {
                font-size: 0.95rem;
            }

            [data-backguide="warning-box"],
            [data-backguide="emergency-box"] {
                padding: 12px;
            }

            [data-backguide="cause-item"] {
                padding: 10px;
            }

            [data-backguide="remedy-item"] {
                padding-left: 25px;
                font-size: 0.9rem;
            }

            [data-backguide="step"] {
                padding: 12px;
            }

            [data-backguide="cta"] {
                padding: 15px 10px;
            }

            [data-backguide="cta-title"] {
                font-size: 1.2rem;
            }

            [data-backguide="cta-button"] {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* ================ SDMH FREE CAMP  ================ */
[data-sdmh-camp-2025="section"] {
  padding: 80px 20px 100px;
  padding-top: 0px;
  background: linear-gradient(135deg, #f8fffd 0%, #ffffff 100%);
  overflow: hidden;
  /*margin-top: 0px;*/
  margin-top: 5rem;
}
[data-sdmh-camp-2025="container"] {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  /*border-top: 1px solid red;*/

}
[data-sdmh-camp-2025="content"] {
  flex: 1;
  min-width: 320px;
}
[data-sdmh-camp-2025="title"] {
  font-size: 2rem;
  font-weight: 700;
  color: #003a70;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
[data-sdmh-camp-2025="hindi"] {
  font-size: 1.5rem;
  color: #d32f2f;
  font-weight: 700;
  margin: 0 0 20px 0;
}
[data-sdmh-camp-2025="tagline"] {
  font-size: 1.3rem;
  color: #003a70;
  font-style: italic;
  margin: 25px 0;
  line-height: 1.5;
}
[data-sdmh-camp-2025="services-title"] {
  font-size: 1.2rem;
  color: #d32f2f;
  margin: 35px 0 20px 0;
  font-weight: 600;
}
[data-sdmh-camp-2025="services-list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}
[data-sdmh-camp-2025="services-list"] li {
  font-size: 1rem;
  color: #333;
  margin: 16px 0;
  padding-left: 8px;
  font-weight: 500;
}
[data-sdmh-camp-2025="arrow"] {
  color: #d32f2f;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.6rem;
}
[data-sdmh-camp-2025="contact"] {
  margin: 40px 0;
  font-size: 1rem;
  line-height: 1.8;
}
[data-sdmh-camp-2025="contact"] strong {color: #003a70;}
[data-sdmh-camp-2025="contact"] a {
  color: #20c997;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
[data-sdmh-camp-2025="cta"] {
  display: inline-block;
  background: #20c997;
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 25px;
  box-shadow: 0 10px 25px rgba(32,201,151,0.35);
  transition: all 0.3s;
}
[data-sdmh-camp-2025="cta"]:hover {
  background: #003a70;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,58,112,0.3);
}
[data-sdmh-camp-2025="image"] {
  flex: 1;
  min-width: 320px;
  text-align: center;
}
[data-sdmh-camp-2025="img"] {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.3s;
}
[data-sdmh-camp-2025="img"]:hover {transform: scale(1.02);}

/* Fully Responsive – Perfect down to 350px */
@media (max-width: 768px) {
  [data-sdmh-camp-2025="container"] {flex-direction: column; text-align: center;}
  [data-sdmh-camp-2025="content"] {order: 2;}
  [data-sdmh-camp-2025="image"] {order: 1; margin-bottom: 30px;}
  [data-sdmh-camp-2025="title"] {font-size: 2.1rem;}
  [data-sdmh-camp-2025="hindi"] {font-size: 1.8rem;}
}
@media (max-width: 480px) {
  [data-sdmh-camp-2025="section"] {padding: 60px 15px;}
  [data-sdmh-camp-2025="title"] {font-size: 1.9rem;}
  [data-sdmh-camp-2025="hindi"] {font-size: 1.7rem;}
  [data-sdmh-camp-2025="cta"] {padding: 16px 30px; font-size: 1.1rem; width: 100%;}
}
@media (max-width: 350px) {
  [data-sdmh-camp-2025="title"] {font-size: 1.75rem;}
  [data-sdmh-camp-2025="hindi"] {font-size: 1.55rem;}
}

/*catalogue*/

/* Main container */
    #brochure-container {
      max-width: 900px;
      margin: 40px auto;
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* Heading */
    .brochure-heading {
      text-align: center;
      color: #003a70;
      font-size: 2.2rem;
      margin-bottom: 30px;
    }

    /* UL */
    ul[data-list="brochure-list"] {
      list-style: none;
      padding: 0;
    }

    /* LI */
    li[data-item] {
      padding: 18px 0;
      border-bottom: 1px solid #eee;
      font-size: 1.2rem;
    }

    li[data-item]:last-child { border-bottom: none; }

    /* Anchor */
    a[data-download="pdf"] {
      color: #20c997;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3rem;
    }

    a[data-download="pdf"]:hover {
      color: #003a70;
      text-decoration: underline;
    }

    @media (max-width: 480px) {
      #brochure-container { padding: 25px; }
      .brochure-heading { font-size: 1.8rem; }
      li[data-item] { font-size: 1.1rem; }
      a[data-download="pdf"] { font-size: 1.2rem; }
    }



    /*Gallery*/

        /* Heading */
    #gallery-heading {
      text-align: center;
      padding: 40px 20px;
      color: #003a70;
      font-size: 2.2rem;
    }

    /* Gallery Grid */
    .gallery-container[data-type="grid"] {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 20px;
      max-width: 1300px;
      margin: 0 auto 60px;
    }

    /* Images */
    .gallery-img[data-img] {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      cursor: zoom-in;
      transition: transform 0.3s ease;
    }

    .gallery-img[data-img]:hover {
      transform: scale(1.05);
    }

    /* Lightbox Background */
    #lightbox[data-lightbox="container"] {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.92);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
      cursor: zoom-out;
    }

    /* Lightbox Image */
    #lightbox-img[data-lightbox="image"] {
      max-width: 95%;
      max-height: 95vh;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }

    /* Active State */
    #lightbox.active {
      display: flex;
    }

    /* Close Button */
    #close-lightbox-btn[data-btn="close"] {
      position: absolute;
      top: 25px;
      right: 30px;
      font-size: 40px;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 480px) {
      #gallery-heading { font-size: 1.8rem; padding: 30px 15px; }
      .gallery-img[data-img] { height: 220px; }
      #close-lightbox-btn[data-btn="close"] { top: 15px; right: 20px; font-size: 35px; }
    }

 /*///////////////////////////////////////////////////////////////////////*/

    /* Heart Health Blog Container */
        [data-heart="container"] {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        /* Header Section */
        [data-heart="header"] {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #003a70;
        }

        [data-heart="title"] {
            font-size: 2.2rem;
            color: #003a70;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.2;
        }

        [data-heart="subtitle"] {
            font-size: 1.2rem;
            color: #dc3545;
            max-width: 800px;
            margin: 0 auto 15px;
            font-weight: 500;
        }

        [data-heart="meta"] {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: #666;
            font-size: 0.9rem;
            margin-top: 15px;
        }

        [data-heart="meta-item"] {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Featured Image */
        [data-heart="featured-image"] {
            width: 100%;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-heart="featured-image"] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        [data-heart="featured-image"]:hover img {
            transform: scale(1.02);
        }

        /* Content Layout */
        [data-heart="content"] {
            max-width: 800px;
            margin: 0 auto;
        }

        [data-heart="intro"] {
            font-size: 1rem;
            color: #444;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #fff0f0;
            border-radius: 8px;
            border-left: 4px solid #dc3545;
        }

        /* Section Styles */
        [data-heart="section"] {
            margin-bottom: 40px;
        }

        [data-heart="section-title"] {
            font-size: 1.4rem;
            color: #003a70;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #dc3545;
            font-weight: 600;
        }

        [data-heart="paragraph"] {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #444;
            line-height: 1.6;
        }

        /* Important Box */
        [data-heart="important-box"] {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        [data-heart="important-title"] {
            font-size: 1.1rem;
            color: #856404;
            margin-bottom: 10px;
            font-weight: 600;
        }

        [data-heart="important-text"] {
            font-size: 1rem;
            color: #856404;
            line-height: 1.5;
        }

        /* Emergency Alert */
        [data-heart="emergency-box"] {
            background-color: #f8d7da;
            border-left: 4px solid #dc3545;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        [data-heart="emergency-title"] {
            font-size: 1.1rem;
            color: #721c24;
            margin-bottom: 10px;
            font-weight: 700;
        }

        [data-heart="emergency-text"] {
            font-size: 1rem;
            color: #721c24;
            line-height: 1.5;
        }

        /* Risk Factors Grid */
        [data-heart="risks-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-heart="risk-item"] {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #dc3545;
            transition: all 0.3s ease;
        }

        [data-heart="risk-item"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-heart="risk-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-heart="risk-description"] {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }

        /* Warning Signs */
        [data-heart="warning-signs"] {
            margin: 25px 0;
        }

        [data-heart="warning-item"] {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            border-left: 3px solid #dc3545;
            transition: background-color 0.3s ease;
        }

        [data-heart="warning-item"]:hover {
            background-color: rgba(220, 53, 69, 0.05);
        }

        [data-heart="warning-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-heart="warning-desc"] {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

        /* Prevention List */
        [data-heart="prevention-list"] {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        [data-heart="prevention-item"] {
            padding: 10px 0 10px 30px;
            position: relative;
            font-size: 1rem;
            color: #444;
            margin-bottom: 8px;
        }

        [data-heart="prevention-item"]:before {
            content: "❤";
            position: absolute;
            left: 0;
            top: 10px;
            width: 22px;
            height: 22px;
            background-color: #dc3545;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Healthy Foods Grid */
        [data-heart="foods-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-heart="food-item"] {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        [data-heart="food-item"]:hover {
            transform: translateY(-3px);
        }

        [data-heart="food-icon"] {
            font-size: 1.2rem;
            color: #28a745;
            margin-bottom: 10px;
            height: 40px;
            width: 40px;
            background-color: rgba(40, 167, 69, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        [data-heart="food-text"] {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }

        /* Benefits Grid */
        [data-heart="benefits-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-heart="benefit-item"] {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        [data-heart="benefit-item"]:hover {
            transform: translateY(-3px);
        }

        [data-heart="benefit-icon"] {
            font-size: 1.2rem;
            color: #dc3545;
            margin-bottom: 10px;
            height: 40px;
            width: 40px;
            background-color: rgba(220, 53, 69, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        [data-heart="benefit-text"] {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }

        /* Monitoring Grid */
        [data-heart="monitoring-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-heart="monitor-item"] {
            background-color: #f0f8ff;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #003a70;
            transition: all 0.3s ease;
        }

        [data-heart="monitor-item"]:hover {
            background-color: rgba(0, 58, 112, 0.05);
        }

        [data-heart="monitor-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-heart="monitor-desc"] {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }

        /* CTA Section */
        [data-heart="cta"] {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
            color: white;
            border-radius: 10px;
            margin-top: 40px;
        }

        [data-heart="cta-title"] {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        [data-heart="cta-button"] {
            display: inline-block;
            background-color: #dc3545;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        [data-heart="cta-button"]:hover {
            background-color: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            [data-heart="container"] {
                padding: 30px 15px;
            }

            [data-heart="title"] {
                font-size: 1.8rem;
            }

            [data-heart="subtitle"] {
                font-size: 1.1rem;
            }

            [data-heart="featured-image"] {
                height: 250px;
            }

            [data-heart="intro"] {
                padding: 15px;
                font-size: 1rem;
            }

            [data-heart="section-title"] {
                font-size: 1.3rem;
            }

            [data-heart="risks-grid"],
            [data-heart="foods-grid"],
            [data-heart="benefits-grid"],
            [data-heart="monitoring-grid"] {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 12px;
            }
        }

        @media (max-width: 576px) {
            [data-heart="title"] {
                font-size: 1.6rem;
            }

            [data-heart="meta"] {
                flex-direction: column;
                gap: 8px;
            }

            [data-heart="featured-image"] {
                height: 200px;
            }

            [data-heart="section-title"] {
                font-size: 1.2rem;
            }

            [data-heart="important-box"],
            [data-heart="emergency-box"] {
                padding: 15px;
            }

            [data-heart="risk-item"] {
                padding: 12px;
            }

            [data-heart="cta"] {
                padding: 20px 15px;
            }
        }

        @media (max-width: 400px) {
            [data-heart="container"] {
                padding: 20px 12px;
            }

            [data-heart="title"] {
                font-size: 1.4rem;
            }

            [data-heart="featured-image"] {
                height: 180px;
            }

            [data-heart="risks-grid"],
            [data-heart="foods-grid"],
            [data-heart="benefits-grid"],
            [data-heart="monitoring-grid"] {
                grid-template-columns: 1fr;
            }

            [data-heart="prevention-item"] {
                padding-left: 28px;
            }

            [data-heart="warning-item"] {
                padding: 12px;
            }
        }

        @media (max-width: 350px) {
            [data-heart="container"] {
                padding: 15px 10px;
            }

            [data-heart="title"] {
                font-size: 1.3rem;
            }

            [data-heart="subtitle"] {
                font-size: 1rem;
            }

            [data-heart="featured-image"] {
                height: 160px;
            }

            [data-heart="intro"] {
                padding: 12px;
                font-size: 0.95rem;
            }

            [data-heart="section-title"] {
                font-size: 1.1rem;
            }

            [data-heart="paragraph"] {
                font-size: 0.95rem;
            }

            [data-heart="important-box"],
            [data-heart="emergency-box"] {
                padding: 12px;
            }

            [data-heart="risk-item"] {
                padding: 10px;
            }

            [data-heart="prevention-item"] {
                padding-left: 25px;
                font-size: 0.9rem;
            }

            [data-heart="food-item"],
            [data-heart="benefit-item"],
            [data-heart="monitor-item"] {
                padding: 12px;
            }

            [data-heart="cta"] {
                padding: 15px 10px;
            }

            [data-heart="cta-title"] {
                font-size: 1.2rem;
            }

            [data-heart="cta-button"] {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }



/* Diabetes Blog Container */
        [data-diabetes="container"] {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        /* Header Section */
        [data-diabetes="header"] {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #003a70;
        }

        [data-diabetes="title"] {
            font-size: 2.2rem;
            color: #003a70;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.2;
        }

        [data-diabetes="subtitle"] {
            font-size: 1.2rem;
            color: #20c997;
            max-width: 800px;
            margin: 0 auto 15px;
            font-weight: 500;
        }

        [data-diabetes="meta"] {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: #666;
            font-size: 0.9rem;
            margin-top: 15px;
        }

        [data-diabetes="meta-item"] {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Featured Image */
        [data-diabetes="featured-image"] {
            width: 100%;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-diabetes="featured-image"] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        [data-diabetes="featured-image"]:hover img {
            transform: scale(1.02);
        }

        /* Content Layout */
        [data-diabetes="content"] {
            max-width: 800px;
            margin: 0 auto;
        }

        [data-diabetes="intro"] {
            font-size: 1rem;
            color: #444;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f0f8ff;
            border-radius: 8px;
            border-left: 4px solid #20c997;
        }

        /* Section Styles */
        [data-diabetes="section"] {
            margin-bottom: 40px;
        }

        [data-diabetes="section-title"] {
            font-size: 1.4rem;
            color: #003a70;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #20c997;
            font-weight: 600;
        }

        [data-diabetes="paragraph"] {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #444;
            line-height: 1.6;
        }

        /* Important Box */
        [data-diabetes="important-box"] {
            background-color: #e7f5ff;
            border-left: 4px solid #4dabf7;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        [data-diabetes="important-title"] {
            font-size: 1.1rem;
            color: #003a70;
            margin-bottom: 10px;
            font-weight: 600;
        }

        [data-diabetes="important-text"] {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
        }

        /* Warning Box */
        [data-diabetes="warning-box"] {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }

        [data-diabetes="warning-title"] {
            font-size: 1.1rem;
            color: #856404;
            margin-bottom: 10px;
            font-weight: 600;
        }

        [data-diabetes="warning-text"] {
            font-size: 1rem;
            color: #856404;
            line-height: 1.5;
        }

        /* Diabetes Types */
        [data-diabetes="types-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-diabetes="type-item"] {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #003a70;
            transition: all 0.3s ease;
        }

        [data-diabetes="type-item"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-diabetes="type-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-diabetes="type-description"] {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }

        /* Food Categories */
        [data-diabetes="foods-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-diabetes="food-item"] {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        [data-diabetes="food-item"]:hover {
            transform: translateY(-3px);
            border-color: #20c997;
        }

        [data-diabetes="food-icon"] {
            font-size: 1.2rem;
            color: #20c997;
            margin-bottom: 10px;
            height: 40px;
            width: 40px;
            background-color: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        [data-diabetes="food-text"] {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }

        /* Plate Method */
        [data-diabetes="plate-method"] {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        [data-diabetes="plate-item"] {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        [data-diabetes="plate-item"]:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }

        [data-diabetes="plate-item"]:nth-child(1):before {
            background-color: #28a745;
        }

        [data-diabetes="plate-item"]:nth-child(2):before {
            background-color: #17a2b8;
        }

        [data-diabetes="plate-item"]:nth-child(3):before {
            background-color: #ffc107;
        }

        [data-diabetes="plate-text"] {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
        }

        /* Exercise Grid */
        [data-diabetes="exercise-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-diabetes="exercise-item"] {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        [data-diabetes="exercise-item"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-diabetes="exercise-icon"] {
            font-size: 1.2rem;
            color: #17a2b8;
            margin-bottom: 10px;
        }

        [data-diabetes="exercise-text"] {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }

        /* Medication Grid */
        [data-diabetes="medication-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-diabetes="medication-item"] {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #6f42c1;
            transition: all 0.3s ease;
        }

        [data-diabetes="medication-item"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        [data-diabetes="medication-title"] {
            font-size: 1rem;
            color: #003a70;
            margin-bottom: 8px;
            font-weight: 600;
        }

        [data-diabetes="medication-desc"] {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }

        /* Monitoring List */
        [data-diabetes="monitoring-list"] {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        [data-diabetes="monitoring-item"] {
            padding: 10px 0 10px 30px;
            position: relative;
            font-size: 1rem;
            color: #444;
            margin-bottom: 8px;
        }

        [data-diabetes="monitoring-item"]:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            width: 22px;
            height: 22px;
            background-color: #20c997;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Prevention Grid */
        [data-diabetes="prevention-grid"] {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        [data-diabetes="prevention-item"] {
            text-align: center;
            padding: 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #28a745;
            transition: transform 0.3s ease;
        }

        [data-diabetes="prevention-item"]:hover {
            transform: translateY(-3px);
        }

        [data-diabetes="prevention-icon"] {
            font-size: 1.2rem;
            color: #28a745;
            margin-bottom: 10px;
        }

        [data-diabetes="prevention-text"] {
            font-size: 0.9rem;
            color: #444;
            font-weight: 500;
        }

        /* CTA Section */
        [data-diabetes="cta"] {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #003a70 0%, #00264d 100%);
            color: white;
            border-radius: 10px;
            margin-top: 40px;
        }

        [data-diabetes="cta-title"] {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        [data-diabetes="cta-button"] {
            display: inline-block;
            background-color: #20c997;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        [data-diabetes="cta-button"]:hover {
            background-color: #1ba87e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            [data-diabetes="container"] {
                padding: 30px 15px;
            }

            [data-diabetes="title"] {
                font-size: 1.8rem;
            }

            [data-diabetes="subtitle"] {
                font-size: 1.1rem;
            }

            [data-diabetes="featured-image"] {
                height: 250px;
            }

            [data-diabetes="intro"] {
                padding: 15px;
                font-size: 1rem;
            }

            [data-diabetes="section-title"] {
                font-size: 1.3rem;
            }

            [data-diabetes="types-grid"],
            [data-diabetes="foods-grid"],
            [data-diabetes="exercise-grid"],
            [data-diabetes="medication-grid"],
            [data-diabetes="prevention-grid"] {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 12px;
            }
        }

        @media (max-width: 576px) {
            [data-diabetes="title"] {
                font-size: 1.6rem;
            }

            [data-diabetes="meta"] {
                flex-direction: column;
                gap: 8px;
            }

            [data-diabetes="featured-image"] {
                height: 200px;
            }

            [data-diabetes="section-title"] {
                font-size: 1.2rem;
            }

            [data-diabetes="important-box"],
            [data-diabetes="warning-box"] {
                padding: 15px;
            }

            [data-diabetes="type-item"],
            [data-diabetes="medication-item"] {
                padding: 12px;
            }

            [data-diabetes="cta"] {
                padding: 20px 15px;
            }
        }

        @media (max-width: 400px) {
            [data-diabetes="container"] {
                padding: 20px 12px;
            }

            [data-diabetes="title"] {
                font-size: 1.4rem;
            }

            [data-diabetes="featured-image"] {
                height: 180px;
            }

            [data-diabetes="types-grid"],
            [data-diabetes="foods-grid"],
            [data-diabetes="exercise-grid"],
            [data-diabetes="medication-grid"],
            [data-diabetes="prevention-grid"] {
                grid-template-columns: 1fr;
            }

            [data-diabetes="monitoring-item"] {
                padding-left: 28px;
            }

            [data-diabetes="plate-item"] {
                padding-left: 25px;
            }
        }

        @media (max-width: 350px) {
            [data-diabetes="container"] {
                padding: 15px 10px;
            }

            [data-diabetes="title"] {
                font-size: 1.3rem;
            }

            [data-diabetes="subtitle"] {
                font-size: 1rem;
            }

            [data-diabetes="featured-image"] {
                height: 160px;
            }

            [data-diabetes="intro"] {
                padding: 12px;
                font-size: 0.95rem;
            }

            [data-diabetes="section-title"] {
                font-size: 1.1rem;
            }

            [data-diabetes="paragraph"] {
                font-size: 0.95rem;
            }

            [data-diabetes="important-box"],
            [data-diabetes="warning-box"] {
                padding: 12px;
            }

            [data-diabetes="type-item"],
            [data-diabetes="medication-item"] {
                padding: 10px;
            }

            [data-diabetes="monitoring-item"] {
                padding-left: 25px;
                font-size: 0.9rem;
            }

            [data-diabetes="food-item"],
            [data-diabetes="exercise-item"],
            [data-diabetes="prevention-item"] {
                padding: 12px;
            }

            [data-diabetes="cta"] {
                padding: 15px 10px;
            }

            [data-diabetes="cta-title"] {
                font-size: 1.2rem;
            }

            [data-diabetes="cta-button"] {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }