
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f0f2f5;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 0;
            padding-bottom: 2rem;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        /* Navigation Bar Styles (reused from other EJS files) */
        .navbar {
            width: 100%;
            background-color: #333;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }
        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .nav-link:hover {
            background-color: #555;
            color: #fff;
        }
        /* Content container styles */
        .content-container {
            width: 100%;
            max-width: 900px; /* Slightly wider for home content */
            margin-left: auto;
            margin-right: auto;
            padding: 2.5rem;
            background-color: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            margin-top: 2rem;
            text-align: center;
        }
        h1 {
            font-size: 3rem; /* Larger heading */
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }
        p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
            color: #555;
            text-align: center;
        }
        .call-to-action {
            display: inline-block;
            background-image: linear-gradient(to right, #6366f1, #8b5cf6);
            color: #ffffff;
            font-weight: 600;
            padding: 0.85rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 1.5rem;
            font-size: 1.2rem;
        }
        .call-to-action:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(99, 102, 241, 0.4);
        }
        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        .feature-item {
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
            border-radius: 0.5rem;
            padding: 1.25rem;
            flex: 1 1 calc(33% - 1.5rem); /* 3 items per row on larger screens */
            min-width: 280px; /* Minimum width for small screens */
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            text-align: left;
        }
        .feature-item h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }
        .feature-item p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
            text-align: left;
        }

        @media (max-width: 768px) {
            .feature-item {
                flex: 1 1 calc(50% - 1.5rem); /* 2 items per row on medium screens */
            }
        }

        @media (max-width: 480px) {
            .feature-item {
                flex: 1 1 100%; /* 1 item per row on small screens */
            }
        }
