* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #000;
            padding: 20px;
        }

        /* Card Section */
        .card-section {
            /* border: 1px solid red; */

            background: #000;
            padding: 80px 40px;
            min-height: 100vh;
            display: flex;
            justify-content: space-between;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card-left {
            width: 40%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-content h1 {
            font-size: 52px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.15;
        }

        .card-content p {
            font-size: 17px;
            color: #999;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .btn-grotesk {
            padding: 16px 36px;
            background: linear-gradient(135deg, #8A57FF 0%, #6B3FE8 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(138, 87, 255, 0.3);
            width: fit-content;
        }

        .btn-grotesk:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(138, 87, 255, 0.5);
            background: linear-gradient(135deg, #9A67FF 0%, #7B4FF8 100%);
        }

        .card-right {
            width: 60%;
            display: flex;
            align-items: center;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            width: 100%;
        }

        /* Third card spans full width */
        .info-card:nth-child(3) {
            grid-column: 1 / -1;
        }

        /* Info Card */
        .info-card {
            background: linear-gradient(145deg, rgba(25, 15, 45, 0.9) 0%, rgba(15, 10, 30, 0.95) 100%);
            border: 1px solid rgba(138, 87, 255, 0.25);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at top right, rgba(138, 87, 255, 0.12) 0%, transparent 60%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .info-card:hover {
            transform: translateY(-8px);
            border-color: rgba(138, 87, 255, 0.6);
            box-shadow: 0 15px 40px rgba(138, 87, 255, 0.4);
        }

        .info-card:hover::before {
            opacity: 1;
        }

        /* Card Image */
        .card-image {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, rgba(138, 87, 255, 0.15) 0%, rgba(107, 63, 232, 0.08) 100%);
            border-bottom: 1px solid rgba(138, 87, 255, 0.15);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .info-card:hover .card-image img {
            transform: scale(1.05);
        }

        /* Placeholder circle for empty images */
        .card-image:not(:has(img))::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(138, 87, 255, 0.15);
            border-radius: 50%;
            border: 2px solid rgba(138, 87, 255, 0.3);
        }

        /* Card Text */
        .card-text {
            padding: 28px;
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .card-text h3 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .card-text p {
            font-size: 15px;
            color: #aaa;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .card-section {
                gap: 60px;
                padding: 60px 30px;
            }

            .card-content h1 {
                font-size: 44px;
            }
        }

        @media (max-width: 1024px) {
            .card-section {
                flex-direction: column;
                gap: 50px;
                padding: 60px 30px;
            }

            .card-left {
                width: 100%;
                text-align: center;
            }

            .card-content h1 {
                font-size: 40px;
            }

            .btn-grotesk {
                margin: 0 auto;
            }

            .card-right {
                width: 100%;
            }

            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .info-card:nth-child(3) {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .card-section {
                padding: 50px 20px;
            }

            .card-content h1 {
                font-size: 34px;
            }

            .card-content p {
                font-size: 16px;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .info-card:nth-child(3) {
                grid-column: 1;
            }

            .card-image {
                height: 200px;
            }

            .card-text {
                padding: 24px;
            }

            .card-text h3 {
                font-size: 14px;
            }

            .card-text p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .card-section {
                padding: 40px 15px;
            }

            .card-content h1 {
                font-size: 28px;
            }

            .card-content p {
                font-size: 15px;
            }

            .btn-grotesk {
                padding: 14px 28px;
                font-size: 15px;
            }

            .card-image {
                height: 180px;
            }
        }