        :root {
            --primary-green: #90EE90;
            /* Signature Light Green */
            --biz-dark: #122612;
            --soft-white: #ffffff;
            --bg-light: #f6faf6;
        }

        body {
            background-color: var(--soft-white);
            font-family: 'Inter', 'Segoe UI', sans-serif;
            color: #333;
        }

        /* Hero Section Styling */
        .biz-hero {
            background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
            padding: 100px 0 60px;
            text-align: center;
            border-bottom: 5px solid var(--primary-green);
        }

        .hero-title {
            font-weight: 900;
            color: var(--biz-dark);
            letter-spacing: -1px;
            font-size: 3.2rem;
        }

        /* Management Card UI */
        .mgmt-card {
            border: 1px solid #e2eee2;
            border-radius: 20px;
            padding: 40px 25px;
            background: #fff;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        .mgmt-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-green);
            box-shadow: 0 20px 40px rgba(144, 238, 144, 0.2);
        }

        /* Icon UI - Square with rounded corners for Corporate look */
        .icon-biz {
            width: 70px;
            height: 70px;
            background: var(--primary-green);
            color: var(--biz-dark);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 25px;
            transform: rotate(-5deg);
            /* Modern slant */
            transition: 0.3s;
        }

        .mgmt-card:hover .icon-biz {
            transform: rotate(0deg);
        }

        .course-name {
            font-weight: 800;
            color: var(--biz-dark);
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        /* CTA Buttons */
        .action-flex {
            margin-top: auto;
            display: flex;
            gap: 12px;
            padding-top: 25px;
        }

        .apply-now-link {
            background-color: var(--biz-dark);
            color: white !important;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            flex-grow: 1;
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .apply-now-link:hover {
            background-color: #000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-link {
            background-color: #25d366;
            color: white !important;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 24px;
            transition: 0.3s;
        }

        .whatsapp-link:hover {
            background-color: #128c7e;
            transform: scale(1.1);
        }

        .duration-tag {
            font-size: 0.7rem;
            font-weight: 700;
            color: #1e4d1e;
            background: rgba(144, 238, 144, 0.3);
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 15px;
            display: inline-block;
        }