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

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

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



        /* Article Container */
        .article-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-top: 0;
        }
         /* Hero Section */
           .hero{
        position: relative;
        background-image: url('../../img/blogs/blog2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 70vh;
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        overflow: hidden;
        margin-top: 80px;
    }

    .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;
        }
    

        .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;
            max-width: 1200px;
            margin: 0 auto;
        }

        .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.2rem;
            color: #333;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
        }

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

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

        .section p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

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

        .challenge-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f1ff 100%);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
        }

        .challenge-card h4 {
            color: #333;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .challenge-card p {
            color: #666;
            font-size: 1rem;
            margin-bottom: 0;
        }

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

        .benefit-item {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
        }

        .benefit-number {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            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: 1rem;
        }

        /* Partner Criteria */
        .criteria-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .criteria-item {
           background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .criteria-item::before {
            content: '✓';
            color: #ff9800;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }

        .criteria-item:hover {
            transform: translateY(-7px);
             box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
        }

        .criteria-item h4 {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

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

        /* Real-world Examples */
        .example-box {
            background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
            border: 1px solid rgba(33, 150, 243, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }

        .example-box::before {
            content: '💡';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
        }

        .example-box h4 {
            color: #1976d2;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .example-box p {
            color: #555;
            margin-bottom: 1rem;
        }

        /* Conclusion */
        .conclusion {
           background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
            border: 1px solid rgba(33, 150, 243, 0.2);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }

        .conclusion h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #1976d2;
        }

        .conclusion p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
           
        }
       /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .hero-meta { flex-direction: column; gap: 1rem; }
            .content { padding: 2rem 1rem; }
            .section h2 { font-size: 2rem; }
            .failure-points-grid { grid-template-columns: 1fr; }
            .action-timeline { grid-template-columns: 1fr; }
            .executive-summary { padding: 2rem; }
            .action-plan { padding: 2rem; }
        }

        @media (max-width: 480px) {
            .hero { padding: 2rem 1rem; }
            .hero h1 { font-size: 2rem; }
            .hero-subtitle { font-size: 1rem; }
            .content { padding: 1rem 0.5rem; }
            .section h2 { font-size: 1.5rem; }
            .failure-point-card { padding: 1.5rem; }
            .executive-summary { padding: 1.5rem; }
            .action-plan { padding: 1.5rem; }
        }

        /* 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;
            }
        }