    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0d3d66 0%, #1a5490 50%, #2c7ab8 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1600px;
            margin: 0 auto;
        }

        header {
            background: white;
            padding: 15px 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 4px solid #1a5490;
        }

        .logo-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            width: 100%;
        }

        .logo {
            width: 380px;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .header-text h1 {
            color: #1a5490;
            font-size: 32px;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .header-text p {
            color: #666;
            font-size: 15px;
            font-weight: 500;
        }

        .user-info {
            text-align: right;
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }

            .user-info p {
                color: #666;
                font-size: 14px;
                margin: 3px 0;
            }

        .hero-banner {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
            padding: 2px 40px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            margin-bottom: 35px;
            border-left: 6px solid #4CAF50;
        }

            .hero-banner h2 {
                color: #1a5490;
                font-size: 28px;
                margin-bottom: 12px;
                font-weight: 700;
            }

            .hero-banner p {
                color: #555;
                font-size: 16px;
                line-height: 1.7;
            }

        .info-note {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 18px 25px;
            border-radius: 10px;
            margin-bottom: 35px;
            color: #856404;
            font-size: 14px;
            line-height: 1.6;
            box-shadow: 0 3px 10px rgba(255, 193, 7, 0.2);
        }

            .info-note strong {
                display: block;
                margin-bottom: 5px;
            }

        .section-title {
            color: white;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-left: 15px;
            border-left: 5px solid #4CAF50;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Sistema de Tabs */
        .tabs-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            margin-bottom: 35px;
        }

        .tabs-header {
            display: flex;
            background: #f8f9fa;
            border-bottom: 2px solid #e9ecef;
            overflow-x: auto;
        }

        .tab-button {
            flex: 1;
            min-width: 200px;
            padding: 20px 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            position: relative;
        }

            .tab-button:hover {
                background: rgba(26, 84, 144, 0.05);
                color: #1a5490;
            }

            .tab-button.active {
                color: #1a5490;
                background: white;
                border-bottom-color: #1a5490;
            }

        .tab-content {
            display: none;
            padding: 35px;
        }

            .tab-content.active {
                display: block;
                animation: fadeIn 0.4s ease;
            }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Cards de servicios */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 100%;
                background: linear-gradient(180deg, #1a5490, #2c7ab8);
                transform: scaleY(0);
                transition: transform 0.3s ease;
            }

            .service-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
                border-color: #1a5490;
            }

                .service-card:hover::before {
                    transform: scaleY(1);
                }

        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 18px;
        }

        .service-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }

        .primary .service-icon {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
        }

        .secondary .service-icon {
            background: linear-gradient(135deg, #1a5490, #2c7ab8);
        }

        .info .service-icon {
            background: linear-gradient(135deg, #00BCD4, #26C6DA);
        }

        .warning .service-icon {
            background: linear-gradient(135deg, #FF9800, #FFB74D);
        }

        .success .service-icon {
            background: linear-gradient(135deg, #8BC34A, #AED581);
        }

        .service-title {
            flex: 1;
        }

            .service-title h3 {
                color: #1a5490;
                font-size: 18px;
                margin-bottom: 3px;
                font-weight: 700;
            }

            .service-title .badge {
                display: inline-block;
                padding: 3px 10px;
                background: #e3f2fd;
                color: #1976d2;
                font-size: 11px;
                border-radius: 12px;
                font-weight: 600;
                text-transform: uppercase;
            }

        .service-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 20px;
        }

            .service-features li {
                color: #555;
                font-size: 13px;
                padding: 6px 0;
                padding-left: 22px;
                position: relative;
            }

                .service-features li::before {
                    content: '✓';
                    position: absolute;
                    left: 0;
                    color: #4CAF50;
                    font-weight: bold;
                }

        .btn {
            display: block;
            width: 100%;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
            box-shadow: 0 3px 12px rgba(76, 175, 80, 0.3);
        }

            .btn-primary:hover {
                background: linear-gradient(135deg, #45a049, #5cb860);
                box-shadow: 0 5px 18px rgba(76, 175, 80, 0.4);
                transform: translateY(-2px);
            }

        .btn-secondary {
            background: linear-gradient(135deg, #1a5490, #2c7ab8);
            color: white;
            box-shadow: 0 3px 12px rgba(26, 84, 144, 0.3);
        }

            .btn-secondary:hover {
                background: linear-gradient(135deg, #164477, #2569a0);
                box-shadow: 0 5px 18px rgba(26, 84, 144, 0.4);
                transform: translateY(-2px);
            }

        .btn-info {
            background: linear-gradient(135deg, #00BCD4, #26C6DA);
            color: white;
            box-shadow: 0 3px 12px rgba(0, 188, 212, 0.3);
        }

            .btn-info:hover {
                background: linear-gradient(135deg, #00ACC1, #00BCD4);
                box-shadow: 0 5px 18px rgba(0, 188, 212, 0.4);
                transform: translateY(-2px);
            }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 35px;
        }

        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

            .stat-card:hover {
                transform: translateY(-5px);
            }

        .stat-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #1a5490;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        footer {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            text-align: center;
            color: #666;
            font-size: 14px;
        }

            footer p {
                margin: 5px 0;
            }

        /* Accesos Rápidos */
        .quick-access {
            background: white;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            margin-bottom: 35px;
        }

            .quick-access h3 {
                color: #1a5490;
                font-size: 22px;
                margin-bottom: 25px;
                font-weight: 700;
                display: flex;
                align-items: center;
                gap: 12px;
            }

        .quick-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
        }

        .quick-link {
            padding: 18px 22px;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 10px;
            text-align: center;
            text-decoration: none;
            color: #1a5490;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 15px;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

            .quick-link:hover {
                background: linear-gradient(135deg, #1a5490, #2c7ab8);
                color: white;
                transform: translateY(-3px);
                border-color: #1a5490;
                box-shadow: 0 5px 20px rgba(26, 84, 144, 0.3);
            }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            header {
                flex-direction: column;
                text-align: center;
            }

            .user-info {
                margin-top: 15px;
                text-align: center;
            }

            .tabs-header {
                flex-direction: column;
            }

            .tab-button {
                min-width: 100%;
            }
        }
    </style>