.about {
  padding: 80px 10%;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image img {
  width: 400px;
  border-radius: 10px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-btn {
  padding: 12px 24px;
  background: #151A4D;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}