    /* General Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Lato', sans-serif !important;
    }

    body {
        font-family: 'Lato', sans-serif !important;
        background-color: #f9f9f9;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    /* Header */
    header {
        background-color: #333333;
        color: #fff;
        padding: 10px 0;
    }

    /* Navbar styling */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px 20px;
    }

    .navbar .logo img {
        height: 80px;
    }

    /* Estilo base para el menú */
    nav ul {
        display: flex;
        list-style-type: none;
        padding: 0;
        position: relative;
        justify-content: center; /* Centrado de los elementos */
        align-items: left;
        z-index: 1000; /* Asegura que el menú esté en su lugar normal en pantallas grandes */
        margin-top: 30px;

    }
    nav ul.nav-active {
        display: flex;
    }

    nav ul li {
        margin-left: 20px;
        margin-right: 20px;
    }

    nav ul li a {
        color: #fff;
        font-size: 20px;
        font-weight: 300;
        text-decoration: none;
        margin-top: 5px;
    }

    /* Estilo del botón de hamburguesa */
    .menu-toggle {
        display: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
        height: 20px;
        z-index: 2000;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: #fff;
    }

    /* Hero Section */
    .hero {
        position: relative;
        padding: 100px 20px;
        text-align: center;
        color: black;
        overflow: hidden; /* Asegura que la imagen de fondo no sobresalga */
    }

    .hero .background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        filter: blur(5px); /* Aplica el desenfoque solo a la imagen */
        z-index: -1; /* Coloca la capa de fondo detrás del contenido */
    }

    .card .background2 {

            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            filter: blur(5px); /* Aplica el desenfoque solo a la imagen */
            z-index: -1; /* Coloca la capa de fondo detrás del contenido */
    }

    .hero-content {
        position: relative; /* Permite que el contenido se quede encima de la capa de fondo */
        z-index: 1; /* Asegura que el contenido esté por encima de la imagen */
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 10px 20px;
        background-color: #00bcd4;
        color: white;
        font-size: 16px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .cta-button:hover {
        background-color: #0288d1;
    }


    .cta-button {
        padding: 10px 20px;
        background-color: #00bcd4;
        color: white;
        font-size: 16px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .cta-button:hover {
        background-color: #0288d1;
    }

    /* Features Section */
    .features {
        background-color: #ffffff;
        padding: 50px 20px;
        text-align: center;
    }

    .features h2 {
        font-size: 28px;
        margin-bottom: 40px;
        color: #333;
    }

    .feature-cards {
        display: flex;
        gap: 20px;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .card {
        position: relative;
        width: 250px;
        height: 350px;
        background-size: cover;
        background-position: center;
        color: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        display: flex;
        align-items: flex-end; /* Para alinear el texto en la parte inferior */
        justify-content: center;
        text-align: center;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.096); /* Oscurece la imagen para que el texto sea visible */
        z-index: 0;
    }

    .card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 0;
    }

    .card-content {
        position: relative;
        z-index: 1; /* Asegura que el texto esté por encima */
        padding: 15px;
        width: 100%;
        color: white;
    }

    .card-content img {
        width: 100px;
        height: auto;
        margin-bottom: 150px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }


    .card h3 {
        position: absolute;
        bottom: 50px;
        left: 20px;
        margin: 0;
        color: white;
    }

    /* Footer */
    footer {
        background-color: #343a40;
        color: #fff;
        padding: 20px 0;
        text-align: center;
    }

    .info-section {
        background: #f8f9fa;
        padding: 50px 0;
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
    }

    .info-text {
        flex: 1;
        padding: 20px;
    }

    .info-text h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 15px;
    }

    .info-text p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

    .info-image {
        flex: 1;
        text-align: center;
    }

    .info-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .partners-section {
        background: #fff;
        padding: 50px 0;
        text-align: center;
    }

    .partners-section h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 30px;
    }

    .partners-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .partners-logos img {
        width: 150px;
        height: 100px;
        object-fit: contain;
        filter: grayscale(50%);
        transition: filter 0.3s ease-in-out;
    }

    .partners-logos img:hover {
        filter: grayscale(0%);
    }

    .faq-section {
        background: #f8f9fa;
        padding: 50px 20px;
        text-align: center;
    }

    .faq-section h2 {
        font-size: 28px;
        color: #333;
        margin-bottom: 30px;
    }

    .faq {
        max-width: 700px;
        margin: 0 auto;
        text-align: left;
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
    }

    .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: bold;
        padding: 10px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question .arrow {
        transition: transform 0.3s ease;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 150px; /* Ajustar según la cantidad de texto */
    }

    .faq-item.active .arrow {
        transform: rotate(180deg);
    }



    @media (max-width: 768px) {
        .partners-logos {
            justify-content: space-evenly;
        }

        .partners-logos img {
            width: 90px;
            height: 60px;
        }
    }

    @media (max-width: 768px) {
        .feature-cards {
            flex-direction: column;
            
            width: 100%;
        }
    
        .card {
            width: 100%;
            padding: 110px;
        }
        .features {
            background-color: #ffffff;
            padding: 50px 0px;
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
            flex-direction: column;
            background: #343a40;
            position: absolute;
            width: 100%;
            left: 0;
            top: 60px;
            padding: 10px;
        }

        nav ul.active {
            display: flex;
        }

        .menu-toggle {
            display: block;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%); /* Ocultar el menú */
            transition: transform 0.3s; /* Agregar transición */
            z-index: 1000; /* Asegurar que el menú esté por encima de todo */
        }

        nav ul li {
            margin: 20px 0;
        }

        nav ul li a {
            font-size: 24px;
            color: #fff;
        }

        .menu-toggle {
            display: flex;
        }

        /* Estilo cuando el menú está activo */
        nav ul.nav-active {
            transform: translateY(0);
        }
        .menu-toggle.open .bar:nth-child(1) {
            transform: rotate(45deg);
            position: relative;
            top: 8px;
        }

        .menu-toggle.open .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open .bar:nth-child(3) {
            transform: rotate(-45deg);
            position: relative;
            top: -8px;
        }

        nav ul li {
            margin: 20px 0;
        }

        nav ul li a {
            font-size: 24px;
            color: #fff;
            text-decoration: none;
            font-weight: 300;
        }
    }

