.about {
  width: 100%;
  padding: 50px 0;
}

.about h1 {
  text-align: center;
  font-weight: normal;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.about-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.about-items--item {
  width: 100%;
  max-width: 800px;
  min-height: 150px;
  padding: 1.5rem;
  background: var(--bg-gray-01);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
}

.about-items--item h3 {
  font-size: 1.5rem;
}

.about-items--item p {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: 10px;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
  
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {

}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
  .about h1 {
    padding: 0 15rem;
  }

  .about-items {
    flex-direction: row;
    justify-content: space-between;
  }
}
