/* Hero Contact Module */
.hero-contact {
  position: relative;
  background: url('https://www.protaxrelief.com/hubfs/contact%20banner.png') no-repeat center center;
  background-size: cover;
  height: 400px; /* Adjust based on design preference */
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text visibility */
  z-index: 0;
}

.hero-contact-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  padding: 0 15px; /* Consistent spacing */
}

.hero-contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow for readability */
}

.hero-contact-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Stack buttons on smaller screens */
  justify-content: center;
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Add depth */
  color: #4b286d; /* ProTax Relief purple */
  background-color: #ffffff; /* White buttons */
}

.hero-button:hover {
  background-color: #f7f3fa; /* Light lavender on hover */
  transform: scale(1.05); /* Slight hover enlargement */
}

.hero-button:active {
  background-color: #e6d4ff; /* Pressed button effect */
  transform: scale(0.98); /* Slight shrink on click */
}

/* Specific Button Styling */
.hero-call {
  border: 2px solid #ffcc00; /* Gold border for Call button */
}

.hero-schedule {
  border: 2px solid #6f4d97; /* Purple border for Schedule button */
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
  .hero-contact {
    height: 300px; /* Adjust height for smaller screens */
  }

  .hero-contact-title {
    font-size: 2rem; /* Smaller font for titles */
  }

  .hero-contact-description {
    font-size: 1rem;
  }

  .hero-button {
    font-size: 1rem;
    padding: 12p
