
        /* Global Typography and Alignment */
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: #1f2937;
            background-color: #f8fafc;
            text-align: center; /* Enforce global center alignment */
        }
        
        h1, h2, h3, h4, p, td, th {
            text-align: center;
        }

        /* Stretched Link Implementation */
        .card-container {
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }
        .stretched-link::after {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 1;
            content: "";
        }
    