body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}

.about-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.about-text {
  flex: 2;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 1rem;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  object-fit: cover;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    justify-content: center;
    margin-bottom: 15px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }
}
