 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background:  linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%)!important;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        /* Article Container */
        .article-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 24px;
            margin: 0rem 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* Hero Section */
             .hero{
        position: relative;
        background-image: url('../../img/blogs/Blog4.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: 80px;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .hero.overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.45); /* Adjust opacity as needed */
        z-index: 1;
    }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-meta {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        /* Main Content */
        .content {
            padding: 3rem 2rem 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .intro-text {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .section {
            margin-bottom: 3rem;
        }

        .section h2 {
            font-size: 2.4rem;
            color: #2d3748;
            margin-bottom: 2rem;
            position: relative;
            padding-left: 1.2rem;
        }

        .section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            border-radius: 2px;
        }

        .section h3 {
            font-size: 1.5rem;
            color: #444;
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }

        .section p {
            font-size: 1.125rem;
            color: #4a5568;
            margin-bottom: 1.75rem;
            line-height: 1.85;
        }

        .section ul {
            margin-left: 2.5rem;
            margin-bottom: 2rem;
        }

        .section li {
            font-size: 1.125rem;
            color: #4a5568;
            line-height: 1.85;
            margin-bottom: 0.75rem;
        }

        /* Alert Box */
        .alert-box {
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            position: relative;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        .alert-box h3 {
            color: #1e3a8a;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .alert-box p {
           color: #666;
            margin-bottom: 1rem;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Risk Analysis Grid */
        .risk-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        align-items: stretch; /* ensures all grid items fill equal height */
        }

        .risk-item {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .risk-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
        }

        .risk-item .risk-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #1d4ed8;
        }

        .risk-item h4 {
        font-size: 1.2rem;
        color: #111827;
        margin-bottom: 0.75rem;
        }

        .risk-item p {
        font-size: 1.1rem;
        color: #374151;
        line-height: 1.6;
        }
                /* Accumulation Crisis Section */

        .accumulation-crisis {
        display: flex;

        flex-direction: column;
        gap: 3rem;
        margin: 5rem 0;
        padding: 1rem 1rem;
        }

        .accumulation-card {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .accumulation-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.05);
        }

        .accumulation-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #2563eb;
        }

        .accumulation-title {
        font-size: 1.33rem;
        font-weight: 600;
        color: #111827;
        margin-bottom: 0.75rem;
        }

        .accumulation-description {
        font-size: 1.1rem;
        color: #4b5563;
        line-height: 1.6;
        }
        .accumulation-crisis h2{
            font-size: 2.2rem;
                    color: #333;
                    margin-bottom: 1.5rem;
                    position: relative;
                    padding-left: 1rem;
        }
        .accumulation-crisis h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            border-radius: 2px;
        }


        /* Partnership Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(23, 38, 199, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(28, 50, 187, 0.15);
        }

        .benefit-icon {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .benefit-item h4 {
            color: #333;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .benefit-item p {
            color: #666;
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        /* Cost Analysis */
        .cost-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .cost-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(156, 163, 175, 0.2);
            transition: all 0.3s ease;
        }

        .cost-card.in-house {
            border-color: rgba(65, 62, 199, 0.3);
        }

        .cost-card.partnership {
            border-color: rgba(94, 71, 171, 0.3);
        }

        .cost-card h4 {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .cost-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(156, 163, 175, 0.1);
        }

        .cost-item:last-child {
            border-bottom: none;
        }

        .cost-label {
            color: #666;
            font-size: 1rem;
        }

        .cost-value {
            color: #333;
            font-weight: 600;
            font-size: 1rem;
        }
        /* Framework */
       .framework-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
        }

        .framework-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(59, 130, 246, 0.15);
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        }

        .framework-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(59, 130, 246, 0.2);
        }

        .framework-card h4 {
        font-size: 1.25rem;
        color: #1e3a8a;
        margin-bottom: 0.75rem;
        font-weight: 600;
        }

        .framework-card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        }


        /* ROI Calculator */
        .roi-calculator {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .roi-calculator h3 {
            color: #1e3a8a;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .roi-metric {
            display: inline-block;
            background: rgba(255, 255, 255, 0.8);
            padding: 1rem 2rem;
            border-radius: 25px;
            margin: 0.5rem;
            font-weight: 600;
            color: #1e3a8a;
        }

        /* Implementation Timeline */
        .timeline {
            margin: 2rem 0;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 50px;
            bottom: -30px;
            width: 2px;
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
        }

        .timeline-item:last-child::before {
            display: none;
        }

        .timeline-icon {
            display: inline-block;
             background: linear-gradient(135deg, #6eacd5 0%, #8ab2e7 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 600;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .timeline-content {
            flex: 1;
        }

        .timeline-content h4 {
            color: #333;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .timeline-content p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
              background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
           color: #1976d2;
        }

        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 2rem auto;
            color: #555;
        }

 /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                height: 60vh;
                padding: 2rem 1rem;
            }
            .hero h1 { 
                font-size: 2.2rem;
                margin-bottom: 0.8rem;
            }
            .hero-subtitle { 
                font-size: 1rem;
                line-height: 1.4;
            }
            .hero-meta { 
                flex-direction: column;
                gap: 0.8rem;
                margin-top: 1.5rem;
            }
            .meta-item {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
            .content { 
                padding: 2rem 1rem;
            }
            .section h2 { 
                font-size: 1.8rem;
                margin-bottom: 1.2rem;
            }
            .section h3 { 
                font-size: 1.3rem;
                margin: 1.5rem 0 1rem;
            }
            .section p { 
                font-size: 1rem;
                margin-bottom: 1.2rem;
            }
            .benefits-grid,
            .risk-grid { 
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .timeline { 
                padding: 1.5rem;
            }
            .timeline-item { 
                padding: 1rem;
                margin-bottom: 1.2rem;
            }
            .timeline-item::before {
                left: 15px;
            }
            .timeline-item-content {
                padding-left: 2.5rem;
            }
            .cost-card {
                padding: 0.3rem;
                margin-bottom: 1rem;
                display: flex;
                flex-wrap: wrap;
                flex-direction: column;
                margin-left: 0.3rem;
            }          
            .cta-section
            {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 50vh;
                padding: 1.5rem 0.8rem;
            }
            .hero h1 { 
                font-size: 1.8rem;
                line-height: 1.2;
            }
            .hero-subtitle { 
                font-size: 0.95rem;
                line-height: 1.4;
            }
            .intro-text { 
                font-size: 1rem;
                line-height: 1.4;
            }
            .section h2 { 
                font-size: 1.5rem;
                padding-left: 0.8rem;
            }
            .section h3 { 
                font-size: 1.1rem;
            }
            .section p { 
                font-size: 0.95rem;
                line-height: 1.6;
            }
            .benefits-grid,
            .risk-grid { 
                gap: 1rem;
            }
            .timeline-item-content {
                padding-left: 2rem;
            }
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 768px) {
            html, body {
                max-width: 100vw;
                overflow-x: hidden;
            }
            img, video {
                max-width: 100%;
                height: auto;
            }
            .container, .article-container {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
            }
            .hero {
                min-height: 40vh;
                height: auto;
                padding: 2rem 0.5rem;
                margin-top: 60px;
            }
            .footer-main, .footer-grid {
                flex-direction: column !important;
                display: flex !important;
                gap: 1.5rem;
            }
            .footer-section {
                width: 100% !important;
                min-width: unset !important;
            }
            .footer-social {
                margin-top: 1.5rem;
                text-align: center;
            }
            .nav-links {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container, .article-container {
                padding-left: 0.25rem;
                padding-right: 0.25rem;
            }
            .hero {
                padding: 1rem 0.25rem;
            }
        }