﻿  body {
            overflow-y: auto;
            background-image: url("/Assets/Images/bg.jpg");
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            height: 100vh;
            color: white;
            font-family: 'Segoe UI', sans-serif;
        }

        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        .navbar {
            background-color: rgba(0, 0, 0, 0.7) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .content-box {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 30px;
            width: 500px;
        }

        .content-box h3 {
            font-size: 2rem;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .content-box {
                padding: 20px;
            }

            .content-box h3 {
                font-size: 1.5rem;
            }
        }