﻿/* â”€â”€ reset & base â”€â”€ */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        *::-webkit-scrollbar {
            display: none;
        }

        body {
            background: #F8FAFC;
            min-height: 100dvh;
            -ms-overflow-style: none;
            scrollbar-width: none;
            overflow: hidden;
        }

