
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            color: #fff;
            position: relative;
            overflow-x: hidden;
        }
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .main-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            background: rgba(139, 92, 246, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fff 45%, #a78bfa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header p {
            font-size: 20px;
            opacity: 1;
            font-weight: 400;
            color: #ffffff;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 24px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: block;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #6366f1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .card.medtarget::before {
            background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
        }

        .card.digitalquantum::before {
            background: linear-gradient(90deg, #2d1b4e 0%, #4c1d95 100%);
        }

        .card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .card:hover .card-logo {
            transform: scale(1.1) rotate(5deg);
        }

        .medtarget .card-logo {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        }

        .digitalquantum .card-logo {
            background: linear-gradient(135deg, #2d1b4e 0%, #4c1d95 100%);
        }

        .card h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .medtarget:hover h2 {
            color: #6366f1;
        }

        .digitalquantum:hover h2 {
            color: #4c1d95;
        }

        .card p {
            font-size: 16px;
            line-height: 1.7;
            color: #64748b;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            gap: 8px;
        }

        .medtarget .card-link {
            color: #6366f1;
        }

        .digitalquantum .card-link {
            color: #4c1d95;
        }

        .card:hover .card-link {
            gap: 15px;
        }

        .arrow {
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-block;
        }

        .card:hover .arrow {
            transform: translateX(8px);
        }

        .footer {
            text-align: center;
            opacity: 0;
            font-size: 14px;
            color: #e0e7ff;
            animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 0.7;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }

            .header p {
                font-size: 18px;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 40px 30px;
            }

            .card h2 {
                font-size: 28px;
            }

            .main-logo {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }

            .header {
                margin-bottom: 40px;
            }

            .header h1 {
                font-size: 28px;
            }

            .header p {
                font-size: 16px;
            }

            .card {
                padding: 30px 25px;
            }

            .card h2 {
                font-size: 24px;
            }

            .card p {
                font-size: 15px;
            }
        }