/* Contact Section Styles */
.stacked-intro.centered {
  padding: 120px 0;  /* Increased padding top and bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;  /* Minimum height to ensure proper spacing */
  position: relative;
  z-index: 1;
}

.stacked-intro.centered .medium-width-intro {
  margin-bottom: 40px;  /* Space between subtitle and button */
}

.stacked-intro.centered .button {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.stacked-intro.centered .button:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .stacked-intro.centered {
    padding: 80px 0;
    min-height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .stacked-intro.centered {
    padding: 60px 0;
    min-height: 250px;
  }
  
  .stacked-intro.centered .medium-width-intro {
    margin-bottom: 30px;
  }
} 