body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #141414;
  color: #222;
  line-height: 1.6;
}
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px;
  background-color: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.accent-line {
  width: 70px;
  height: 4px;
  background-color: #1e9c94;
  border-radius: 2px;
  margin-bottom: 30px;
}

.about-text h3 {
  color: #1e9c94;
  margin-top: 25px;
  font-size: 1.3rem;
}

.about-text p {
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 1rem;
  color: #ddd;
}

.about-text strong {
  color: #1e9c94;
  font-weight: 500;
}

.about-photo {
  flex: 0 0 350px;
}

.about-photo img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .about-photo {
    width: 80%;
  }
}
