
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&amp;family=Playfair+Display:wght@700&amp;display=swap');

        :root {
            --primary-color: #003366;
        }

       
        .leadership-aboutinkimpact-containerbody {
            font-family: 'Inter', system_ui, sans-serif;
            background: #ffffff;
            color: #333333;
            line-height: 1.6;
            padding: 60px 20px;
            min-height: 100vh;
        }

        .leadership-aboutinkimpact-container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 25px 70px rgba(0, 51, 102, 0.12);
            overflow: hidden;
        }

        /* HEADER */
        .leadership-aboutinkimpact-header {
            background: var(--primary-color);
            color: #ffffff;
            padding: 50px 60px 40px;
            text-align: center;
        }

        .leadership-aboutinkimpact-main-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 12px;
        }

        /* MANAGING DIRECTOR SECTION */
        .leadership-aboutinkimpact-md-section {
            padding: 70px 60px;
            display: flex;
            align-items: center;
            gap: 60px;
            background: #f8f9fb;
        }

        .leadership-aboutinkimpact-md-photo {
            flex-shrink: 0;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            overflow: hidden;
            border: 14px solid var(--primary-color);
            box-shadow: 0 20px 50px rgba(0, 51, 102, 0.25);
        }

        .leadership-aboutinkimpact-md-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .leadership-aboutinkimpact-md-content {
            flex: 1;
        }

        .leadership-aboutinkimpact-md-name {
            font-size: 38px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .leadership-aboutinkimpact-md-designation {
            font-size: 20px;
            font-weight: 600;
            color: #555;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .leadership-aboutinkimpact-md-bio {
            font-size: 17px;
            color: #444;
            line-height: 1.75;
        }

        /* TEAM SECTION */
        .leadership-aboutinkimpact-team-section {
            padding: 70px 60px 80px;
        }

        .leadership-aboutinkimpact-team-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .leadership-aboutinkimpact-team-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }

        .leadership-aboutinkimpact-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 28px;
        }

        .leadership-aboutinkimpact-team-card {
            background: #ffffff;
            border: 2px solid #e6ecf5;
            border-radius: 18px;
            padding: 36px 40px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 51, 102, 0.07);
        }

        .leadership-aboutinkimpact-team-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 51, 102, 0.15);
        }

        .leadership-aboutinkimpact-team-name {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 6px;
        }

        .leadership-aboutinkimpact-team-designation {
            font-size: 17px;
            font-weight: 600;
            color: #0066cc;
            margin-bottom: 18px;
            letter-spacing: 0.3px;
        }

        .leadership-aboutinkimpact-team-details {
            font-size: 15.5px;
            color: #555;
            line-height: 1.72;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .leadership-aboutinkimpact-md-section {
                flex-direction: column;
                text-align: center;
                padding: 50px 40px;
            }
            .leadership-aboutinkimpact-md-photo {
                width: 260px;
                height: 260px;
            }
            .leadership-aboutinkimpact-team-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .leadership-aboutinkimpact-header {
                padding: 40px 30px;
            }
            .leadership-aboutinkimpact-main-title {
                font-size: 38px;
            }
        }
  

