.about-facts {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.fact {
  min-width: 250px;
  flex: 1;
  padding: 60px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Colors for each column */
.fact1 {
  background-color: #003552; /* dark navy */
}

.fact2 {
  background-color: #ffffff; /* white */
  color: #003552; /* dark text */
}

.fact3 {
  background-color: #00a5ff; /* bright blue */
  color: #003552; /* dark text for contrast */
}

/* Icon styling */
.fact img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Title */
.fact h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Paragraph */
.fact p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 300px;
}
