        :root {
            --primary-green: #90EE90;
            /* Signature Light Green */
            --pharma-dark: #0a2e1f;
            --soft-mint: #f7fff7;
            --white: #ffffff;
            --transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
        }

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

        /* Hero Section */
        .pharma-hero {
            background: linear-gradient(135deg, var(--soft-mint) 0%, #ffffff 100%);
            padding: 90px 0;
            text-align: center;
            border-bottom: 5px solid var(--primary-green);
            position: relative;
        }

        .hero-title {
            font-weight: 800;
            color: var(--pharma-dark);
            font-size: 3rem;
        }

        /* Course Box UI */
        .pharma-card {
            border: 1px solid #eaf4ea;
            border-radius: 25px;
            padding: 35px 25px;
            background: #fff;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

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

        /* Icon Styling */
        .icon-hexagon {
            width: 70px;
            height: 70px;
            background: var(--primary-green);
            color: var(--pharma-dark);
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 25px;
        }

        .course-title {
            font-weight: 700;
            color: var(--pharma-dark);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

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

        .apply-now-btn {
            background-color: var(--pharma-dark);
            color: white !important;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            flex-grow: 1;
            transition: 0.3s;
        }

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

        .wa-btn {
            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;
        }

        .wa-btn:hover {
            transform: scale(1.1) rotate(5deg);
            background-color: #128c7e;
        }

        .course-tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 700;
            color: #2d5a27;
            background: rgba(144, 238, 144, 0.2);
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 10px;
            display: inline-block;
        }