*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        .test-checkbox:checked + label {
            border-color: #2563eb;
            background-color: #eff6ff;
        }

        .booking-sidebar {
            position: sticky;
            top: 100px;
            max-height: calc(100vh - 120px);
        }

        .category-content {
            display: none;
        }

        .category-card.active .category-content {
            display: block;
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .hero-gradient {
            background: radial-gradient(circle at top right, #eff6ff, #ffffff);
        }