.section-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}
.section-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.containerCtaSection {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-image .cta-section {
  border-radius: 0px;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 40px auto;
  max-width: 800px;
  line-height: 1.3;
  text-align: center;
}
.cta-section .btn {
  display: inline-block;
  background: #e91e63;
  color: #ffffff;
  padding: 15px 45px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}
.cta-section .btn:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
  color: #ffffff;
}
.cta-buttons-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-section .row {
  text-align: center;
}
.cta-section .hc-cmp-space {
  display: none;
}
@media (max-width: 768px) {
  .section-image {
    padding: 60px 20px;
    min-height: 350px;
  }
  .cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .cta-section .btn {
    padding: 12px 35px;
    font-size: 0.9rem;
  }
  .cta-buttons-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
