.contact-columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: #2d145a;
  min-height: 400px;
}

.contact-text {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  padding: 20px;
}

.contact-text p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.contact-text hr {
  border: none;
  border-top: 2px solid #7f64c9;
  margin: 40px 0;
  width: 100%;
}

.contact-image {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .contact-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-text {
    max-width: 100%;
    justify-content: flex-start;
  }
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
}

.footer-top {
  margin-bottom: 15px;
}

.footer-top .privacy-text a {
  color: #2d145a;
  text-decoration: none;
  font-weight: 500;
  margin-right: 10px;
}

.footer-top .copyright {
  font-size: 0.95rem;
  color: #000000;
  margin-left: 10px;
}

.home-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #7f64c9, #5d3caa);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(93, 60, 170, 0.4);
}
