.about-me {
  padding: 80px 20px;
  background: linear-gradient(135deg, #163216, #c2c2c2);
}

.about-me-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.about-me-content {
  flex: 1 1 50%;
}

.about-me-content h2 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.about-me-content h2 span {
  color: #6ee7b7;
}

.about-me-content .subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #cacaca;
  margin-bottom: 20px;
}

.about-me-content .description {
  font-size: 18px;
  line-height: 1.7;
  color: #cacaca;
  margin-bottom: 30px;
}

.about-me-photo {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-me-photo img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-position: 40% 50%;
}

@media (max-width: 991px) {
  .about-me-container {
    gap: 40px;
  }

  .about-me-photo {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-me-photo img {
    width: 220px;
    height: 220px;
  }

  .about-me-content .subtitle {
    font-size: 18px;
  }

  .about-me-content .description {
    font-size: 16px;
  }
}
