/*   About */
  /* Imagen con tamaño fijo solo en pantallas grandes */
    @media (min-width: 1024px) {
      .custom-img {
        width: 554px;
        height: 406px;
        object-fit: cover; /* mantiene la proporción */
      }

   /* Títulos (25px) */
    .custom-title {
      font-size: 25px;
      line-height: 1.3;
    }

    /* Descripciones (15px) */
    .custom-desc {
      font-size: 15px;
      line-height: 1.6;
    }

    }


  /* Ajustes para móviles */
  @media (max-width: 768px) {
    .why-title {
      font-size: 1.95rem; /* más pequeño en móvil */
      text-align: center; 
    }

    .why-text {
      font-size: 1.35rem; /* sube un poco en móviles */
      font-weight: 700;
    }
  }