/* --- UNIVERSAL HERO SECTION --- */
.hero {
  /* Fixes the "thin" and "3 pictures" issue */
  width: 100%;
  min-height: 500px; 
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;

  /* Layout */
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  gap: 3rem;
  padding: 3rem 1rem; 
  color: white; 
  text-align: center; 
  position: relative; 
  box-sizing: border-box;
}

/* Targeting the specific tags inside the hero */
.hero p {
  color: #0180d9; 
  font-weight: bold; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  margin: 0; 
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.2;
  font-size: 3rem; 
}

.hero h2 {
  font-weight: normal; 
  max-width: 800px; 
  margin: 0; 
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.hero a {
  display: inline-block; 
  background-color: #0180d9; 
  color: white; 
  padding: 0.75rem 1.5rem; 
  border-radius: 8px; 
  font-size: 1.1rem; 
  font-weight: bold; 
  text-decoration: none; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.hero a:hover {
  transform: scale(1.05); /* Slightly grows the button when you hover */
}
/* ================================
   Responsive Adjustments
==================================*/
@media (max-width: 768px) {
  .hero {
    min-height: 180px;      /* Much thinner on mobile */
    padding: 1.5rem 1rem;
  }

  .hero h1 {
    font-size: 1rem;
  }

  .hero p {
    font-size: 0.5rem;
  }

  .hero .cta-button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}