.col-md-4.column div img {
   border-radius: 12px !important;
}
.cta-section {
  max-width: 768px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
}

.cta-content {
  margin-bottom: 32px;
}

.cta-accent-line {
  width: 64px;
  height: 4px;
  background-color: #000;
  margin: 0 auto 16px;
}

.cta-title {
    font-size: 48px !important;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-title-highlight {
  background: #EE7603;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gallery-section {
    text-align:center;
}

.gallery-section p.cta-description {
    margin-bottom: 0px;
}
.cta-description {
  font-size: 18px !important;
  color: #7c8186;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-button {
    display: inline-block;
    height: 44px;
    margin-bottom: 0;
    padding: 0 20px;
    font: 600 12px / 40px Poppins;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-transform: uppercase;
    color: white;
    transition: all .3s;
    letter-spacing: .05em;
    border-radius: 2px;
  
}

/* Variants */
.cta-button--primary {
  background-color:#EE7603;;
  color: #fff;
}

.cta-button--primary:hover {
  opacity: 0.9;
}

.cta-button--secondary {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
  color: #000;
}

.cta-button--secondary:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

