.shadow-board-section {
  display: flex;
  min-height: 500px; /* Adjust based on content */
  width: 100%;
}

/* Image Side */
.image-side {
  flex: 0 0 50%;
  background-image: url("../images/about.svg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* The dark blue tint on the image */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content Side */
.content-side {
  flex: 0 0 50%;
  background-color: #00679f; /* The solid blue color */
  color: white;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/* Typography */
.content-side h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.content-side h3 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: normal;
}

.content-side p {
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .shadow-board-section {
    flex-direction: column;
  }
  .image-side {
    height: 250px;
  }
}
