        /* Neubrutalism Toyota Car Recommendation System - Elegant Colors */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.5;
            color: #1a1a1a;
            background: #f8fafc;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar Styles */
        .navbar {
            background: #fff;
            border: 4px solid #1a1a1a;
            box-shadow: 8px 8px 0px #fbbf24;
            padding: 15px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            transform: rotate(-0.5deg);
            margin-bottom: 20px;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .navbar-logo img {
            height: 40px;
            filter: drop-shadow(3px 3px 0 #1a1a1a);
        }

        .navbar-logo h1 {
            color: #1a1a1a;
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 2px 2px 0px #fbbf24;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-link {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 15px;
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            border-bottom: 3px solid #fbbf24;
            transform: translateY(-3px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1a1a1a;
        }

        /* Header Styles - Clean Yellow & Dark */
        .header {
            background: #fff;
            color: #1a1a1a;
            padding: 30px 0;
            margin-bottom: 40px;
            box-shadow: 8px 8px 0px #fbbf24;
            border: 4px solid #1a1a1a;
            position: relative;
            transform: rotate(-1deg);
            margin-top: 20px;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: #374151;
            z-index: -1;
            transform: rotate(1deg);
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            animation: slideInDown 0.8s ease-out;
        }

        .logo img {
            height: 70px;
            width: auto;
            transition: transform 0.3s ease;
            filter: drop-shadow(3px 3px 0 #1a1a1a);
        }

        .logo img:hover {
            transform: scale(1.1) rotate(-5deg);
            animation: shake 0.5s ease-in-out;
        }

        .logo h1 {
            color: #1a1a1a;
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 4px 4px 0px #fbbf24;
            transform: skew(-5deg);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px) rotate(-1deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotate(-1deg);
            }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0) scale(1.1); }
            25% { transform: translateX(-5px) scale(1.1) rotate(-5deg); }
            75% { transform: translateX(5px) scale(1.1) rotate(-5deg); }
        }

        /* Hero Section */
        .hero {
            /* background: #fff; */
            border: 6px solid #1a1a1a;
            box-shadow: 12px 12px 0px #3b82f6;
            padding: 80px 50px;
            margin: 60px 0;
            position: relative;
            transform: rotate(1deg);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: #fbbf24;
            z-index: -1;
            transform: rotate(-1deg);
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-image {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
            height: 500px;
            background: transparent;
            border: none;
            box-shadow: none;
            overflow: hidden;
            margin: 0 auto;
            width: 100%;
            max-width: 500px;
        }

        .hero-image img,
        .car-hero-half {
            width: 100%;
            max-width: 420px;
            height: 500px;
            object-fit: cover;
            object-position: bottom;
            display: block;
            margin: 0 auto;
            border-radius: 0 0 30px 30px;
            /* box-shadow: 0 8px 32px rgba(0,0,0,0.15); */
            background: transparent;
            overflow: hidden;
            padding: 0;
            filter: none;
        }

        .hero h2 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 4px 4px 0px rgba(251, 191, 36, 0.5);
            transform: skew(-3deg);
        }

        .hero p {
            font-size: 1.2rem;
            color: #374151;
            margin-bottom: 30px;
            font-weight: 600;
            max-width: 600px;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .btn-primary {
            background: #1a1a1a;
            color: #fff;
            border: 4px solid #1a1a1a;
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 8px 8px 0px #fbbf24;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: skew(-2deg);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: skew(-2deg) translateX(-4px) translateY(-4px);
            box-shadow: 12px 12px 0px #fbbf24;
            background: #374151;
            animation: pulse 0.6s ease-in-out;
        }

        .btn-secondary {
            background: #fff;
            color: #1a1a1a;
            border: 4px solid #1a1a1a;
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 8px 8px 0px #3b82f6;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: skew(-2deg);
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            transform: skew(-2deg) translateX(-4px) translateY(-4px);
            box-shadow: 12px 12px 0px #3b82f6;
            background: #f1f5f9;
            animation: pulse 0.6s ease-in-out;
        }

        @keyframes pulse {
            0%, 100% { transform: skew(-2deg) translateX(-4px) translateY(-4px) scale(1); }
            50% { transform: skew(-2deg) translateX(-4px) translateY(-4px) scale(1.05); }
        }

        /* Features Section */
        .features {
            margin: 100px 0;
        }

        .section-title {
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 60px;
            font-size: 3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 4px 4px 0px rgba(20, 184, 166, 0.5);
            transform: skew(-3deg);
            background: #fff;
            padding: 20px;
            border: 4px solid #1a1a1a;
            box-shadow: 8px 8px 0 #1a1a1a;
            position: relative;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: #14b8a6;
            z-index: -1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: #fff;
            border: 6px solid #1a1a1a;
            box-shadow: 12px 12px 0px #8b5cf6;
            padding: 40px 30px;
            position: relative;
            transform: rotate(1deg);
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            transform: rotate(1deg) translateX(-6px) translateY(-6px);
            box-shadow: 18px 18px 0px #8b5cf6;
            animation: cardHover 0.6s ease-in-out;
        }

        .feature-icon {
            font-size: 3rem;
            color: #fbbf24;
            margin-bottom: 20px;
            text-shadow: 3px 3px 0px rgba(26, 26, 26, 0.2);
        }

        .feature-card h3 {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .feature-card p {
            color: #64748b;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Team Section */
        .team {
            margin: 100px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-card {
            background: #fff;
            border: 6px solid #1a1a1a;
            box-shadow: 12px 12px 0px #f59e0b;
            padding: 40px 30px;
            position: relative;
            transform: rotate(-1deg);
            transition: all 0.4s ease;
            text-align: center;
        }

        .team-card:hover {
            transform: rotate(-1deg) translateX(-6px) translateY(-6px);
            box-shadow: 18px 18px 0px #f59e0b;
        }

        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 6px solid #1a1a1a;
            object-fit: cover;
            margin: 0 auto 20px;
            box-shadow: 6px 6px 0px #1a1a1a;
        }

        .team-card h3 {
            font-size: 1.8rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .team-card .position {
            color: #f59e0b;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
            display: block;
        }

        .team-card p {
            color: #64748b;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-social a {
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background: #f59e0b;
            transform: translateY(-3px) rotate(5deg);
        }

        /* Contact Section */
        .contact {
            margin: 100px 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-form {
            background: #fff;
            border: 6px solid #1a1a1a;
            box-shadow: 12px 12px 0px #3b82f6;
            padding: 40px;
            position: relative;
            transform: rotate(1deg);
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: #bfdbfe;
            z-index: -1;
            transform: rotate(-1deg);
        }

        .contact-form h3 {
            font-size: 2rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 3px solid #1a1a1a;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            background: #f8fafc;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 4px 4px 0px #1a1a1a;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #1a1a1a;
            color: #fff;
            border: 4px solid #1a1a1a;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 6px 6px 0px #3b82f6;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: skew(-2deg);
        }

        .submit-btn:hover {
            background: #3b82f6;
            transform: skew(-2deg) translateX(-3px) translateY(-3px);
            box-shadow: 9px 9px 0px #1a1a1a;
        }

        .map-container {
            background: #fff;
            border: 6px solid #1a1a1a;
            box-shadow: 12px 12px 0px #10b981;
            padding: 0;
            height: 100%;
            position: relative;
            transform: rotate(-1deg);
            overflow: hidden;
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: #a7f3d0;
            z-index: -1;
            transform: rotate(1deg);
        }

        #map {
            width: 100%;
            height: 100%;
            min-height: 500px;
        }

        /* Problem Solution Section */
        .problem-solution {
            margin: 100px 0;
        }

        .ps-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .problem-box, .solution-box {
            padding: 40px;
            border: 6px solid #1a1a1a;
            position: relative;
            transform: rotate(-1deg);
        }

        .problem-box {
            background: #fff;
            box-shadow: 12px 12px 0px #ef4444;
        }

        .problem-box::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: #fecaca;
            z-index: -1;
            transform: rotate(1deg);
        }

        .solution-box {
            background: #fff;
            box-shadow: 12px 12px 0px #10b981;
        }

        .solution-box::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: #a7f3d0;
            z-index: -1;
            transform: rotate(1deg);
        }

        .ps-box h3 {
            font-size: 2rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
        }

        .ps-box ul {
            list-style: none;
            margin-top: 20px;
        }

        .ps-box li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-weight: 600;
            color: #374151;
        }

        .problem-box li::before {
            content: '✖';
            position: absolute;
            left: 0;
            color: #ef4444;
            font-weight: 900;
        }

        .solution-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 900;
        }

        /* Pricing Section */
        .pricing {
            margin: 100px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .pricing-card {
            background: #fff;
            border: 6px solid #1a1a1a;
            box-shadow: 12px 12px 0px #3b82f6;
            padding: 50px 40px;
            position: relative;
            transform: rotate(1deg);
            transition: all 0.4s ease;
        }

        .pricing-card:hover {
            transform: rotate(1deg) translateX(-6px) translateY(-6px);
            box-shadow: 18px 18px 0px #3b82f6;
        }

        .pricing-card.popular {
            box-shadow: 12px 12px 0px #fbbf24;
        }

        .pricing-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fbbf24;
            color: #1a1a1a;
            padding: 8px 15px;
            border: 3px solid #1a1a1a;
            font-size: 0.9rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: rotate(10deg);
        }

        .pricing-card h3 {
            font-size: 2rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .price {
            font-size: 3rem;
            font-weight: 900;
            color: #3b82f6;
            margin-bottom: 30px;
        }

        .price span {
            font-size: 1.2rem;
            color: #64748b;
            font-weight: 600;
        }

        .pricing-card.popular .price {
            color: #f59e0b;
        }

        .pricing-features {
            margin-bottom: 40px;
        }

        .pricing-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-weight: 600;
            color: #374151;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 900;
        }

        .pricing-btn {
            width: 100%;
            background: #1a1a1a;
            color: #fff;
            border: 4px solid #1a1a1a;
            padding: 20px;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            box-shadow: 6px 6px 0px #3b82f6;
            transform: skew(-2deg);
        }

        .pricing-card.popular .pricing-btn {
            box-shadow: 6px 6px 0px #fbbf24;
        }

        .pricing-btn:hover {
            background: #374151;
            transform: skew(-2deg) translateX(-3px) translateY(-3px);
            box-shadow: 9px 9px 0px #3b82f6;
            animation: buttonPulse 0.6s ease-in-out;
        }

        .pricing-card.popular .pricing-btn:hover {
            box-shadow: 9px 9px 0px #fbbf24;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #fff;
            text-align: center;
            padding: 60px 20px;
            margin-top: 80px;
            border: 4px solid #1a1a1a;
            box-shadow: 8px 8px 0px #8b5cf6;
            font-weight: 700;
            position: relative;
            transform: rotate(-1deg);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: #8b5cf6;
            z-index: -1;
            transform: rotate(1deg);
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 4px 4px 0px rgba(251, 191, 36, 0.5);
            margin-bottom: 20px;
            transform: skew(-5deg);
        }

        .footer-tagline {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link:hover {
            color: #fbbf24;
            transform: translateY(-3px);
        }

        .footer-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #fbbf24;
            bottom: -5px;
            left: 0;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .footer-link:hover::after {
            transform: scaleX(1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: #fff;
            color: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border: 3px solid #1a1a1a;
            box-shadow: 4px 4px 0px #1a1a1a;
        }

        .social-link:hover {
            background: #fbbf24;
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 6px 6px 0px #1a1a1a;
        }

        .copyright {
            font-size: 0.9rem;
            color: #e5e7eb;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                order: 2;
                text-align: center;
            }
            
            .hero-image {
                order: 1;
                width: 100%;
            }
            
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .ps-container {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                transform: rotate(0deg);
            }
            
            .nav-links {
                position: fixed;
                top: 90px;
                left: 0;
                right: 0;
                background: #fff;
                border: 4px solid #1a1a1a;
                box-shadow: 8px 8px 0px #fbbf24;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .mobile-menu-btn {
                display: block;
            }
            
            .logo h1 {
                font-size: 2.2rem;
                transform: skew(-3deg);
            }
            
            .logo img {
                height: 60px;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
                transform: skew(-2deg);
            }
            
            .footer-logo {
                font-size: 2rem;
            }
            
            .footer-tagline {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo h1 {
                font-size: 1.8rem;
                text-align: center;
                transform: skew(-2deg);
            }
            
            .logo img {
                height: 50px;
            }
            
            .hero {
                padding: 50px 30px;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
        .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .contact-form {
        flex: 1;
        min-width: 300px;
    }
    
    .map-container {
        flex: 1;
        min-width: 300px;
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        min-height: 450px;
    }
    
    /* Optional: Responsive adjustments */
    @media (max-width: 768px) {
        .contact-container {
            flex-direction: column;
        }
    }

    .car-hero-half {
        width: 100%;
        max-width: 400px;
        height: 220px;
        object-fit: cover;
        object-position: bottom;
        display: block;
        margin: 0 auto;
        border-radius: 0 0 30px 30px;
        /* box-shadow: 0 8px 32px rgba(0,0,0,0.15); */
        /* background: #fff; */
        overflow: hidden;
    }

    /* VORTEX CARD STYLE */
    .vortex-card {
        background: #fff;
        border: 6px solid #1a1a1a;
        box-shadow: 12px 12px 0px #3b82f6;
        border-radius: 1.5rem;
        padding: 2.5rem 2rem;
        margin-bottom: 2.5rem;
        position: relative;
        transform: rotate(1deg);
        transition: all 0.3s cubic-bezier(.4,2,.6,1);
    }
    .vortex-card:hover {
        box-shadow: 18px 18px 0px #fbbf24;
        transform: rotate(1deg) translateY(-6px) translateX(-6px) scale(1.02);
    }
    @media (max-width: 600px) {
        .vortex-card {
            padding: 1.2rem 0.7rem;
            border-radius: 1rem;
        }
    }
