        /* Apply DM Sans Regular for body content and p tags */
        body,
        p {
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            /* Regular */
        }

        /* Apply Barlow Condensed Semibold to h1 */
        h1,
        h2 {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            /* Semibold */
        }

        /* Apply DM Sans Semibold for h2, h3, h4 */
        h3,
        h4 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            /* Semibold */
            margin-bottom: 0;
            /* Remove extra space */
        }

        /* Optional: Additional styling for h3 */
        h3 {
            color: #f59e0b;
            margin-bottom: 4px;
        }

        /* Custom gradient for active step and progress bar */
        .gradient-green {
            background: linear-gradient(90deg, #8bcc6a, #679f50);
        }

        .gradient-green-light {
            background: linear-gradient(to right, #8bcc6a 0%, #679f50 100%);
        }

        /* Font families */
        .font-barlow {
            font-family: 'Barlow Condensed', sans-serif;
        }

        .font-dmsans {
            font-family: 'DM Sans', sans-serif;
        }
