
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
        }

        /* Header Profesional */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 1000;
            box-shadow: 0 2px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 0.9rem;
            color: #7f8c8d;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-linksadmin {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-linksadmin a {
            text-decoration: none;
            color: white; 
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        .nav-linksadmin a:hover,
        .nav-linksadmin a:focus,
        .nav-linksadmin a.active {
            color: #3498db; 
        }

        .nav-linksadmin a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .nav-linksadmin a:hover::after,
        .nav-linksadmin a:focus::after,
        .nav-linksadmin a.active::after {
            width: 100%;
        }

        /* Hero Section Industrial */
        .hero {
            height: 100vh;
            background: url(../logos/fondo.png);
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); 
            z-index: 1;
        }

        .hero-content {
            max-width: 1000px;
            padding: 0 2rem;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            animation: slideInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 300;
            animation: slideInUp 1s ease 0.2s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            animation: slideInUp 1s ease 0.4s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            animation: slideInUp 1s ease 0.6s both;
        }

        .btn-primary {
            padding: 15px 35px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-secondary {
            padding: 15px 35px;
            background: transparent;
            color: white;
            text-decoration: none;
            border: 2px solid white;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
        }

        .btn-secondary:hover {
            background: white;
            color: #2c3e50;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Secciones principales */
        .section {
            padding: 100px 5%;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Video */
        .video-section {
            background: #f8f9fa;
            padding: 100px 5%;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            border: 1px solid #e9ecef;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .video-thumbnail {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #34495e, #2c3e50);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        .play-button {
            position: absolute;
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover .play-button {
            background: white;
            transform: scale(1.1);
        }
        .video-info {
            padding: 1.5rem;
            text-align: center;
        }

        .video-info h3 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin: 0.5rem 0;
        }

        .video-info p {
            font-size: 0.95rem;
            color: #7f8c8d;
            line-height: 1.4;
            margin: 0;
        }

        .video-category {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 4px 12px;
            font-size: 0.75rem;
            border-radius: 20px;
            margin-bottom: 0.5rem;
        }

        /* Servicios Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* tamaño mínimo de 250px */
            gap: 2rem;
            justify-items: center;
            align-items: stretch;
            margin-top: 4rem;
            padding: 1rem;
        }

        .service-card {
            position: relative;
            background-color: #C4C4C4;
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            width: 100%;
            min-width: 100px;
            padding: 2rem;
            color: #2c3e50;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            height:100%;
            min-height: 100px;
        }
        
        .hex-wrapper {
            display: inline-block;
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            background-color:rgba(0, 0, 0, 0.06);
            padding: 5px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            width: 100%;
            min-width: 110px;
            height:100%;
            min-height: 100px;
        }
       .service-card::before {
            content: "";
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            background-color: rgb(206, 206, 206);
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            z-index: -1;
            transition: background-color 0.3s ease;
        }
        .service-icon-line {
            position: absolute;
            top: 1.2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 5px;
            background-color: #3498db; 
            border-radius: 10px;
            transition: background-color 0.3s ease;
            z-index: 2;
        }
         .hex-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .service-card:hover .service-icon-line {
            background-color: #e74c3c; 
        }
        .service-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: bold;
            margin: 0;
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Empresa */
        .empresa-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .empresa-card {
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }

        .empresa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #3498db, #22a7db, #6567da);
        }

        .empresa-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(0,0,0,0.15);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .empresa-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-weight: 700;
        }

        .empresa-card p {
            color: #5d6d7e;
            line-height: 1.8;
            font-size: 1rem;
        } 

        /* Ubicación y Mapa */
        .location-section {
            color: white;
            padding: 100px 5%;
        }

        .location-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }

        .location-info h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: white;
        }

        .location-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #3498db;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .map-container {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #34495e, #2c3e50);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .map-placeholder:hover {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        .map-placeholder iframe {
            position: absolute;
            top: 2%;
            left: 1%;
            width: 98%;
            height: 96%;
            border: none;
            border-radius: 15px;
        }

        /* Redes Sociales */
        .social-section {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 100px 5%;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .social-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid #e9ecef;
        }

        .social-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .social-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .tiktok { background: linear-gradient(45deg, #ff0050, #000000); }
        .youtube { background: linear-gradient(45deg, #ff0000, #cc0000); }
        .maps { background: linear-gradient(45deg, #4285f4, #34a853); }

        /* Footer */
        footer {
            background: url('../fondo/fondo6.png') center/cover no-repeat;
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .location-container { grid-template-columns: 1fr; }
            .timeline::before { left: 30px; }
            .timeline-content { width: calc(100% - 80px); margin-left: 80px; }
            .timeline-content::before { left: -40px !important; }
        }

        /* Carousel Styles */
        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(52, 152, 219, 0.9);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: rgba(52, 152, 219, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: 10px;
        }

        .carousel-next {
            right: 10px;
        }
        .marcas-card {
            position: relative;
            background-color: #fff;
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            width: 100%;
            min-width: 300px;
            padding: 2rem;
            color: #2c3e50;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            height:100%;
            min-height: 300px;
        }
        .hex-wrappermarcas {
            display: inline-block;
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            background-color:rgba(0, 0, 0, 0.06);
            padding: 5px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            width: 100%;
            min-width: 350px;
            height:100%;
            min-height: 350px;
        }
       .marcas-card::before {
            content: "";
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            background-color: #fff;
            clip-path: polygon(20% -6%, 80% -6%, 106% 50%, 80% 106%, 20% 106%, -6% 50%);
            z-index: -1;
            transition: background-color 0.3s ease;
        }
         .hex-wrappermarcas:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .marcas-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .marcas-card h3 {
            font-size: 1.4rem;
            font-weight: bold;
            margin: 0;
        }

        .marcas-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }
        .marcas2-card {
            position: relative;
            background-color: #fff;
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            width: 100%;
            min-width: 200px;
            padding: 2rem;
            color: #2c3e50;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            height:100%;
            min-height: 200px;
        }
        .hex-wrappermarcas2 {
            display: inline-block;
            clip-path: polygon(
                50% 0%,
                100% 25%,
                100% 75%,
                50% 100%,
                0% 75%,
                0% 25%
            );
            background-color:rgba(0, 0, 0, 0.06);
            padding: 5px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            width: 100%;
            min-width: 250px;
            height:100%;
            min-height: 250px;
        }
       .marcas2-card::before {
            content: "";
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            background-color: #fff;
            clip-path: polygon(20% -6%, 80% -6%, 106% 50%, 80% 106%, 20% 106%, -6% 50%);
            z-index: -1;
            transition: background-color 0.3s ease;
        }
         .hex-wrappermarcas2:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
            /*Producto*/

        .producto-header img {
            width: 5%;
            height: 5%;
            object-fit: contain;
            background: #f8f9fa;
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            padding: 2rem;
        }
        .catalogo-card {
            min-width: 300px;
            min-height: 330px;
            text-align: center;
            background: #fff;
            border: 1px solid #ddd;
            padding: 1.5rem;
            border-radius: 8px;
            letter-spacing: 0.5px;
            line-height: 1.6; 
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .catalogo-card:hover {
        transform: translateY(-5px);
        }
        .catalogo-card h3 {
            font-size: 1.1rem;
            margin: 0.5rem 0;
        }

        .catalogo-card p {
            font-size: 0.9rem;
            color: #555;
            margin: 0.2rem 0;
        }
       .productos-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }
        .todos-productos-link {
            font-weight: bold;
            text-decoration: none;
            color: #000; 
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .circle-arrow {
            font-weight: bold;
        }


        /* YouTube embed styles */
        .youtube-embed {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .youtube-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px 10px 0 0;
        }

        /* Responsive carousel */
        @media (max-width: 768px) {
            .carousel-container {
                padding: 0 50px;
            }
            
            .brand-slide {
                min-width: 280px;
            }
            
            .brand-slide-small {
                min-width: 200px;
            }
        }

        /* Animaciones */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* formularios */
        .active>.page-link, .page-link.active{
            z-index: 3;
            color: white;
            background-color: #004c99;
            border-color: #004c99;
        }
        .btn-outline-primary {
        --bs-btn-color: #004c99;
        --bs-btn-border-color: #004c99;
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #004c99;
        --bs-btn-hover-border-color: #004c99;
        --bs-btn-focus-shadow-rgb: 13, 110, 253;
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #004c99;
        --bs-btn-active-border-color: #004c99;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #004c99;
        --bs-btn-disabled-bg: transparent;
        --bs-btn-disabled-border-color: #004c99;
        --bs-gradient: none;
        }

        #servicios {
            background-image: url("assets/fondo/fondo1.jpg"); /* tu imagen */
            background-size: cover;    /* hace que la imagen cubra todo el área */
            background-position: center; /* centra la imagen */
            background-repeat: no-repeat; /* evita que se repita */
            color: white; /* opcional, para que el texto contraste */
            padding: 60px 20px; /* espacio interior */
        }

        /* Navbar general */
        .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        background-color: #fff;
        position: relative;
        }

        .nav-links {
        display: flex;
        gap: 1rem;
        list-style: none;
        }

        .nav-links li a {
        text-decoration: none;
        color: #000;
        }

        /* Botón hamburguesa */
        .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        }

        .hamburger span {
        display: block;
        height: 4px;
        width: 100%;
        background-color: #333;
        border-radius: 2px;
        transition: 0.3s;
        }

        /* Activar hamburguesa (X) */
        .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
        opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        /* Por defecto, en desktop el menú siempre visible */
        .nav-links {
        display: flex;   /* siempre flex en desktop */
        gap: 1rem;
        list-style: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
        .nav-links {
            display: none; /* se oculta en móvil y se abre con hamburguesa */
            flex-direction: column;
            position: absolute;
            top: 60px;
            right: 0;
            background-color: #fff;
            width: 200px;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        }

        .nav-links li {
            margin: 0.5rem 0;
        }
        }
