
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            background-color: #FFFFFF;
            color: #111;
            line-height: 1.6;
            padding: 0;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        /* Breaking News Ticker */
        .breaking-ticker {
            background: linear-gradient(90deg, #D32F2F, #F44336);
            color: white;
            padding: 8px 0;
            font-size: 14px;
            font-weight: 600;
            overflow: hidden;
            position: relative;
        }
        
        .ticker-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: ticker 20s linear infinite;
        }
        
        .ticker-label {
            background: #B71C1C;
            padding: 2px 10px;
            border-radius: 4px;
            margin-right: 15px;
            font-weight: 700;
        }
        
        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        /* Top Navigation Bar */
        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 2px solid #E0E0E0;
            position: relative;
        }
        
        .logo {
            font-family: 'Merriweather', serif;
            font-weight: 900;
            font-size: 18px;
            color: #2E7D32;
            display: flex;
            align-items: center;
        }
        
        .logo::before {
            content: "•";
            color: #D32F2F;
            font-size: 24px;
            margin-right: 8px;
        }
        
        .nav-links {
            display: flex;
            gap: 16px;
        }
        
        .nav-link {
            font-size: 14px;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #D32F2F;
        }
        
        /* Date and Time */
        .date-time {
            text-align: center;
            padding: 8px 0;
            font-size: 14px;
            color: #666;
            border-bottom: 1px dashed #E0E0E0;
        }
        
        /* Main Content */
        .main-content {
            padding: 24px 0;
        }
        
        /* Headline Section */
        .headline-section {
            margin-bottom: 20px;
        }
        
        .category-tag {
            display: inline-block;
            background-color: #2E7D32;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
        }
        
        .headline {
            font-family: 'Merriweather', serif;
            font-size: 28px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 16px;
            color: #111;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .subheadline {
            font-size: 18px;
            color: #444;
            line-height: 1.5;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        /* Doctor Info Section */
        .doctor-info {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
            padding: 16px;
            background: #f9f9f9;
            border-radius: 8px;
            border-left: 4px solid #2E7D32;
        }
        
       /* CSS - square doctor photo */
.doctor-photo {
  position: relative;
width: 350px;
    height: 324px;
  display: inline-block;
  background-color: #f3f4f6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Image fills the square */
.doctor-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.doctor-photo:hover .doctor-photo-img {
  transform: scale(1.03);
}

/* Placeholder when no image */
.doctor-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #3b82f6); /* blue gradient */
  font-family: "Noto Sans Devanagari", "Mukta", Arial, sans-serif;
}
        
        .doctor-details {
            flex: 1;
        }
        
        .doctor-name {
            font-size: 18px;
            font-weight: 700;
            color: #2E7D32;
            margin-bottom: 4px;
        }
        
        .doctor-credentials {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }
        
        .doctor-bio {
            font-size: 17px;
            color: #555;
            line-height: 1.4;
        }
        
        /* Article Meta */
        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #777;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .author, .publish-date {
            display: flex;
            align-items: center;
        }
        
        .author::before {
            content: "✍️";
            margin-right: 6px;
        }
        
        .publish-date::before {
            content: "📅";
            margin-right: 6px;
        }
        
        /* Section Divider */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #E0E0E0, transparent);
            margin: 24px 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .headline {
                font-size: 24px;
            }
            
            .subheadline {
                font-size: 16px;
            }
            
            .doctor-info {
                flex-direction: column;
                text-align: center;
            }
            
            .doctor-photo {
                align-self: center;
            }
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
            
            .headline {
                font-size: 32px;
            }
        }
        
        /* News-style embellishments */
        .red-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #D32F2F;
            border-radius: 50%;
            margin: 0 8px;
        }
        
        /* Interview Section */
        .interview-section {
            padding: 28px 0;
            background-color: #FFFFFF;
            position: relative;
        }
        
        .section-headline {
            font-family: 'Merriweather', serif;
            font-size: 26px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 12px;
            border-bottom: 2px solid #E0E0E0;
        }
        
        .qa-block {
            margin-bottom: 20px;
        }
        
        .question {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
            color: #2E7D32;
            line-height: 1.4;
            margin-bottom: 16px;
            padding-left: 20px;
            position: relative;
        }
        
        .q-label {
            background-color: #2E7D32;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
            margin-right: 8px;
        }
        
        .answer {
            position: relative;
            padding-left: 60px;
        }
        
        .answer-content {
            display: flex;
            align-items: flex-start;
        }
        
        .quote-icon {
            font-family: 'Merriweather', serif;
            font-size: 48px;
            color: #2E7D32;
            line-height: 0.8;
            margin-right: 12px;
            margin-top: -8px;
        }
        
        .answer-text {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #111;
            line-height: 1.6;
            flex: 1;
        }
        
        .answer-text p {
            margin-bottom: 12px;
        }
        
        .highlight {
            color: #FF9800;
            font-weight: 600;
        }
        
        .qa-divider {
            height: 1px;
            background-color: #E0E0E0;
            margin: 24px 0;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .closing-quote {
            background-color: #f9f9f9;
            padding: 24px;
            border-radius: 8px;
            margin-top: 32px;
            text-align: center;
            position: relative;
            border-left: 4px solid #2E7D32;
        }
        
        .quote-mark {
            font-family: 'Merriweather', serif;
            font-size: 60px;
            color: #2E7D32;
            line-height: 0.5;
            margin-bottom: 16px;
        }
        
        .closing-quote p {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-style: italic;
            color: #444;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .doctor-info-small {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .doctor-photo-small {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2E7D32, #4CAF50);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }
        
        .doctor-details-small {
            text-align: left;
        }
        
        .doctor-name {
            font-family: 'Merriweather', serif;
            font-size: 16px;
            font-weight: 700;
            color: #2E7D32;
        }
        
        .doctor-credentials {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #666;
        }
        
        /* Scientific Section */
        .scientific-section {
            padding: 24px 0;
            background-color: #FDF8F2;
            border-top: 1px solid #E0E0E0;
            border-bottom: 1px solid #E0E0E0;
            margin: 20px 0;
        }
        
        .science-headline {
            font-family: 'Merriweather', serif;
            font-size: 24px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        
        .science-subheadline {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 18px;
            color: #111;
            text-align: center;
            margin-bottom: 32px;
            line-height: 1.5;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Diagram Section */
        .diagram-section {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .diagram-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .diagram-title h3 {
            font-family: 'Merriweather', serif;
            font-size: 20px;
            color: #2E7D32;
            margin: 0;
        }
        
        .microscope-icon {
            font-size: 24px;
        }
        
        .diagram-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        @media (min-width: 768px) {
            .diagram-container {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        .diagram-box {
            flex: 1;
            text-align: center;
        }
        
        .diagram-visual {
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            margin-bottom: 16px;
            position: relative;
        }
        
        .skin-layer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .cell {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .cell.inactive {
            background-color: #E0E0E0;
            color: #999;
            border: 2px dashed #999;
        }
        
        .cell.active {
            background-color: #4CAF50;
            color: white;
            border: 2px solid #2E7D32;
            animation: pulse 2s infinite;
        }
        
        .skin-surface {
            height: 30px;
            border-radius: 8px;
        }
        
        .white-spot {
            background: linear-gradient(90deg, #F5F5F5 30%, #E0E0E0 70%);
            border: 1px solid #E0E0E0;
        }
        
        .normal-skin {
            background: linear-gradient(90deg, #FFD54F 30%, #FFB74D 70%);
            border: 1px solid #FF9800;
        }
        
        .diagram-caption {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #444;
        }
        
        .arrow-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }
        
        .arrow {
            font-size: 32px;
            color: #2E7D32;
            margin-bottom: 8px;
        }
        
        .treatment-label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }
        
        /* Evidence Points */
        .evidence-points {
            margin-bottom: 32px;
        }
        
        .evidence-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
            padding: 16px;
            background: white;
            border-radius: 8px;
            border-left: 4px solid #2E7D32;
        }
        
        .evidence-icon {
            font-size: 24px;
            flex-shrink: 0;
            margin-top: 4px;
        }
        
        .evidence-text {
            flex: 1;
        }
        
        .evidence-text strong {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 17px;
            color: #2E7D32;
            display: block;
            margin-bottom: 8px;
        }
        
        .evidence-text p {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            color: #444;
            line-height: 1.5;
            margin: 0;
        }
        
        /* Clinical Proof */
        .clinical-proof {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            text-align: center;
        }
        
        .proof-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .proof-header h3 {
            font-family: 'Merriweather', serif;
            font-size: 20px;
            color: #2E7D32;
            margin: 0;
        }
        
        .lab-icon {
            font-size: 24px;
        }
        
        .proof-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Merriweather', serif;
            font-size: 32px;
            font-weight: 700;
            color: #FF9800;
            line-height: 1;
        }
        
        .stat-label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #666;
            margin-top: 4px;
        }
        
        .research-note {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 15px;
            color: #888;
            font-style: italic;
        }
        
        /* Closing Line */
        .closing-line {
            text-align: center;
            padding: 16px 0;
        }
        
        .closing-line p {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
            color: #111;
            margin: 0;
        }
        
        .highlight-bold {
            color: #FF9800;
        }
        
        /* Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* How It Works Section */
        .how-it-works-section {
            padding: 32px 0;
            background-color: #F1F8F4;
            position: relative;
        }
        
        .steps-headline {
            font-family: 'Merriweather', serif;
            font-size: 26px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .steps-subheadline {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 18px;
            color: #444;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.5;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Steps Container */
        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 40px;
        }
        
        @media (min-width: 768px) {
            .steps-container {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .step-card {
                flex: 1;
                max-width: 350px;
            }
        }
        
        .step-card {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF9800, #2E7D32);
        }
        
        .step-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .step-number {
            width: 36px;
            height: 36px;
            background-color: #FF9800;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-icon {
            font-size: 28px;
            flex-shrink: 0;
        }
        
        .step-title {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
            color: #2E7D32;
            margin: 0;
            line-height: 1.3;
        }
        
        .step-content {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
        }
        
        .step-content p {
            font-size: 15px;
            color: #444;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .step-details {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .detail-tag {
            background-color: #F1F8F4;
            color: #2E7D32;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid #E8F5E8;
        }
        
        /* Timeline */
        .timeline {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 32px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        }
        
        .timeline-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid #F0F0F0;
        }
        
        .timeline-item:last-child {
            border-bottom: none;
        }
        
        .timeline-marker {
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .timeline-content {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 17px;
            color: #444;
        }
        
        .timeline-content strong {
            color: #2E7D32;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            background: white;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            max-width: 500px;
            margin: 0 auto;
        }
        
        .cta-text p {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: #2E7D32;
            margin-bottom: 8px;
        }
        
        .cta-subtext {
            font-size: 14px !important;
            color: #666 !important;
            font-weight: 400 !important;
            margin-bottom: 20px !important;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: white;
            border: none;
            padding: 16px 32px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
            margin-bottom: 16px;
            width: 100%;
            max-width: 280px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
        }
        
        .guarantee-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 13px;
            color: #666;
            padding: 8px 0;
        }
        
        .guarantee-icon {
            font-size: 16px;
        }
        
        /* Ingredients Section */
        .ingredients-section {
            padding: 30px 0;
            background-color: #FFFFFF;
            position: relative;
        }
        
        .ingredients-headline {
            font-family: 'Merriweather', serif;
            font-size: 24px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 8px;
            line-height: 1.3;
            padding: 0 10px;
        }
        
        .ingredients-subheadline {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.4;
            padding: 0 15px;
        }
        
        /* Mobile Optimized Grid */
        .ingredients-grid-mobile {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .mobile-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            width: 100%;
        }
        
        .ingredient-card-mobile {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #f5f5f5;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .ingredient-card-mobile:active {
            transform: scale(0.98);
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
        }
        
        .ingredient-image-mobile {
            height: 100px;
            background: linear-gradient(135deg, #2E7D32, #4CAF50);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .image-placeholder-mobile {
            color: white;
            font-family: 'Merriweather', serif;
            font-size: 20px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .ingredient-content-mobile {
            padding: 15px 12px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .ingredient-name-mobile {
            font-family: 'Merriweather', serif;
            font-size: 16px;
            font-weight: 700;
            color: #2E7D32;
            margin-bottom: 6px;
            line-height: 1.2;
        }
        
        .ingredient-benefit-mobile {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #444;
            line-height: 1.4;
            margin-bottom: 12px;
            flex-grow: 1;
        }
        
        .ingredient-tags-mobile {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .tag-mobile {
            background: #FFF8E1;
            color: #FF9800;
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            border: 1px solid #FFECB3;
        }
        
        /* Results Section */
        .results-section {
            padding: 30px 0;
            background-color: #FDF8F2;
            position: relative;
        }
        
        .results-headline {
            font-family: 'Merriweather', serif;
            font-size: 26px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .results-subheadline {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.4;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Results Slider */
        .results-slider {
            position: relative;
            margin-bottom: 20px;
        }
        
        .result-case {
            display: none;
        }
        
        .result-case.active {
            display: block;
        }
        
        .case-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .case-badge {
            background: #2E7D32;
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
        }
        
        .case-duration {
            background: #FF9800;
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Before-After Slider */
        .before-after-slider {
            background: white;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }
        
        .slider-container {
            position: relative;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            cursor: grab;
            touch-action: pan-y;
        }
        
        .slider-container:active {
            cursor: grabbing;
        }
        
        .before-image, .after-image {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .before-image {
            left: 0;
            background: linear-gradient(135deg, #E0E0E0, #BDBDBD);
            width: 50%;
            z-index: 2;
        }
        
        .after-image {
            right: 0;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            width: 50%;
            z-index: 1;
        }
        
        .image-placeholder {
            color: #333;
            font-family: 'Merriweather', serif;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .image-placeholder.result {
            color: white;
        }
        
        .image-label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #666;
            text-align: center;
            max-width: 90%;
            line-height: 1.3;
        }
        
        .after-image .image-label {
            color: white;
        }
        
        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            width: 4px;
            background: #FF9800;
            z-index: 3;
            transform: translateX(-50%);
            cursor: ew-resize;
        }
        
        .handle-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #FF9800;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        /* Patient Story */
        .patient-story {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #2E7D32;
        }
        
        .patient-story p {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #444;
            line-height: 1.5;
            margin: 0;
            font-style: italic;
        }
        
        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #2E7D32;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-btn.active {
            background: #2E7D32;
            transform: scale(1.2);
        }
        
        /* Progress Timeline */
        .progress-timeline {
            background: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .timeline-title {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .timeline-steps {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .timeline-step {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            background: #F1F8F4;
            border-radius: 8px;
        }
        
        .step-marker {
            width: 40px;
            height: 40px;
            background: #FF9800;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Merriweather', serif;
            font-size: 16px;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-content strong {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #2E7D32;
            display: block;
            margin-bottom: 4px;
        }
        
        .step-content p {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            color: #666;
            margin: 0;
        }
        
        /* Final Section */
        .final-section {
            padding: 30px 0;
            background: linear-gradient(135deg, #F1F8F4, #E8F5E9);
            position: relative;
            width: 100%;
            box-sizing: border-box;
            margin-top: 40px;
        }
        .final-section .container {
            max-width: 100%;
            padding: 0 16px;
            margin: 0 auto;
            box-sizing: border-box;
        }
        /* Guarantee Block */
        .final-section .guarantee-block {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            border: 2px solid #E8F5E9;
            width: 100%;
            box-sizing: border-box;
        }
        .final-section .guarantee-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .final-section .guarantee-icons {
            display: flex;
            gap: 8px;
        }
        .final-section .icon-shield, 
        .final-section .icon-leaf {
            font-size: 24px;
            padding: 8px;
            background: #F1F8F4;
            border-radius: 50%;
        }
        .final-section .guarantee-title {
            font-family: 'Merriweather', serif;
            font-size: 20px;
            font-weight: 700;
            color: #2E7D32;
            margin: 0;
            line-height: 1.3;
        }
        .final-section .guarantee-badges {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 12px;
        }
        .final-section .badge {
            background: #F1F8F4;
            color: #2E7D32;
            padding: 8px 12px;
            border-radius: 8px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            border-left: 4px solid #4CAF50;
        }
        .final-section .guarantee-text {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 17px;
            color: #444;
            line-height: 1.5;
            margin: 0;
            padding: 12px;
            background: #FFF8E1;
            border-radius: 8px;
            border-left: 4px solid #FF9800;
        }
        /* Urgency Block */
        .final-section .urgency-block {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            border: 2px solid #FFECB3;
            width: 100%;
            box-sizing: border-box;
        }
        .final-section .urgency-badge {
            background: #FF9800;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 10px;
        }
        .final-section .urgency-title {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
            color: #D32F2F;
            margin: 0 0 20px 0;
            line-height: 1.4;
        }
        /* Countdown Timer */
        .final-section .countdown-timer {
            background: #FFF8E1;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 20px;
            text-align: center;
            border: 2px dashed #FF9800;
        }
        .final-section .timer-title {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #D32F2F;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .final-section .timer-digits {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .final-section .time-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .final-section .digit {
            font-family: 'Merriweather', serif;
            font-size: 32px;
            font-weight: 900;
            color: #FF9800;
            background: white;
            padding: 8px 12px;
            border-radius: 8px;
            min-width: 60px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(255,152,0,0.3);
        }
        .final-section .unit-label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #666;
            margin-top: 5px;
            font-weight: 600;
        }
        /* Price Strip */
        .final-section .price-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #F1F8F4;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .final-section .original-price, 
        .final-section .current-price {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .final-section .label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
        }
        .final-section .price {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            font-weight: 700;
        }
        .final-section .crossed {
            color: #999;
            text-decoration: line-through;
        }
        .final-section .highlight {
            color: #2E7D32;
            font-size: 22px;
        }
        .final-section .discount-badge {
            background: #D32F2F;
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 700;
        }
        /* Stock Indicator */
        .final-section .stock-indicator {
            text-align: center;
        }
        .final-section .stock-bar {
            width: 100%;
            height: 8px;
            background: #E0E0E0;
            border-radius: 4px;
            margin-bottom: 8px;
            overflow: hidden;
        }
        .final-section .stock-fill {
            height: 100%;
            background: linear-gradient(90deg, #FF9800, #D32F2F);
            border-radius: 4px;
            transition: width 0.3s ease;
        }
        .final-section .stock-text {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #D32F2F;
            font-weight: 700;
        }
        /* Lead Form Block */
        .final-section .lead-form-block {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            width: 100%;
            box-sizing: border-box;
        }
        .final-section .form-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .final-section .form-title {
            font-family: 'Merriweather', serif;
            font-size: 20px;
            font-weight: 700;
            color: #2E7D32;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .final-section .form-subtitle {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            margin: 0;
        }
        .final-section .lead-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .final-section .form-group {
            display: flex;
            flex-direction: column;
        }
        .final-section .form-group label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: #444;
            margin-bottom: 6px;
        }
        .final-section .form-group input {
            padding: 12px 15px;
            border: 2px solid #E0E0E0;
            border-radius: 8px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s ease;
            width: 100%;
            box-sizing: border-box;
        }
        .final-section .form-group input:focus {
            outline: none;
            border-color: #4CAF50;
        }
        .final-section .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
        }
        .final-section .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
        }
        .final-section .checkbox-group label {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #444;
            margin: 0;
        }
        .final-section .cta-button {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: white;
            border: none;
            padding: 16px 20px;
            border-radius: 50px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,152,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
            width: 100%;
            box-sizing: border-box;
        }
        .final-section .cta-button:active {
            transform: scale(0.98);
            box-shadow: 0 2px 10px rgba(255,152,0,0.5);
        }
        .final-section .button-icon {
            font-size: 20px;
        }
        .final-section .form-footer {
            text-align: center;
            margin-top: 15px;
        }
        .final-section .privacy-text {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #999;
            margin: 0;
        }
        
        /* Reviews Section - Improved for Mobile */
        .reviews-section {
            padding: 40px 0 20px 0;
            background-color: #FFFFFF;
            position: relative;
        }
        .reviews-headline {
            font-family: 'Merriweather', serif;
            font-size: 28px;
            font-weight: 700;
            color: #2E7D32;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.3;
        }
        /* Reviews Stack - One by One */
        .reviews-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }
        .review-card {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .user-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2E7D32, #4CAF50);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 3px solid #E8F5E9;
        }
        .photo-placeholder {
            color: white;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
        }
        .user-info {
            flex: 1;
        }
        .user-name {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #2E7D32;
            margin-bottom: 5px;
        }
        .review-rating {
            display: flex;
            gap: 2px;
        }
        .star {
            font-size: 18px;
            color: #FF9800;
        }
        .review-text {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 14px;
            color: #444;
            line-height: 1.6;
            margin: 0;
        }
        /* Closing Line */
        .closing-line {
            text-align: center;
            margin-bottom: 25px;
            padding: 20px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }
        .closing-line p {
            font-family: 'Merriweather', serif;
            font-size: 20px;
            font-weight: 700;
            color: #2E7D32;
            margin: 0;
        }
        /* CTA Button */
        .reviews-cta {
            text-align: center;
            margin-bottom: 30px;
        }
        .cta-button {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,152,0,0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,152,0,0.4);
        }
        .button-icon {
            font-size: 20px;
        }
        /* Small Footer */
        .small-footer {
            text-align: center;
            padding: 20px 0 10px 0;
            border-top: 1px solid #f0f0f0;
        }
        .small-footer p {
            font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
            font-size: 12px;
            color: #666;
            margin: 5px 0;
            line-height: 1.4;
        }
        .small-footer a {
            color: #2E7D32;
            text-decoration: none;
        }
        .small-footer a:hover {
            text-decoration: underline;
        }
        .disclaimer {
            font-size: 11px !important;
            color: #999 !important;
            font-style: italic;
            margin-top: 10px !important;
        }
        
        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .reviews-headline {
                font-size: 24px;
                margin-bottom: 20px;
            }
            .closing-line p {
                font-size: 18px;
            }
            .cta-button {
                padding: 14px 28px;
                font-size: 16px;
            }
            .review-card {
                padding: 15px;
            }
            .user-photo {
                width: 50px;
                height: 50px;
            }
            .photo-placeholder {
                font-size: 16px;
            }
            .user-name {
                font-size: 14px;
            }
            .review-text {
                font-size: 13px;
            }
            .star {
                font-size: 16px;
            }
        }
        
        /* Very Small Mobile */
        @media (max-width: 480px) {
            .review-card {
                padding: 12px;
            }
            .user-photo {
                width: 45px;
                height: 45px;
            }
            .photo-placeholder {
                font-size: 14px;
            }
            .user-name {
                font-size: 13px;
            }
            .review-text {
                font-size: 15px;
            }
            .star {
                font-size: 14px;
            }
        }
        
        /* Mobile Optimizations for Final Section */
        @media (max-width: 768px) {
            .final-section {
                padding: 20px 0;
                margin-top: 30px;
            }
            
            .final-section .container {
                padding: 0 12px;
            }
            
            .final-section .guarantee-block,
            .final-section .urgency-block,
            .final-section .lead-form-block {
                padding: 15px;
            }
            
            .final-section .guarantee-title {
                font-size: 18px;
            }
            
            .final-section .urgency-title {
                font-size: 16px;
            }
            
            .final-section .digit {
                font-size: 24px;
                min-width: 50px;
                padding: 6px 10px;
            }
            
            .final-section .price-strip {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .final-section .timer-digits {
                gap: 10px;
            }
            
            .final-section .form-title {
                font-size: 18px;
            }
            
            .final-section .cta-button {
                padding: 14px 16px;
                font-size: 16px;
            }
        }
        @media (max-width: 480px) {
            .final-section {
                padding: 15px 0;
            }
            
            .final-section .container {
                padding: 0 10px;
            }
            
            .final-section .guarantee-block,
            .final-section .urgency-block,
            .final-section .lead-form-block {
                padding: 12px;
            }
            
            .final-section .guarantee-title {
                font-size: 16px;
            }
            
            .final-section .urgency-title {
                font-size: 15px;
            }
            
            .final-section .digit {
                font-size: 20px;
                min-width: 45px;
                padding: 5px 8px;
            }
            
            .final-section .cta-button {
                font-size: 15px;
                padding: 12px 15px;
            }
        }
		
		.doctor-image-box {
  width: 100%;
  max-width: 480px;        /* default max size */
  margin: 20px auto;       /* center horizontally */
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  background: #f9f9f9;
  text-align: center;
}

.doctor-image-box img {
  width: 100%;
  height: auto;            /* auto height to keep proportions */
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.doctor-image-box:hover img {
  transform: scale(1.03);  /* smooth zoom */
}

/* Optional: make it a bit smaller on very small phones */
@media (max-width: 420px) {
  .doctor-image-box {
    max-width: 95%;
  }
}
 .ingredients-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .ingredients-headline {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5530;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .ingredients-subheadline {
            text-align: center;
            font-size: 1.2rem;
            color: #5a7d59;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .ingredients-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .ingredient-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .ingredient-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .ingredient-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .ingredient-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ingredient-card:hover .ingredient-image img {
            transform: scale(1.05);
        }
        
        .ingredient-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .ingredient-name {
            font-size: 1.4rem;
            color: #2c5530;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .ingredient-benefit {
            font-size: 1rem;
            color: #5a7d59;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .ingredient-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag {
            background: #e8f5e9;
            color: #2c5530;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .certification {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .certification-badge {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #2c5530 0%, #5a7d59 100%);
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
            max-width: 500px;
            width: 100%;
        }
        
        .badge-icon {
            font-size: 2.5rem;
            margin-right: 20px;
        }
        
        .badge-content h4 {
            margin: 0 0 5px 0;
            font-size: 1.2rem;
        }
        
        .badge-content p {
            margin: 0;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        /* छवि विकल्प स्टाइल */
        .image-options {
            margin-top: 40px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 15px;
        }
        
        .image-options h3 {
            text-align: center;
            color: #2c5530;
            margin-bottom: 20px;
        }
        
        .option-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .option-btn {
            padding: 10px 20px;
            background: #5a7d59;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s ease;
            font-weight: 500;
        }
        
        .option-btn:hover {
            background: #2c5530;
        }
        
        /* रेस्पॉन्सिव डिज़ाइन */
        @media (max-width: 768px) {
            .ingredients-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .ingredients-headline {
                font-size: 2rem;
            }
            
            .ingredients-subheadline {
                font-size: 1.1rem;
            }
            
            .certification-badge {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .badge-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
.mbv-credit-footer {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  padding: 12px 10px;
  border-top: 1px solid rgba(15,23,42,0.06);
  background: rgba(15,23,42,0.02);
  margin-top: 40px;
}

.mbv-credit-footer p {
  margin: 0;
  line-height: 1.6;
}

.mbv-credit-footer a {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.mbv-credit-footer a:hover {
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.15);
}