/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #203844;
}

.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.content {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 1px; /* Moves everything down slightly */
}

/* Logo */
.logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin-top: 3rem; /* Adds space from very top */
  position: relative;
  z-index: 2;
}

/* Tagline image with overlap */
.tagline-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-top: -200px; /* Pulls image upward to overlap logo */
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

/* Headline */
/* .headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  color: #203844;
  margin-bottom: 2rem;
  margin-top: -90px;
} */

/* Services list */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-bottom: 2.5rem;
  margin-top: -70px;
}

.services li {
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #fdb414;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background-color: #203844;
  border-radius: 5px;
}

/* Contact section */
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Contact icons */
.icon, .phone-number {
  height: clamp(160px, 15vw, 220px);
  width: auto;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .services {
    flex-direction: column;
    gap: 0.5rem;
  }

  .logo {
    max-width: 220px;
  }

  .tagline-img {
    max-width: 200px;
    margin-top: -40px;
  }

  .icon, .phone-number {
    height: 80px;
  }
}
