<style>
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; }
    .formbold-main-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
    }
    .formbold-form-wrapper {
      margin: 0 auto;
      max-width: 550px;
      width: 100%;
      background: white;
    }
    .formbold-event-wrapper span {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 2.5px;
      color: #6a64f1;
      display: inline-block;
      margin-bottom: 12px;
    }
    .formbold-event-wrapper h3 {
      font-weight: 700;
      font-size: 28px;
      line-height: 34px;
      color: #07074d;
      width: 100%;
      margin-bottom: 10px;
    }
    .formbold-event-wrapper img {
      width: 100%;
      border-radius: 10px;
      margin: 20px 0;
    }
    .formbold-event-wrapper h4 {
      font-weight: 600;
      font-size: 20px;
      line-height: 24px;
      color: #07074d;
      margin: 25px 0 15px;
      border-bottom: 2px solid #4CAF50;
      display: inline-block;
    }
    .formbold-event-wrapper p {
      font-size: 16px;
      line-height: 24px;
      color: #536387;
    }
    .formbold-event-details {
      background: #fafafa;
      border: 1px solid #dde3ec;
      border-radius: 5px;
      margin: 25px 0 30px;
    }
    .formbold-event-details h5 {
      color: #07074d;
      font-weight: 600;
      font-size: 18px;
      line-height: 24px;
      padding: 15px 25px;
    }
    .formbold-event-details ul {
      border-top: 1px solid #edeef2;
      padding: 25px;
      margin: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      row-gap: 14px;
    }
    .formbold-event-details ul li {
      color: #536387;
      font-size: 16px;
      line-height: 24px;
      width: 50%;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .formbold-form-title {
      color: #07074d;
      font-weight: 600;
      font-size: 28px;
      line-height: 35px;
      width: 100%;
      margin-bottom: 30px;
    }
    .formbold-input-flex {
      display: flex;
      gap: 20px;
      margin-bottom: 15px;
    }
    .formbold-input-flex > div {
      width: 50%;
    }
    .formbold-form-input {
      text-align: center;
      width: 100%;
      padding: 13px 22px;
      border-radius: 5px;
      border: 1px solid #dde3ec;
      background: #ffffff;
      font-weight: 500;
      font-size: 16px;
      color: #536387;
      outline: none;
      resize: none;
    }
    .formbold-form-input.hombre:focus {
      border-color: #28a745;
      box-shadow: 0px 3px 8px rgba(40, 167, 69, 0.3);
    }
    .formbold-form-input.mujer:focus {
      border-color: #e83e8c;
      box-shadow: 0px 3px 8px rgba(232, 62, 140, 0.3);
    }
    .formbold-form-label {
      color: #536387;
      font-size: 14px;
      line-height: 24px;
      display: block;
      margin-bottom: 10px;
    }
    .formbold-policy {
      font-size: 14px;
      line-height: 24px;
      color: #536387;
      width: 100%;
      margin-top: 22px;
    }
    .formbold-policy a {
      color: #6a64f1;
    }
    .formbold-btn {
      text-align: center;
      width: 100%;
      font-size: 16px;
      border-radius: 5px;
      padding: 14px 25px;
      border: none;
      font-weight: 500;
      background-color: #6a64f1;
      color: white;
      cursor: pointer;
      margin-top: 25px;
    }
    .formbold-btn:hover {
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
    }
    @media (max-width: 600px) {
      .formbold-input-flex {
        flex-direction: column;
      }
      .formbold-input-flex > div {
        width: 100%;
      }
      .formbold-form-title,
      .formbold-policy {
        width: 100%;
        text-align: center;
      }
      .formbold-event-details ul {
        flex-direction: column;
      }
      .formbold-event-details ul li {
        width: 100%;
        margin-bottom: 10px;
      }
    }
     .contenedor-circular {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* espacio entre imágenes */
    margin-top: 20px;
    flex-wrap: wrap; /* por si en pantallas pequeñas necesitan saltar de línea */
  }

  .imagen-circular {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #6a64f1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .imagen-con-texto {
    text-align: center;
  }

  .imagen-con-texto p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
  }
   .footer-desarrollador {
    margin-top: 40px;
    padding: 20px 0;
    background-color: #f4f4f4;
    text-align: center;
    color: #555;
    font-size: 14px;
    border-top: 1px solid #ddd;
  }
  </style>