    <style>
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background: #f5f7fb;
        scroll-behavior: smooth;
      }

      :root {
        --primary-blue: #0082fe;
        --primary-red: #fa3843;
        --primary-yellow: #e5e32c;
        --primary-purple: #774aa5;
        --gray-100: #f8f9fc;
        --gray-800: #1e293b;
      }

      /* NAVBAR */
      .navbar {
        background: white;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        padding: 0.8rem 0;
        border-bottom: 2px solid rgba(0, 130, 254, 0.1);
      }

      .navbar-brand {
        font-weight: 800;
        font-size: 1.6rem;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--primary-purple)
        );
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        letter-spacing: -0.5px;
      }

      .nav-link {
        font-weight: 600;
        color: var(--gray-800);
        transition: 0.3s;
        margin: 0 0.2rem;
      }

      .nav-link:hover {
        color: var(--primary-blue);
      }

      .btn-contact {
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--primary-purple)
        );
        border: none;
        border-radius: 40px;
        padding: 0.5rem 1.5rem;
        font-weight: 600;
        color: white;
        transition: transform 0.2s;
      }

      .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 130, 254, 0.3);
        color: white;
      }

      /* HERO SECTION con LOGO */
      .hero {
        background: linear-gradient(135deg, #ffffff 0%, #f0f4fa 100%);
        padding: 3.5rem 0 3rem 0;
        border-bottom: 1px solid #e9edf2;
      }

      .logo-container {
        background: white;
        border-radius: 28px;
        padding: 1rem 2rem;
        display: inline-flex;
        align-items: center;
        gap: 1.2rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 130, 254, 0.2);
      }

      .logo-placeholder {
        width: 80px;
        height: 80px;
        background: linear-gradient(
          145deg,
          var(--primary-blue),
          var(--primary-purple)
        );
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        font-weight: bold;
      }

      .badge-activity {
        background: var(--primary-yellow);
        color: #1e293b;
        padding: 0.4rem 1rem;
        border-radius: 40px;
        font-weight: 700;
        font-size: 0.75rem;
      }

      /* CARDS para cada actividad económica (servicios) */
      .service-card {
        border: none;
        border-radius: 32px;
        transition: all 0.3s ease;
        background: white;
        box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.06);
        height: 100%;
        overflow: hidden;
        position: relative;
      }

      .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
      }

      .card-header-custom {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
        font-size: 2.2rem;
      }

      .percentage-badge {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
      }

      .progress-thin {
        height: 6px;
        border-radius: 10px;
        background-color: #eef2f6;
      }

      .service-description {
        color: #475569;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      /* TABLA EXTENDIDA (más información de actividades) */
      .section-title {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 1rem;
      }

      .table-custom {
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        background: white;
      }

      .table-custom thead {
        background: linear-gradient(90deg, var(--primary-blue), #2b5f8a);
        color: white;
      }

      .table-custom th {
        font-weight: 700;
        padding: 1.2rem 1rem;
        border: none;
        font-size: 1rem;
      }

      .table-custom td {
        padding: 1rem;
        vertical-align: middle;
        font-weight: 500;
        border-bottom: 1px solid #edf2f7;
      }

      .footer {
        background: #0f172a;
        color: #94a3b8;
        padding: 3rem 0 2rem;
        margin-top: 4rem;
      }

      .contact-section {
        background: white;
        border-radius: 32px;
        padding: 2rem;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
      }

      @media (max-width: 768px) {
        .section-title {
          font-size: 1.8rem;
        }
        .percentage-badge {
          font-size: 2rem;
        }
      }
    </style>