/* Section spacing */
#hero { padding: 32px 0 40px; }

/* Accent word color borrowed from your earlier CSS */
#hero .your { color: var(--purple-800); }

/* Blocks */
#hero .main-message-container { margin-bottom: 1rem; }
#hero .secondary-message-container { margin-bottom: 1rem; }
#hero .services-message-container {
  color: var(--green-900);
  line-height: 2.5rem;
  margin-bottom: 1rem;
}
#hero .services-message-container li {
  font-size: 1.2rem;
}
#hero .call-to-action h2 { line-height: 2rem; }
#hero .get-in-touch {
  color: var(--blue-900);
  font-weight: 300;
  font-size: 1.8rem;
}
#hero .call-to-action-container {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 200px;
}
#hero .try-custom-chatbot {
  color: var(--purple-700);
}

@media (max-width: 1100px) {
  #hero .call-to-action-container {
    margin-top: 1rem;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  #hero .call-to-action-container {
    margin-top: .5rem;
    flex-direction: column;
    gap: 8px;
  }
  #hero .call-to-action-container .get-in-touch {
    font-size: 1.3rem;
  }
  #hero .call-to-action-container .try-custom-chatbot {
    font-size: 1rem;
  }
}
