    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #ffffff;
      color: #333;
    }

    nav {
      background: #f7f7f7;
      padding: 1rem;
      text-align: center;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      font-weight: bold;
      color: #00b39b;
    }

    nav a:hover {
      text-decoration: underline;
    }

    header {
      background: #b6e8e2;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 2rem;
    }

    header img.hero-img {
      max-width: 300px;
      border-radius: 10px;
    }

    .hero-text {
      max-width: 600px;
    }

    .hero-text h1 {
      font-size: 2em;
      margin-bottom: 0.5em;
    }

    .hero-text p {
      font-size: 1.1em;
    }

    .btn {
      display: inline-block;
      margin-top: 1em;
      background: rgba(0, 179, 155, 0.9);
      color: white;
      padding: 0.8em 1.2em;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
    }

    section {
      padding: 2rem;
      max-width: 960px;
      margin: auto;
      background: #f7f7f7;
      border-radius: 12px;
      margin-bottom: 2rem;
    }

    section h2 {
      color: #00b39b;
      font-size: 1.5em;
    }

    .two-col {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 1rem;
    }

    .two-col > div {
      flex: 1;
      min-width: 250px;
    }

    ul {
      padding-left: 1.2rem;
    }

    ul li {
      margin-bottom: 10px; /* Ajusta este valor para cambiar el espacio entre elementos */
    }

    ul li::marker {
      color: #EEBAAC;
    }

    .testimonial {
      font-style: italic;
      margin-top: 1rem;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 0.5em;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    form label {
      font-weight: bold;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        text-align: center;
      }

      header img.hero-img {
        margin-top: 1em;
      }
    }

    .img-circular {
      border-radius: 50%;
      width: 200px;
      height: 200px;
      object-fit: cover;
      float: left;
      margin-right: 20px;
      margin-bottom: 10px;
    }

    footer {
      display: flex;
      justify-content: center;    /* Centra el contenido horizontalmente */
      align-items: center;        /* Centra el contenido verticalmente */
      padding: 20px;
      background-color: #ffffff;     /* Color de fondo oscuro */
      color: #333;               /* Color de texto */
      text-align: center;
      flex-wrap: wrap;            /* Permite que el contenido se adapte si es necesario */
    }

    .footer-content {
      width: 100%;
      max-width: 1200px;          /* Ancho máximo para pantallas grandes */
      padding: 0 20px;            /* Espaciado lateral para dispositivos móviles */
    }