      body {
        font-family: 'Segoe UI', sans-serif;
      }

      h2 {
        font-weight: 600;
      }

      .accordion-button {
        font-weight: 500;
      }

      .accordion-button {
        background-color: #f5f5f5;
        color: #333;
        font-weight: 500;
        transition: background-color 0.3s, color 0.3s;
      }

      .accordion-button:not(.collapsed) {
        background-color: #e0e0e0;
        /* cuando está abierto */
        color: #222;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
      }

      .accordion-button:focus {
        border-color: #7b1fa2;
        /* color granate */
        box-shadow: 0 0 0 0.25rem rgba(123, 31, 162, 0.25);
      }

      .accordion-button::after {
        filter: brightness(0.6);
      }

      .accordion-item {
        border: 1px solid #ddd;
        border-radius: 0.375rem;
        overflow: hidden;
        margin-bottom: 1rem;
      }

      .card-img-top {
        padding: 20px;
        height: 100px;
      }

      .card-body {
        text-align: center;
      }

      .card {
        border: none;
      }

      .separador {
        background-color: #e9dcbe;
        height: 10px;
        width: 100%;
      }

      * {
        box-sizing: border-box;
      }

      /* Eliminar márgenes que puedan generar scroll */
      html,
      body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      /* Estilo del iframe */
      iframe {
        display: block;
        width: 100%;
        border: none;
        max-width: 100%;
      }