        /* Modern CSS with variables */
        :root {
            --primary: #6a5acd;
            --secondary: #4b0082;
            --accent: #9370db;
            --text: #333;
            --light: #f8f9fa;
            --dark: #212529;
            --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        ::selection {
            background-color: lightblue;
        }

        a {
            color: #128C7E;
            text-decoration: none;
        }

        .a-udr:hover {
            text-decoration: underline;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: SFPROREG;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            min-width: 320px;
            margin: 0 auto;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* Responsive base font sizes */
        @media (max-width: 1200px) {
            html {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
        }

        /* Header/Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            font-family: SFPROBOLD;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-x-logo-main {
            border-radius: 5px;
            max-width: 20%;
            height: auto;
        }

        .logo i {
            margin-right: 10px;
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-family: SFPROMED;
            transition: color 0.3s;
            position: relative;
            padding: 0.5rem 0;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/bg/bg-v2.jpg) no-repeat center center/cover;
            color: white;
            text-align: left;
            margin-top: 0;
        }

        .hero-content {
            max-width: 600px;
            width: 100%;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: SFPROBOLD;
            transition: all 0.3s;
            border: 2px solid var(--primary);
            min-width: 200px;
            text-align: center;
            font-size: 1rem;
        }

        .cta-button:hover {
            background-color: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Product Feature Banners */
        .product-features {
            padding: 4rem 5%;
            background-color: white;
        }

        .feature-banner {
            display: flex;
            align-items: stretch;
            margin: 0 auto 4rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            min-height: 400px;
            max-width: 1400px;
            width: 90%;
        }

        .feature-banner:hover {
            transform: translateY(-5px);
        }

        .feature-banner.reverse {
            flex-direction: row-reverse;
        }

        .feature-image {
            flex: 1;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            min-width: 50%;
        }

        .feature-content {
            flex: 1;
            padding: 3rem;
            background-color: var(--light);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 50%;
        }

        .feature-content h2 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        .feature-content p {
            margin-bottom: 1.5rem;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
        }

        .feature-tag {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .feature-content ul {
            margin-left: 1.5rem;
            list-style-type: disc;
        }

        .feature-content li {
            margin-bottom: 0.5rem;
            font-size: clamp(0.9rem, 1.3vw, 1rem);
        }

        /* Enhanced Gallery Styles */
        .production {
            padding: 6rem 5%;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        /* Gallery Styles */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            box-sizing: border-box;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 100%;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
        }

        .gallery-img-container {
            position: relative;
            overflow: hidden;
            flex: 1;
            width: 100%;
            aspect-ratio: 1/1;
        }

        .gallery-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-img-container img {
            transform: scale(1.05);
        }

        .gallery-caption {
            font-family: SFPROREG;
            background: var(--primary);
            color: white;
            padding: 1rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .gallery-caption h3 {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            margin: 0;
            font-weight: normal;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,0,0,0.6);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        .lightbox-fullscreen {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .lightbox-prev, .lightbox-next {
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* Team Section */
        .team {
            padding:6rem 5%;
            background-color: white;
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
            gap: 3rem;
            max-width: 2000px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .team-member {
            text-align: center;
            background-color: var(--light);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            width: 150px;
            height: 150px;
            max-width: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 0 auto 1.5rem;
            display: block;
        }

        .member-name {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .member-role {
            color: var(--accent);
            font-family: SFPROMED;
            margin-bottom: 1.3rem;
            display: block;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            color: var(--text);
            transition: color 0.3s;
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .social-links a:hover {
            color: var(--primary);
            background-color: rgba(106, 90, 205, 0.1);
        }

        /* WhatsApp CTA Section */
        .whatsapp-cta {
            padding: 4rem 5%;
            background-color: #f8f9fa;
            text-align: center;
        }

        .whatsapp-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .whatsapp-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            color: var(--text);
        }

        .whatsapp-banner {
            display: inline-flex;
            align-items: center;
            background-color: #25D366;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: SFPROBOLD;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            max-width: 100%;
            font-size: clamp(0.9rem, 2vw, 1.2rem);
        }

        .whatsapp-banner i {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-right: 1rem;
        }

        .whatsapp-banner span {
            font-size: inherit;
        }

        .whatsapp-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
            background-color: #128C7E;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .instagram-banner {
            font-family: SFPROBOLD;
            background: var(--instagram-gradient);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size: clamp(1rem, 2vw, 1.2rem);
            transition: transform 0.3s;
            text-decoration: none;
            color: white;
        }

        .instagram-banner:hover {
            transform: scale(1.02);
        }

        .instagram-banner i {
            font-size: clamp(1.5rem, 3vw, 1.8rem);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            padding: 0.5rem;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
            font-size: clamp(0.8rem, 1.5vw, 1rem);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .feature-banner, 
            .feature-banner.reverse {
                flex-direction: column;
                min-height: auto;
            }
            
            .feature-image {
                min-height: 300px;
                width: 100%;
            }
            
            .feature-content {
                padding: 2rem;
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            /* Lightbox adjustments */
            .lightbox-prev, .lightbox-next {
                font-size: 1.5rem;
                width: 40px;
                height: 40px;
            }
            
            .lightbox-fullscreen {
                bottom: 10px;
                right: 10px;
                padding: 8px 12px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.5rem 0;
            }

            .hamburger {
                display: block;
            }

            .hero {
                text-align: center;
                justify-content: center;
                padding-top: 80px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                padding: 0 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            nav {
                padding: 1rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-cta {
                padding: 3rem 5%;
            }
            
            .whatsapp-banner {
                padding: 0.8rem 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .team-members {
                grid-template-columns: 1fr;
            }
            
            .instagram-banner {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .cta-button {
                padding: 0.8rem 1.5rem;
                min-width: 160px;
            }
        }

        @media (max-width: 400px) {
            .logo {
                font-size: 1.2rem;
            }
            
            .nav-links a {
                font-size: 0.9rem;
            }
            
            .feature-banner {
                width: 95%;
            }
        }

        /* Touch device specific styles */
        .touch-device .nav-links a {
            padding: 1rem;
            font-size: 1.2rem;
        }

        .touch-device .cta-button {
            padding: 1rem 2rem;
        }

        /* Accessibility improvements */
        a:focus, button:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Prevent horizontal scrolling */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }