p {
  max-width:600px;
  line-height:1.6;
}

.about-container {
  display: flex;
  justify-content: center;
}

.about-card {
  max-width: 820px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.about-card h1 {
  text-align: center;
  margin-bottom: 16px;
}

.about-intro {
  text-align: center;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 100%; 
  padding: 0 16px;  
  box-sizing: border-box;
}

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

.about-section h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.about-section p {
  line-height: 1.7;
}

.about-section ul {
  padding-left: 18px;
}

.about-section li {
  margin-bottom: 8px;
}

.about-footer {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 28px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.75;
}

.about-footer p,
.about-footer span {
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .about-card {
    padding: 24px;
  }

  .about-section h2 {
    font-size: 1.15rem;
  }
}


