        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            background-color: #f8f9fa;
        }

        .navbar {
            background-color: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
        }

        .navbar .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
        }

        .navbar .nav-link:hover {
            color: #0056b3;
        }

        .navbar .btn-primary {
            background-color: #0056b3;
            border-color: #0056b3;
        }

        .navbar .btn-primary:hover {
            background-color: #004085;
            border-color: #004085;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #004085;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #6c757d;
        }

        .btn-primary {
            background-color: #004085;
            border-color: #004085;
        }

        .btn-primary:hover {
            background-color: #ffc107;
            border-color: #ffc107;
        }

        .feature-box {
            background: #fff;
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #004085;
            margin-bottom: 1rem;
        }

        .section {
            padding: 4rem 0;
        }

        .hero-section {
            background: linear-gradient(to right, #004085, #0056b3);
            color: #fff;
            padding: 6rem 0;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        .hero-section .btn {
            font-size: 1.125rem;
            padding: 0.75rem 2rem;
        }

        .footer {
            background-color: #343a40;
            color: #adb5bd;
            padding: 2rem 0;
        }

        .footer .footer-title {
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer .footer-link {
            color: #adb5bd;
            text-decoration: none;
        }

        .footer .footer-link:hover {
            color: #ffc107;
        }

        .navbar-nav .nav-link.active {
            color: #0056b3;
            font-weight: bold;
        }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #0056b3;
            display: none; /* Ensure no bar appears */
        }