#about {
  padding: 6rem 2rem;
  background: #000;
  color: #fff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.about-text p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
}

.about-text .highlight {
  color: #fff;
  font-weight: bold;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Mobile-friendly styles */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column; /* Stack items vertically */
    text-align: center;
    gap: 2rem; /* Reduced gap for mobile */
  }

  .about-text h2 {
    font-size: 2rem; /* Slightly smaller heading */
  }

  .about-text p {
    font-size: 1rem; /* Adjust font size for better readability */
  }

  .about-image img {
    max-width: 80%; /* Prevent image from being too large on smaller screens */
  }
}
