    /* Estilos base (iguales a tu sitio principal) */
    :root {
        --primary: #0a192f;
        --secondary: #64ffda;
        --accent: #ccd6f6;
        --highlight: #1e90ff;
        --dark: #020c1b;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background-color: var(--primary);
        color: var(--accent);
        overflow-x: hidden;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    @keyframes glow {
        0% { text-shadow: 0 0 5px var(--secondary); }
        50% { text-shadow: 0 0 20px var(--secondary), 0 0 30px var(--highlight); }
        100% { text-shadow: 0 0 5px var(--secondary); }
    }

   
    /* Estilos específicos para la página de Misión/Visión */
    .about-hero {
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 5%;
        padding-top: 100px;
        position: relative;
        overflow: hidden;
    }

    .about-hero-content h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, var(--accent), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .about-hero-content p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Secciones Misión, Visión y Experiencia */
    .about-section {
        padding: 5rem 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .about-section:nth-child(even) {
        background-color: var(--dark);
        flex-direction: row-reverse;
    }

    .about-content {
        width: 50%;
        z-index: 2;
    }

    .about-image {
        width: 45%;
        max-width: 500px;
        z-index: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(100, 255, 218, 0.3);
        animation: float 6s ease-in-out infinite;
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        filter: grayscale(20%) contrast(110%) brightness(90%);
        transition: all 0.5s ease;
    }

    .about-image:hover img {
        filter: grayscale(0%) contrast(120%) brightness(100%);
        transform: scale(1.03);
    }

    .section-title {
        color: var(--secondary);
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        background: var(--secondary);
        bottom: -10px;
        left: 0;
    }

    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .tech-bg {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--highlight) 0%, transparent 70%);
        opacity: 0.1;
        border-radius: 50%;
        animation: pulse 8s infinite;
        z-index: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .about-hero-content h1 {
            font-size: 3rem;
        }
        
        .about-section, .about-section:nth-child(even) {
            flex-direction: column;
        }
        
        .about-content, .about-image {
            width: 100%;
            max-width: 100%;
        }
        
        .about-image {
            margin-top: 3rem;
        }
    }

    @media (max-width: 768px) {
        .about-hero {
            height: auto;
            padding-top: 120px;
            padding-bottom: 4rem;
        }
        
        .about-hero-content h1 {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .about-hero-content h1 {
            font-size: 2rem;
        }
        
        .about-content p {
            font-size: 1rem;
        }
    }

 /* Navbar */
 nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 25, 47, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    animation: glow 4s infinite;
}

.logo h1 {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    list-style: none;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    list-style: none;
    margin-bottom: 2rem;
}

.social-links li {
    margin: 0 0.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

copyright {
    font-size: 0.9rem;
    color: rgba(204, 214, 246, 0.6);
}

/* Responsive for Navbar and Footer */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: all 0.5s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }
}