/* About text content - simplified version without cards */
.about-text-content {
  display: flex;
  flex-direction: column;
  margin: 20px 0 40px;
  color: #fff;
}

.about-text-section {
  margin-bottom: 20px;
  text-align: center;
}

.about-heading-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-inline {
  font-size: 24px;
  color: #fad02c;
  margin-right: 10px;
}

.about-text-section h4 {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0;
  position: relative;
  display: inline-block;
}

.about-text-section h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #fad02c;
}

.about-text-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 20px auto 0;
}

.about-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.about-separator:before {
  content: '';
  height: 1px;
  width: 100px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(250, 208, 44, 0.5),
    transparent
  );
  display: block;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .about-text-section h4 {
    font-size: 1.5rem;
  }

  .about-text-section p {
    font-size: 1rem;
  }
}
