.about-section {
  background-color: var(--secondary-color);
  padding: 10px 0;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
}

.vision-mission {
  background-color: var(--secondary-color);
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.vm{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.vm-block {
  flex: 1;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  min-width: 250px;
  min-height: 300px;
}

.vm-block img {
  width: 80px;
  margin-bottom: 1rem;
}

.core-values {
  background-color: var(--secondary-color);
  padding: 3rem 0;
}

.value{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: start;
justify-content: center;
gap: 20px;
}

.value-item{
flex: 1;
min-width: 300px;
}

.value-item img{
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
  

.values-list {
  list-style-type: none;
  padding-left: 0;
}

.values-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: "⭐";
  position: absolute;
  left: 0;
  color: var(cta-color);
}