   /* Main content wrapper */
   .content-wrapper {
            position: relative;
            z-index: 1;
            padding-bottom: 40px;
        }
        /* Footprint Section */
        .footprint-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #e63946;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .footprint-content {
            margin-bottom: 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .footprint-content p {
            margin-bottom: 20px;
        }

        /* Map Visualization */
        .map-visualization {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        .africa-map {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 500px;
            background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/Africa_%28orthographic_projection%29.svg/600px-Africa_%28orthographic_projection%29.svg.png') center/contain no-repeat;
        }

        .region-marker {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #e63946;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.3);
            animation: pulse 2s infinite;
        }

        .west-africa {
            top: 40%;
            left: 25%;
        }

        .central-africa {
            top: 55%;
            left: 40%;
        }

        .region-label {
            position: absolute;
            background: rgba(44, 62, 80, 0.9);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            transform: translate(-50%, 0);
            white-space: nowrap;
        }

        .west-label {
            top: 25%;
            left: 25%;
        }

        .central-label {
            top: 70%;
            left: 40%;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
            }
        }

        /* Commitment Section */
        .commitment-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 50px 0;
        }

        .commitment-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #2c3e50;
            text-align: center;
        }

        .commitment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #e63946;
        }

        .commitment-icon {
            font-size: 2.5rem;
            color: #e63946;
            margin-bottom: 20px;
        }

        .commitment-card h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .commitment-card p {
            color: #555;
            line-height: 1.6;
        }

        /* Impact Section */
        .impact-section {
            background: rgba(248, 249, 250, 0.9);
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .impact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }

        .impact-point {
            display: flex;
            align-items: flex-start;
        }

        .impact-point i {
            font-size: 2rem;
            color: #e63946;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .impact-point p {
            color: #555;
            line-height: 1.6;
            margin: 0;
        }

        /* Highlight Box */
        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #e63946;
            padding: 20px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .highlight-box p {
            margin: 0;
            font-style: italic;
            color: #2c3e50;
            font-size: 1.2rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .commitment-section, .impact-content {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .africa-map {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .content-wrapper {
                padding: 20px 3%;
            }
            
            .footprint-section, .impact-section {
                padding: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .commitment-section, .impact-content {
                grid-template-columns: 1fr;
            }
            
            .africa-map {
                height: 350px;
            }
            
            .region-label {
                font-size: 0.8rem;
                padding: 5px 10px;
            }
        }

        @media (max-width: 576px) {
            .content-wrapper {
                padding: 15px;
            }
            
            .footprint-section, .impact-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .commitment-card {
                padding: 20px;
            }
            
            .africa-map {
                height: 300px;
            }
            
            .west-label {
                top: 20%;
            }
            
            .central-label {
                top: 75%;
            }
            
            .impact-point {
                flex-direction: column;
                text-align: center;
            }
            
            .impact-point i {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }