
        /* Independent Section Styles - No Global Styles */
        .access-section {
            background-color: #000;
            color: #fff;
            text-align: center;
            padding: 80px 20px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        /* Grid Overlay */
        .access-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
            pointer-events: none;
        }

        /* Subtle Animated Background */
        .access-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(123, 47, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(241, 7, 163, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(255, 183, 3, 0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .access-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .access-container h3 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 60px;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .access-container h3 span {
            color: #ffb703;
            display: inline-block;
            text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
            position: relative;
        }

        .access-container h3 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ffb703, transparent);
            border-radius: 2px;
        }

        .access-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .access-card {
            background: linear-gradient(145deg, #111 0%, #1a1a1a 100%);
            border-radius: 20px;
            padding: 40px 30px 30px;
            position: relative;
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.5),
                inset 0 1px 0 rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .access-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s;
        }

        .access-card:hover::before {
            left: 100%;
        }

        .access-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.6),
                0 0 0 1px rgba(255, 183, 3, 0.2);
            border-color: rgba(255, 183, 3, 0.3);
        }

        .access-card img {
            width: 140px;
            height: 140px;
            object-fit: contain;
            margin-bottom: 25px;
            border-radius: 16px;
            transition: all 0.4s ease;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
        }

        .access-card:hover img {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 10px 20px rgba(255, 183, 3, 0.2));
        }

        .access-card p {
            font-size: 16px;
            color: #e0e0e0;
            line-height: 1.7;
            font-weight: 400;
        }

        .access-card strong {
            color: #fff;
            font-weight: 600;
            font-size: 18px;
            display: block;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #fff, #ffb703);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .note {
            font-size: 15px;
            color: #bbb;
            margin: 50px auto 40px;
            line-height: 1.7;
            max-width: 800px;
            padding: 25px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            border-left: 4px solid #ffb703;
            position: relative;
        }

        .note::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 40px;
            color: #ffb703;
            opacity: 0.3;
            font-family: serif;
        }

        .cta-container {
            margin-top: 40px;
            position: relative;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);
            color: #fff;
            font-weight: 700;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            padding: 20px 50px;
            border-radius: 60px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 
                0 10px 30px rgba(123, 47, 247, 0.4),
                0 0 0 0 rgba(123, 47, 247, 0.5);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 15px 35px rgba(123, 47, 247, 0.6),
                0 0 0 10px rgba(123, 47, 247, 0.1);
        }

        .cta-btn:active {
            transform: translateY(-2px) scale(1.02);
        }




        .cta-sub {
            font-size: 15px;
            color: #ccc;
            margin-top: 20px;
            line-height: 1.6;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cta-sub::before, .cta-sub::after {
            content: '✦';
            color: #ffb703;
            font-size: 12px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .access-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .access-section {
                padding: 60px 15px;
            }
            
            .access-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .access-card {
                padding: 35px 25px 25px;
            }
            
            .access-card img {
                width: 120px;
                height: 120px;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 350px;
                justify-content: center;
                padding: 18px 30px;
            }
            
            .note {
                margin: 40px auto 35px;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .access-section {
                padding: 50px 10px;
            }
            
            .access-container h3 {
                margin-bottom: 40px;
                padding: 0 10px;
            }
            
            .access-card {
                padding: 30px 20px 20px;
            }
            
            .access-card img {
                width: 100px;
                height: 100px;
            }
            
            .access-card p {
                font-size: 15px;
            }
            
            .cta-btn {
                padding: 16px 25px;
                font-size: 1.2rem;
            }
            
            .cta-sub {
                font-size: 14px;
                padding: 0 10px;
            }
            
            .note {
                font-size: 14px;
                padding: 15px;
            }
        }

        @media (max-width: 360px) {
            .access-card img {
                width: 90px;
                height: 90px;
            }
            
            .access-card p {
                font-size: 14px;
            }
            
            .cta-btn {
                font-size: 1.1rem;
                padding: 14px 20px;
            }
        }
