
        .jep-colaboracion-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: #ffffff;
            color: #333;
            line-height: 1.7;
        }

        .jep-colaboracion-container * {
            box-sizing: border-box;
        }

        /* Título principal */
        .jep-main-title {
            text-align: center;
            color: #1e3a5f;
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 30px;
            margin-top: 20px;
        }

        /* Texto introductorio */
        .jep-intro-text {
            text-align: justify;
            margin-bottom: 30px;
            font-size: 19px;
            line-height: 1.8;
        }

        /* Caja principal con borde */
        .jep-main-box {
            background-color: #fff;
            border-style: Solid;
            border-color: rgba(20, 62, 101, 1);
            border-width: 0.3px;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .jep-box-title {
            color: #000;
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .jep-box-text {
            text-align: justify;
            font-size: 19px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* ACORDEONES ANIDADOS (dentro de la caja) - ESTILO MEJORADO */
        .jep-nested-accordion-container {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 25px 0;
            overflow: hidden;
        }

        .jep-accordion-input {
            display: none;
        }

        .jep-nested-accordion-item {
            border: none;
            border-bottom: 2px solid #D6E7ED !important;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .jep-nested-accordion-item:last-child {
            border-bottom: none;
        }

        .jep-nested-accordion-header {
            padding: 16px 24px;
            color: #02345B;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: transparent;
            margin-bottom: 0px;
        }

        .jep-nested-accordion-header:hover {
            background: #007CAE;
            position: relative;
            z-index: 5;
            color: #fff;
        }

        .jep-accordion-icon {
            font-size: 1.4rem;
            transition: transform 0.3s ease, color 0.3s ease;
            color: #1e3a5f;
            font-weight: 400;
            line-height: 1;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .jep-accordion-icon:hover{
            color: #ffffff;
        }

        .jep-nested-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
            background-color: #ffffff;
        }

        .jep-accordion-input:checked ~ .jep-nested-accordion-content {
            max-height: 600px;
            padding: 20px 24px;
            border-top: 1px solid #e0e0e0;
        }

        .jep-accordion-input:checked ~ .jep-nested-accordion-header .jep-accordion-icon {
            transform: rotate(45deg);
            color: #ffffff;
        }

        .jep-accordion-input:checked ~ .jep-nested-accordion-header {
            background: #007CAE;
            color: #fff;
        }

        .jep-accordion-text {
            font-size: 19px;
            line-height: 1.6;
            margin: 0;
        }

        /* Botón principal - CORREGIDO PARA SHAREPOINT */
        .jep-btn-primary {
            background-color: #1e3a5f;
            color: white !important;
            padding: 14px 30px;
            border: none;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            text-decoration: none !important;
        }

        .jep-btn-primary:hover {
            background-color: #2d5a8f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
            color: white !important;
            text-decoration: none !important;
        }

        /* Contenedor centrado para botones */
        .jep-btn-center {
            text-align: center;
            margin: 25px auto 0 auto;
        }

        /* Tarjetas lado a lado */
        .jep-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .jep-card {
            background-color: #fff;
            border-style: Solid;
            border-color: rgba(20, 62, 101, 1);
            border-width: 0.3px;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .jep-card:hover {
            transform:translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .jep-card-title {
            color: #000;
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .jep-card-text {
            font-size: 19px;
            line-height: 1.7;
            flex-grow: 1;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* Botón de tarjeta - CORREGIDO PARA SHAREPOINT */
        .jep-btn-card {
            background-color: #1e3a5f;
            color: white !important;
            padding: 12px 24px;
            border: none;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-align: center;
            margin-top: 8px;
            display: inline-block;
            text-decoration: none !important;
        }

        .jep-btn-card:hover {
            background-color: #2d5a8f;
            transform: translateY(-2px);
            color: white !important;
            text-decoration: none !important;
        }

        /* ACORDEONES INDEPENDIENTES (fuera de cajas) */
        .jep-independent-accordion-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 25px 0;
        }

        .jep-independent-accordion-item {
            background-color: #fff;
            border-style: Solid;
            border-color: rgba(20, 62, 101, 1);
            border-width: 0.3px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .jep-independent-accordion-item:hover {
            border-color: #1e3a5f;
            box-shadow: 0 3px 12px rgba(30, 58, 95, 0.15);
        }

        .jep-independent-accordion-header {
            padding: 18px 24px;
            color: #000;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            margin-bottom: 0px;
        }

        .jep-independent-accordion-header:hover {
            background-color: #f8f9fb;
        }

        .jep-independent-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
            background-color: #fff;
        }

        .jep-accordion-input:checked ~ .jep-independent-accordion-content {
            max-height: 1200px;
            padding: 20px 24px;
        }

        .jep-accordion-input:checked ~ .jep-independent-accordion-header .jep-accordion-icon {
            transform: rotate(45deg);
        }

        .jep-accordion-input:checked ~ .jep-independent-accordion-header {
            background-color: #e8f0f7;
        }

        /* Texto de contacto */
        .jep-contact-text {
            text-align: center;
            font-size: 19px;
            margin: 30px 0;
            line-height: 1.8;
        }

        .jep-contact-text a {
            color: #1e3a5f;
            font-weight: 600;
            text-decoration: none;
        }

        .jep-contact-text a:hover {
            text-decoration: underline;
        }

        /* Listas dentro de acordeones */
        .jep-accordion-text ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .jep-accordion-text ul li {
            margin: 8px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .jep-main-title {
                font-size: 1.8rem;
            }

            .jep-cards-grid {
                grid-template-columns: 1fr;
            }

            .jep-main-box {
                padding: 20px;
            }

            .jep-nested-accordion-header,
            .jep-independent-accordion-header {
                font-size: 0.95rem;
                padding: 15px 18px;
            }

            .jep-btn-primary {
                font-size: 0.8rem;
                padding: 12px 24px;
            }
        }