/* ============================================
       Contact Page — CSS
       ============================================ */

.cta-banner .row {
  display: flex;
  align-items: center;
}

.cta-banner .col-lg-6 {
  width: 50%;
}

.cta-banner h2 {
  margin-bottom: 10px;
}

.cta-banner p {
  margin-bottom: 0;
}

.cta-banner .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-banner .cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner .cta-text {
  flex: 0 0 50%;
  max-width: 50%;
}

.cta-banner .btn-cta {
  flex: 0 0 30%;
  max-width: 30%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0d2b2e;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-banner .btn-cta:hover {
  background-color: #0a2224;
  color: #fff;
}
.cta-banner p{
    max-width: 70ch;
}
/* Mobile: stack on top of each other */
@media (max-width: 768px) {
  .cta-banner .cta-text,
  .cta-banner .btn-cta {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cta-banner {
  padding: 70px 20px !important;
 }
}
/* Mobile */
@media (max-width: 767px) {
  .cta-banner .col-lg-6 {
    width: 100%;
    text-align: center;
  }

  .cta-banner .col-lg-6:first-child {
    margin-bottom: 25px;
  }
  .cta-banner {
  padding: 70px 20px !important;
 }
}