/*
	Comment
*/

a { /* Comment */ color: /* Comment */ Red; }

.    <style>
        body {
            font-family: 'Inter', sans-serif;
        }
        .hero-bg {
            /* Placeholder background */
            background-size: cover;
            background-position: center;
        }
        .logo-blue { color: #3B82F6; } /* Approximate blue from logo */
        .logo-black { color: #1F2937; } /* Approximate black from logo */
        .logo-gray { color: #9CA3AF; } /* Approximate gray from logo */

        /* Custom scrollbar for a cleaner look (optional) */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #3B82F6; /* Blue color for scrollbar */
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2563EB; /* Darker blue on hover */
        }
    </style>