.text-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;

}

.text-col h4 {
  margin-bottom: 10px;
  color: #361313;
}

.text-col li ,
.text-col a {
  color: #192a42;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.text-col a:hover {
  color: #05a18d;
}

/* Bottom copyright */
.text-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #aaaaaa;
}

/* Mobile view */
@media (max-width: 768px) {
  .text-container {
    grid-template-columns: 1fr;
  }
}
