 /* MAIN SECTION */
        .mentoring-section {
            min-height: 100vh;
            background:
                linear-gradient(rgba(246, 241, 233, .85), rgba(246, 241, 233, .85)),
                url("https://images.unsplash.com/photo-1521791136064-7986c2920216");
            background-size: cover;
            background-position: center;
            padding: 40px 40px;
        }

        /* HEADING */
        .mentoring-title {
            text-align: center;
            font-size: 60px;
            color: #0b4fb3;
            font-weight: 900;
            margin-bottom: 30px;
            text-shadow: 2px 2px 0 #cfd9ea;
            font-family: cursive;
            font-weight: bold;
        }

        /* DESCRIPTION BOX */
        .mentoring-desc {
            max-width: 634px;
            margin: 0 auto 60px;
            background: rgba(130, 120, 105, .75);
            color: #000;
            padding: 26px 30px;
            border-radius: 12px;
            font-size: 23px;
            line-height: 1.5;
            text-align: center;
            font-family: cursive;
        }

        /* CONTENT GRID */
        .mentoring-grid {
            max-width: 900px;
            margin: 0 auto;
        }

        .mentoring-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .mentoring-text {
            font-size: 26px;
            font-weight: 600;
        }

        /* SUPPORT BUTTON */
        .support-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #8f8a80;
            color: #000;
            padding: 10px 16px;
            border-radius: 14px;
            font-size: 20px;
            text-decoration: none;
            min-width: 160px;
            justify-content: center;
        }

        .support-btn i {
            background: #25D366;
            color: #fff;
            padding: 6px;
            border-radius: 50%;
            font-size: 20px;
        }

        /* MOBILE STACK */
        @media(max-width:768px) {
            .mentoring-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }