        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .directorios-section {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            flex: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: white;
            position: relative;
        }

        .section-title h1 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #fdbb2d, #b21f1f);
            margin: 0 auto;
            border-radius: 2px;
        }

        .volver-atras {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0 0 15px 0;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .volver-atras:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateX(-5px);
        }

        .directorios-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .directorio-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .directorio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .card-header {
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 2px solid #1a2a6c;
            padding-bottom: 15px;
        }

        .periodo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 5px;
        }

        .estado {
            display: inline-block;
            background: #1a2a6c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .estado.activo {
            background: linear-gradient(to right, #00b09b, #96c93d);
        }

        .cargo-lista {
            list-style: none;
            flex-grow: 1;
        }

        .cargo-item {
            margin-bottom: 18px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e0e0;
        }

        .cargo-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .cargo-nombre {
            font-weight: 600;
            color: #1a2a6c;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .persona-nombre {
            font-size: 1rem;
            color: #333;
            font-weight: 500;
        }

        .titulo-academico {
            font-size: 0.85rem;
            color: #b21f1f;
            font-style: italic;
            margin-top: 3px;
        }

        footer {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            text-align: center;
            padding: 25px 20px;
            margin-top: 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
        }

        .footer-links a {
            color: #fdbb2d;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .directorios-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .directorios-container {
                grid-template-columns: 1fr;
            }
            
            .section-title h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .directorios-section {
                padding: 10px;
            }
            
            .section-title h1 {
                font-size: 1.8rem;
            }
            
            .directorio-card {
                padding: 20px;
            }
        }