:root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --text-color: #333;
            --bg-color: #f4f4f4;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0 auto;
        }

        .blog-page {
            padding: 20px;
            max-width: 800px;
            margin: 5rem auto 0;
        }

        h1 {
            color: #3498db;
            text-align: center;
        }

        h2 {
            color: #4a4a4a;
        }

        .section {
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        #check{
            margin-left: 1.5rem;
        }

        .section:hover {
            transform: translateY(-5px);
        }

        .highlight {
            background-color: #3498db;
            color: white;
            padding: 2px 5px;
            border-radius: 3px;
        }

        .blog-button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 2%;
            display: block;
            margin: 20px auto;
            border-radius: 10px;
        }

        .blog-button:hover {
            background-color: #2980b9;
        }

        .roadmap-step {
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
        }

        .roadmap-step::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            background-color: #3498db;
            border-radius: 50%;
        }

        .roadmap-step::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 1px;
            height: calc(100% - 20px);
            background-color: #3498db;
        }

        .roadmap-step:last-child::after {
            display: none;
        }

        .roadmap-step ul{
            margin-left: 1.5rem;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        a{
            text-decoration: none;
            color: #fff;
        }