﻿.left-section {
    padding: 30px;
    width: 400px;
    position: absolute;
    left: -70px;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 20;
}

    .left-section .roadmap {
        font-size: 16px;
        color: #333333;
        margin-left: 0;
    }

        .left-section .roadmap a {
            color: #333333;
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }

            .left-section .roadmap a:hover {
                color: #dc3545;
            }

                .left-section .roadmap a:hover::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: -3px;
                    width: 100%;
                    height: 2px;
                    background-color: #dc3545;
                }

@media (max-width: 800px) {
    .left-section {
        width: 100%;
        position: static;
        margin-top: 50px;
        text-align: center;
    }
}
