.about-section {
    background-color: var(--container-background);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
}

.about-clean {
  background-color: #fff;
  padding: 60px 20px;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.about-section {
  margin-bottom: 50px;
}

.about-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}

.about-section p {
  margin: 8px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-column h2 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}

.about-column p {
  margin: 6px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.about-column a {
  color: #007bff;
  text-decoration: none;
}

.about-column a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-title {
    font-size: 26px;
  }
}
