        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0885d9;
            --dark-blue: #06619e;
            --light-blue: #e6f4fc;
            --dark: #1a1a2e;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-blue);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-blue);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero-about {
            margin-top: 70px;
            height: 50vh;
            background: linear-gradient(135deg, rgba(8, 133, 217, 0.85), rgba(6, 97, 158, 0.85)),
                        url('../img/acerca.png') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-about h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        .hero-about .highlight {
            color: white;
            text-shadow: 0 0 20px rgba(255,255,255,0.5);
        }

        /* About Content */
        .about-content {
            padding: 5rem 2rem;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-intro p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
        }

        /* MVV Cards */
        .mvv-section {
            display: grid;
            gap: 4rem;
            margin-top: 3rem;
        }

        .mvv-card {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 3rem;
            align-items: center;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-blue);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .mvv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(8, 133, 217, 0.15);
        }

        .mvv-card:hover::before {
            transform: scaleY(1);
        }

        .mvv-card.reverse {
            grid-template-columns: 1fr 200px;
        }

        .mvv-icon {
            width: 200px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--light-blue), white);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .mvv-card:hover .mvv-icon {
            transform: scale(1.05) rotate(5deg);
        }

        .mvv-icon img {
            width: 150px;
            height: 150px;
            object-fit: contain;
        }

        .mvv-content h2 {
            color: var(--dark);
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .mvv-content p {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Values Section */
        .values-card {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 3rem;
            border-radius: 20px;
            margin-top: 4rem;
            box-shadow: 0 15px 40px rgba(8, 133, 217, 0.3);
        }

        .values-content {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 3rem;
            align-items: center;
        }

        .values-icon {
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .values-icon img {
            width: 150px;
            height: 150px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .values-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .values-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(10px);
        }

        .value-item::before {
            content: '✓';
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .value-item span {
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* Stats Section */
        .stats-section {
            background: var(--light-gray);
            padding: 5rem 2rem;
            margin-top: 5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(8, 133, 217, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--gray);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            padding: 5rem 2rem;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: white;
            color: var(--primary-blue);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            color: #ffc107;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .mvv-card,
            .mvv-card.reverse {
                grid-template-columns: 1fr;
                text-align: center;
                justify-items: center;
            }

            .values-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .values-list {
                grid-template-columns: 1fr;
            }

            .value-item:hover {
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.3s ease;
                box-shadow: -5px 0 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .hero-about h1 {
                font-size: 2.5rem;
            }

            .mvv-icon,
            .values-icon {
                width: 150px;
                height: 150px;
            }

            .mvv-icon img,
            .values-icon img {
                width: 100px;
                height: 100px;
            }

            .mvv-content h2,
            .values-text h2 {
                font-size: 1.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }