        /* Base styling */
        body {
            font-family: 'Inter', sans-serif;
			background-color:rgb(19 24 39);
        }
        
        /* Custom class for the hero background */
        .hero-bg {
            /* Gradient set to 0.85 (85%) opacity to make the background image appear faint/dark */
            background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/img/herobg.png');
            background-size: cover;
            background-position: center;
        }

        /* Hide all pages by default */
        .page {
            display: block;
        }
        /* Show the active page */
        .page.active {
            display: block;
        }

        /* Tab styling */
        .tab-btn {
            transition: all 0.3s ease;
			border:1px solid;
        }
        .tab-btn.active {
            color: #3B82F6; /* blue-500 */
            border-bottom-color: #3B82F6;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
		main
		{background-color:white;}