.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1rem;
}

.two-column__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.two-column__content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.two-column__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .two-column__content {
    padding-top: 1rem;
  }

  .two-column__content h2 {
    font-size: 1.5rem;
  }
}
.title-h1h2 h1 {
    font-weight: 500!important;
    color: #384c79;
}

a:hover {
  color: #384c79!important;
}