.quality-section {
  font-family: "Montserrat", sans-serif;
  padding: 40px 20px;
}

.standards-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: inherit;
  font-size: 3.4em;
  background-image: linear-gradient(
    90deg, 
    rgba(196, 60, 117, 1) 47%, 
    rgba(26, 63, 122, 1) 78%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
}

.standard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease-in-out;
}

.standard-item:hover {
  transform: translateY(-10px);
}

.standard-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
}

.standard-item p {
  font-size: 1.5rem;
  color: #000000;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1023px) {
  .section-title {
    font-size: 3em;
  }
}

/* Ajustes de tipografía para dispositivos más pequeños */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
  }

  .standard-item p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2em;
  }

  .standard-item p {
    font-size: 1.2rem;
  }
}