   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f5f7ff;
            color: #333;
            overflow-x: hidden;
        }

        .section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .section-blue {
            background-color: #ebf3ff;
            position: relative;
        }

        .section-white {
            background-color: #ffffff;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* Animaciones */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Sección de títulos */
        .section-header {
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #2a2a5a;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            border-radius: 2px;
        }

        .section-description {
            font-size: 1.125rem;
            color: #555;
            margin-top: 1.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Cards de contenido */
        .content-card {
            background-color: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2a2a5a;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e6f0ff 0%, #d4e4ff 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .card-icon i {
            color: #0066ff;
            font-size: 1.25rem;
        }

        .card-content {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
        }

        .card-content p {
            margin-bottom: 1rem;
        }

        .card-content p:last-child {
            margin-bottom: 0;
        }

        /* Listas estilizadas */
        .styled-list {
            list-style: none;
            padding: 0;
        }

        .styled-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            color: #555;
            line-height: 1.6;
        }

        .styled-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 8px;
            background: linear-gradient(45deg, #0066ff, #00c6ff);
            border-radius: 50%;
        }

        /* Sección de valores */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .value-item {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            transition: left 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.15);
        }

        .value-item:hover::before {
            left: 0;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e6f0ff 0%, #d4e4ff 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 1rem;
        }

        .value-icon i {
            color: #0066ff;
            font-size: 1.5rem;
        }

        .value-title {
            font-weight: 600;
            color: #2a2a5a;
            font-size: 1rem;
        }

        /* Sección destacada */
        .highlight-section {
            background: linear-gradient(135deg, #0066ff 0%, #00c6ff 100%);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .highlight-content {
            position: relative;
            z-index: 1;
        }

        .highlight-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .highlight-text {
            font-size: 1.125rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #f8faff 0%, #e6f0ff 100%);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 3rem;
        }

        .cta-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: #2a2a5a;
            margin-bottom: 1rem;
        }

        .cta-text {
            color: #555;
            font-size: 1.125rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: linear-gradient(90deg, #0066ff, #00c6ff);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
        }

        .cta-button:hover {
            background: linear-gradient(90deg, #0052cc, #00a3d9);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 102, 255, 0.3);
        }

        .cta-button.secondary {
            background: transparent;
            color: #0066ff;
            border: 2px solid #0066ff;
            box-shadow: none;
        }

        .cta-button.secondary:hover {
            background: #0066ff;
            color: white;
        }

        /* Decoraciones */
        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
        }

        .decoration-circle-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
            top: 5%;
            left: -100px;
        }

        .decoration-circle-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 198, 255, 0.03) 100%);
            bottom: 10%;
            right: -150px;
        }

        .decoration-circle-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, rgba(0, 102, 255, 0.04) 0%, rgba(0, 198, 255, 0.04) 100%);
            top: 50%;
            right: -75px;
        }

        /* Media queries */
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .section {
                padding: 3rem 0;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .content-card {
                padding: 1.5rem;
            }

            .card-title {
                font-size: 1.25rem;
                flex-direction: column;
                text-align: center;
            }

            .card-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .values-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }