        /* ========================================
           RESET AND BASE STYLES
           ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #e5e5e5;
            background-color: #0d0d0d;
            overflow-x: hidden;
        }

        /* ========================================
           NAVIGATION
           ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(13, 13, 13, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid #333333;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo img {
            height: 50px;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 900;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            color: #e5e5e5;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #ff6b35;
        }

        .nav-cta {
            background: #ff6b35;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            border: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: inline-block;
            min-width: 120px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: #ff8c5a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #e5e5e5;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ========================================
           HERO SECTION WITH SLIDESHOW
           ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding-top: 100px;
        }

        /* Background Slideshow */
        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
            filter: grayscale(30%) brightness(0.8);
        }

        .slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 0 2rem;
        }

        .hero-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        .hero-logo img {
            height: 240px;
            width: auto;
        }

        .hero-subtitle {
            font-size: 2rem;
            font-weight: 700;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: #d1d1d1;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 3rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            display: inline-block;
        }

        .btn-primary {
            background: #ff6b35;
            color: white;
            border: 2px solid #ff6b35;
        }

        .btn-primary:hover {
            background: #ff8c5a;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #0d0d0d;
        }

        /* ========================================
           SECTION STYLES
           ======================================== */
        .section {
            padding: 6rem 5%;
            position: relative;
        }

        .section-alt {
            background: #1a1a1a;
            border-top: 1px solid #333333;
            border-bottom: 1px solid #333333;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #a0a0a0;
            max-width: 700px;
            margin: 0 auto;
        }

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

        /* ========================================
           24/7 ACCESS HIGHLIGHT
           ======================================== */
        .access-highlight {
            padding: 3rem 5%;
            position: relative;
            overflow: hidden;
            background: rgba(13, 13, 13, 0.95);
            margin-top: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .access-highlight:hover {
            background: rgba(255, 107, 53, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }


        .access-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .access-icon {
            font-size: 3.5rem;
            line-height: 1;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .access-highlight:hover .access-icon {
            transform: scale(1.1) rotate(5deg);
            animation: none;
            color: #ff6b35;
        }

        .access-content h3 {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ff6b35;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            line-height: 1.1;
            transition: all 0.3s ease;
        }

        .access-content p {
            font-size: 1.2rem;
            color: #e5e5e5;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .access-highlight:hover .access-content h3 {
            color: #ff8c5a;
            transform: translateY(-2px);
        }

        .access-highlight:hover .access-content p {
            color: #ffffff;
            transform: translateY(-1px);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* ========================================
           WELCOME / WHY CHOOSE SECTION
           ======================================== */
        .welcome-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .welcome-card {
            text-align: center;
            padding: 2rem;
        }

        .welcome-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ff6b35;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .welcome-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #d1d1d1;
        }

        /* ========================================
           STATS SECTION
           ======================================== */
        .stats-section {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(13, 13, 13, 0.95) 100%);
            border-top: 1px solid #333333;
            border-bottom: 1px solid #333333;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: #ff6b35;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            color: #a0a0a0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========================================
           MEMBER TESTIMONIALS
           ======================================== */
        .testimonials-section {
            background: #0d0d0d;
        }

        .testimonial-slider {
            position: relative;
            max-width: 900px;
            margin: 3rem auto 0;
            padding: 0 4rem;
        }

        .testimonial-track {
            overflow: hidden;
        }

        .testimonial-item {
            display: none;
            text-align: center;
            padding: 3rem 2rem;
        }

        .testimonial-item.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #e5e5e5;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #1a1a1a;
            border: 3px solid #ff6b35;
            background-size: cover;
            background-position: center;
        }

        .author-info h4 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: #a0a0a0;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: #ff6b35;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 107, 53, 0.2);
            border: 2px solid #ff6b35;
            color: #ff6b35;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .slider-nav:hover {
            background: #ff6b35;
            color: white;
        }

        .slider-prev {
            left: 0;
        }

        .slider-next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

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

        .dot.active {
            background: #ff6b35;
            transform: scale(1.2);
        }

        /* ========================================
           PRICING SECTION
           ======================================== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: #1a1a1a;
            border: 2px solid #333333;
            border-radius: 10px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #ff6b35;
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b35;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #ff6b35;
            text-transform: uppercase;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: #a0a0a0;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #333333;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: "✓";
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* ========================================
           CONTACT / LOCATION SECTION
           ======================================== */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: #1a1a1a;
            padding: 3rem;
            border-radius: 10px;
            border: 1px solid #333333;
        }

        .contact-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #ff6b35;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #333333;
        }

        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .contact-icon {
            font-size: 2rem;
            color: #ff6b35;
            min-width: 40px;
        }

        .contact-info strong {
            display: block;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .map-container {
            width: 100%;
            height: 500px;
            background: #0d0d0d;
            border-radius: 12px;
            margin-top: 2rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .map-iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 12px;
        }

        /* ========================================
           GYMMASTERS SECTION
           ======================================== */
        .gymmasters-container {
            background: #1a1a1a;
            border: 1px solid #333333;
            border-radius: 10px;
            padding: 3rem;
            margin-top: 3rem;
        }

        .gymmasters-embed {
            background: #0d0d0d;
            border-radius: 8px;
            padding: 3rem;
            min-height: 500px;
            border: 2px dashed rgba(255, 107, 53, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .embed-placeholder h3 {
            color: #ff6b35;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        /* ========================================
           MODAL / POPUP
           ======================================== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: #1a1a1a;
            border: 2px solid #333333;
            border-radius: 15px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 3rem;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #e5e5e5;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: #ff6b35;
            color: white;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .modal-header h2 {
            font-size: 2rem;
            font-weight: 900;
            color: #ff6b35;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .modal-header p {
            color: #a0a0a0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #e5e5e5;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: #0d0d0d;
            border: 1px solid #333333;
            border-radius: 5px;
            color: #e5e5e5;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b35;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* ========================================
           CHAT WIDGET
           ======================================== */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .chat-button {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #ff6b35;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(255, 107, 53, 0.5);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-button:hover {
            transform: scale(1.1);
            background: #ff8c5a;
        }

        .chat-window {
            display: none;
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 380px;
            height: 550px;
            background: #1a1a1a;
            border-radius: 15px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid #333333;
            overflow: hidden;
        }

        .chat-window.active {
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            background: #ff6b35;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h4 {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .chat-controls {
            display: flex;
            gap: 0.5rem;
        }

        .chat-clear, .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 3px;
            transition: background-color 0.2s;
        }

        .chat-clear:hover, .chat-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .chat-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            max-height: 400px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .message {
            display: flex;
            margin-bottom: 0.5rem;
        }

        .message-content {
            max-width: 80%;
            padding: 0.75rem 1rem;
            border-radius: 15px;
            word-wrap: break-word;
            line-height: 1.4;
        }

        .bot-message {
            justify-content: flex-start;
        }

        .bot-message .message-content {
            background: #1a1a1a;
            color: #d1d1d1;
            border: 1px solid #333333;
        }

        .user-message {
            justify-content: flex-end;
        }

        .user-message .message-content {
            background: #ff6b35;
            color: white;
        }

        .typing-indicator {
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .typing-indicator p {
            color: #a0a0a0;
            font-size: 0.9rem;
            margin: 0;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
        }

        .typing-dots span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff6b35;
            animation: typing 1.4s infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.4;
            }
            30% {
                transform: translateY(-10px);
                opacity: 1;
            }
        }

        .chat-input-area {
            border-top: 1px solid #333333;
            padding: 1rem;
            background: #1a1a1a;
        }

        .chat-input-container {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .chat-input-container input {
            flex: 1;
            padding: 0.75rem 1rem;
            background: #0d0d0d;
            border: 1px solid #333333;
            border-radius: 20px;
            color: #e5e5e5;
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
        }

        .chat-input-container input:focus {
            border-color: #ff6b35;
        }

        .send-button {
            padding: 0.75rem 1.5rem;
            background: #ff6b35;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .send-button:hover {
            background: #ff8c5a;
            transform: translateY(-1px);
        }

        .send-button:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
        }

        /* ========================================
           FOOTER
           ======================================== */
        footer {
            background: #0d0d0d;
            border-top: 1px solid #333333;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: #ff6b35;
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .footer-section p,
        .footer-section a {
            color: #a0a0a0;
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ff6b35;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333333;
            color: #a0a0a0;
            font-size: 0.9rem;
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0d0d0d;
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                border-bottom: 1px solid #333333;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-logo img {
                height: 180px;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .testimonial-slider {
                padding: 0 3rem;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .chat-window {
                width: calc(100% - 40px);
                right: 20px;
            }
        }

        @media (max-width: 600px) {
            .hero-logo img {
                height: 150px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section-label {
                font-size: 1.2rem;
                letter-spacing: 2px;
            }

            .section {
                padding: 4rem 5%;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .testimonial-text {
                font-size: 1.1rem;
            }

            .testimonial-slider {
                padding: 0 2.5rem;
            }

            .access-highlight {
                padding: 2rem 5%;
            }

            .access-banner {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .access-icon {
                font-size: 2.5rem;
            }

            .access-content h3 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .access-content p {
                font-size: 1rem;
            }

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

            .modal-content {
                padding: 2rem;
            }
        }
