/* ======================
   HEADLINE + BUTTON
====================== */
.headline-with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.headline-with-button h1 {
  font-size: 2rem;
  margin: 0;
}

.headline-button,
.contact-btn,
.contact-btn-menu {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background-color: #0a2c3e;
  color: white !important;
  border: none;
  border-radius: 0.25rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.headline-button:hover,
.contact-btn:hover,
.contact-btn-menu:hover {
  background-color: #6db3e8;
  color: #0a2c3e;
  transform: translateY(-2px);
}

/* ======================
   MEDIA QUERIES – HEADLINE
====================== */
@media (max-width: 1024px) {
  .headline-with-button {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .headline-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .headline-with-button {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}