.about-section {
  background: var(--color-background);
  padding: 60px 20px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-background-light);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
  padding: 40px;
}

.about-title {
  font-size: 28px;
  color: var(--text-heading);
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.about-underline {
  display: block;
  width: 300px;
  margin: 8px auto 24px auto;
  height: 3px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-small);
  margin-top: 4px;
}

.about-display {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.8;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}