.about-me-section {
  padding: 2rem 0;
}

.about-container {
  max-width: 100%;
}

.personal-info h2 {
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.personal-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #cd5c5c, #deb887, #f5deb3);
  border-radius: 2px;
}

.info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.info-text h3 {
  font-size: 1.8 rem;
  color: #a0522d;
  margin-bottom: 1rem;
}

.info-text p {
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.details {
  background: linear-gradient(135deg, #fdf5e6, #f5f5dc);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.profile-img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.photo-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid transparent;
  background: linear-gradient(135deg, #cd5c5c, #deb887, #f5deb3);
  padding: 5px;
  transition: all 0.3s ease;
}

.photo-container:hover {
  transform: scale(1.0);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  display: block;
}

/* Responsive Design*/
@media (max-width: 768px) {
  .info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .personal-info h2 {
    font-size: 2rem;
  }

  .info-text h3 {
    font-size: 1.5rem;
  }

  .photo-container {
    width: 250px;
    height: 250px;
  }

  .detail-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .personal-info h2 {
    font-size: 1.8rem;
  }

  .photo-container {
    width: 200px;
    height: 200px;
  }
}
