/* Banner Styles */
.banner {
  width: 100%;
  background: #0c101a; /* optional background color */
  text-align: center;
  padding: 20px 0; /* space above and below the image */
}

.banner img {
  max-width: 2000px; /* keeps it from stretching too large */
  width: 100%;       /* makes it scale down on mobile */
  height: auto;      /* keeps aspect ratio */
  display: inline-block;
  border-radius: 8px; /* optional: rounded corners */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Left = image, Right = text */
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 60px auto;
  padding: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive (mobile) layout */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr; /* Stacks vertically */
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}
