.about-container {
  display: flex;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
  /* min-height: 5vh; */
}

.about-image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.about-content {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background-color: #fff; */
}

.about-content h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #1b1b1b;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 50px;
  /* height: 3px; */
  background-color: #7b1337;
  margin: 10px 0;
}

.about-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-btn {
  background: radial-gradient(circle, #a0003d, #45001e);
  padding: 0.8rem 2rem;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s;
  border-radius: 10px;
}
.about-btn a {
  color: #fff;
}

.about-btn:hover {
  background: radial-gradient(circle, #45001e, #a0003d);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-content {
    padding: 2rem;
    text-align: center;
  }

  .about-content h2::after {
    margin: 10px auto;
  }

  .about-btn {
    margin: 0 auto;
  }
}
