   * {
            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: #333;
            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.98);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin: 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        /* Hero Section */
        .hero{
        position: relative;
        background-image: url('../../img/blogs/blog3.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;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            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.4rem;
            opacity: 0.95;
            max-width: 900px;
            margin: 0 auto;
            font-weight: 500;
            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.7rem 1.5rem;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            font-weight: 600;
        }

        /* Executive Summary */
        .executive-summary {
           background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);

            padding: 2.5rem;
            margin: 2rem 0;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .executive-summary h2 {
            color: #1976d2;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .executive-summary p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .stat-highlight {
           color: black;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
            margin: 0 0.2rem;
        }

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

        .section {
            margin-bottom: 3rem;
        }

        .section h2 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 2rem;
            position: relative;
            padding-left: 1rem;
            font-weight: 700;
        }


        /* Failure Points Grid */
        .failure-points-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .failure-point-card {
           
            border: 2px solid rgba(72, 115, 235, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .failure-point-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(63, 45, 231, 0.2);
            
        }
        .failure-point-card h3 {
            color: #1976d2;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .strategic-impact {
            
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
        }

        .strategic-impact h4 {
            color: #1976d2;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .strategic-impact p {
            color: black;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .action-imperative {
        
           
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
        }

        .action-imperative h4 {
            color: #1976d2;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .action-imperative p {
            color: black;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Action Plan Section */
        .action-plan {
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
        }

        .action-plan h2 {
            color: #1e40af;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .action-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .timeline-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            border-top: 5px solid #3b82f6;
        }

        .timeline-card h3 {
            color: #1e40af;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .timeline-card ul {
            list-style: none;
            padding: 0;
        }

        .timeline-card li {
            color: #374151;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
        }

        .timeline-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

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

        .leadership-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            animation: pulse 6s ease-in-out infinite;
        }

        .leadership-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
           color: #1976d2;
            position: relative;
            z-index: 2;
        }

        .leadership-section p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            color: #666;
        }

        .binary-choice {
            background: linear-gradient(45deg,  #1976d2, #1976d2);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 1rem 0;
            font-size: 1.3rem;
            font-weight: 700;
            text-align: center;
            position: relative;
            z-index: 2;
            display: inline-block;
        }
        /* Floating Warning Animation */
        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .warning-particle {
            position: fixed;
            pointer-events: none;
            z-index: 1;
            font-size: 16px;
            animation: float 8s linear infinite;
        }

        /* 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;
            }
            .leadership-section {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .container, .article-container {
                padding-left: 0.25rem;
                padding-right: 0.25rem;
            }
            .hero {
                padding: 1rem 0.25rem;
            }
        }
