.full-screen-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  
  position: relative;
  padding: 0 20px;
}

.hero-overlay {
  font-family: 'Copperplate Gothic', 'Copperplate', serif;
  background-color: rgba(28, 30, 38, 0.75);
  padding: 4vw 5vw;
  border-radius: 12px;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.hero-overlay h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

.hero-overlay h1 span {
  color: #ffaf5f;
  font-style: italic;
}

.hero-overlay p {
  font-size: clamp(14px, 3vw, 18px);
  margin: 12px 0 24px;
  color: #ccc;
  line-height: 1.6;
}

.hero-overlay .get-quote-btn {
  background-color: #ffaf5f;
  color: #1c1e26;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-overlay .get-quote-btn:hover {
  background-color: #ffa13f;
}
