        .container {
            max-width: 1200px;
            padding: 15px;
            margin: 0 auto;
        }
        .link-card {
            border: none;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: block;
            cursor: pointer;
            text-decoration: none;
            min-height: 100px;
            height: auto;
            position: relative;
            z-index: 1;
        }
        .link-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            padding: 2px;
            background: linear-gradient(
                45deg,
                #ff0000,
                #ff7300,
                #fffb00,
                #48ff00,
                #00ffd5,
                #002bff,
                #7a00ff,
                #ff00c8,
                #ff0000
            );
            background-size: 400% 400%;
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            animation: border-animate 8s linear infinite;
        }
        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        @keyframes border-animate {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .link-card h3 {
            margin: 0 0 10px 0;
            font-size: 18px;
            color: #2c3e50;
            font-weight: 600;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .link-card p {
            margin: 0;
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            max-height: 42px;
        }
        .link-card a {
            color: #2c3e50;
            text-decoration: none;
            position: relative;
            display: inline-block;
        }
        .link-card a:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #3498db;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .link-card a:hover {
            color: #3498db;
        }
        .link-card a:hover:after {
            transform: scaleX(1);
        }
        .apply-box {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .apply-box h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 24px;
            text-align: center;
        }
        .requirements, .our-info, .contact {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }
        .requirements h4, .our-info h4, .contact h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 18px;
        }
        .requirements ul {
            padding-left: 5px;
            list-style: none;
            margin: 0;
        }
        .requirements li {
            margin-bottom: 10px;
            color: #34495e;
            font-size: 14px;
            position: relative;
            padding-left: 25px;
            line-height: 1.5;
        }
        .requirements li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2ecc71;
            font-weight: bold;
        }
        .our-info p, .contact p {
            margin-bottom: 8px;
            color: #34495e;
            font-size: 14px;
            line-height: 1.5;
        }
        .btn-primary {
            background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 0.5px;
            width: 100%;
            max-width: 250px;
            margin: 10px auto 0;
            display: block;
            text-align: center;
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            .col-sm-6 {
                width: 100%;
            }
            .link-card {
                padding: 15px;
                margin-bottom: 15px;
                min-height: auto;
            }
            .link-card h3 {
                font-size: 16px;
            }
            .link-card p {
                font-size: 13px;
                -webkit-line-clamp: 2;
                max-height: 36px;
            }
            .apply-box {
                padding: 20px 15px;
                margin-top: 20px;
            }
            .apply-box h2 {
                font-size: 20px;
                margin-bottom: 15px;
            }
            .requirements, .our-info, .contact {
                padding: 15px;
                margin-bottom: 15px;
            }
            .requirements h4, .our-info h4, .contact h4 {
                font-size: 16px;
                margin-bottom: 12px;
            }
            .requirements li, .our-info p, .contact p {
                font-size: 13px;
                margin-bottom: 8px;
            }
            .btn-primary {
                padding: 10px 20px;
                font-size: 13px;
            }
        }
        body {
            background-color: #f5f6fa;
        }