        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f4f6f8;
            margin: 0;
            padding: 40px;
        }

        h1 {
            text-align: center;
            margin-bottom: 40px;
            color: #1f2937;
        }

        .university-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .university-link {
            text-decoration: none;
        }

        .university-item {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border-radius: 16px;
            padding: 16px 24px;
            margin-bottom: 16px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .university-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
        }

        .university-item img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            margin-right: 20px;
        }

        .university-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #111827;
        }
