  body,
  body * {
    font-family: 'Ubuntu', sans-serif !important;
  }


.text-spanish{
  font-size: 18px;
}

.who-are-we-container {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 15px; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 20px;
  margin-top: 25px;
}

.who-are-we-text {
  flex: 1; 
}

.who-are-we-text h2 {
  font-size: 3em;
  color: #333;
  margin-bottom: 30px;
}

.language-buttons button {
  padding: 15px 30px;
  font-size: 1.2em
  ;
  margin-right: 15px;
  border: none;
  background-color: #51AD32;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.language-buttons{
  margin-top: 15px;
}

.language-buttons button:last-child {
  background-color: #51AD32;
}

.who-are-we-image {
  flex: 1; 
  text-align: right; 
}

.who-are-we-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px; 
}

.who-are-we-image-mobile {
  display: none;
}

.who-are-we-image-desktop {
  flex: 1;
  text-align: right;
}

.who-are-we-image-desktop img,
.who-are-we-image-mobile img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .who-are-we-container {
    flex-direction: column;
  }

  .who-are-we-image-mobile {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  .who-are-we-image-desktop {
    display: none;
  }

  .text-spanish{
    font-size: 15px;
}

}
