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

        .cards-section {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(rgba(0, 209, 249, 0.9), rgb(11, 11, 12)),
            url(../img/fact-bg.jpg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            overflow: hidden;
            border-radius: 20px;
            padding: 40px 20px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .pricing-card {
            flex: 0 0 320px;
            background: linear-gradient(145deg, #1e1e2e, #2a2a3e);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            border: 2px solid #3a3a5e;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(138, 43, 226, 0.2);
            border-color: #000000;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #000000, #00d1f9);
            color: white;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
        }

        .plan-name {
            background: linear-gradient(45deg, #000000, #00d1f9);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
        }

        .price {
            font-size: 48px;
            font-weight: bold;
            color: white;
            margin-bottom: 5px;
        }

        .period {
            color: #888;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .subtitle {
            color: #aaa;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .features {
            list-style: none;
            margin-bottom: 40px;
        }

        .features li {
            padding: 12px 0;
            color: #ccc;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .title-card {
            font-size: 64px;
            font-weight: bold;
            font-family:  "Playfair Display",serif;
            color: white;
            margin-bottom: 20px;
        }

        .features li::before {
            content: '📍';
            background: linear-gradient(45deg, #000000, #00d1f9);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 12px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .cta-button {
            background: linear-gradient(45deg, #000000, #00d1f9);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
        }

        .title {
            text-align: center;
            margin-bottom: 60px;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .title .highlight {
            background: linear-gradient(45deg, #000000, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .control-btn {
            background: linear-gradient(45deg, #000000, #00d1f9);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
        }

        .indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #444;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: linear-gradient(45deg, #000000, #00d1f9);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .pricing-card {
                min-width: 280px;
            }
            
            .title {
                font-size: 2rem;
            }
        }

        @media (min-width: 1200px) {
            /* .carousel-track {
                justify-content: center;
            } */
        }