.about-page.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: #333;
  line-height: 1.75;
}

.about-page h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: #2a7ae4;
  margin-bottom: 20px;
  text-align: center;
}

.about-page h2 {
  font-size: 1.5em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1a1a1a;
  border-left: 4px solid #2a7ae4;
  padding-left: 10px;
}

.about-page p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.about-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.about-page ul li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.about-page ul li::before {
  content: "✓";
  color: #2a7ae4;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

.about-page blockquote {
  font-style: italic;
  color: #555;
  background: #f4f8fb;
  border-left: 5px solid #2a7ae4;
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .about-page.container {
    padding: 20px;
    margin: 30px auto;
  }

  .about-page h1 {
    font-size: 1.7em;
  }

  .about-page h2 {
    font-size: 1.3em;
  }
}
