/* about.css */

/* Başlık */
h1.text-info {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Paragraf */
.container p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #d0d7de;
  margin-bottom: 1.5rem;
}

/* Responsive düzen */
@media (max-width: 768px) {
  h1.text-info {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .container p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
