* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: #000;
}

.hero {
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.brand img {
  width: 75px;
  height: 75px;
}

.brand span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #033702;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 28px;
}

.btn {
  background: #033702;
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #033702;
}

.phone {
  margin-top: 40px;
  max-width: 320px;
}

.phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .brand span {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .phone {
    max-width: 380px;
  }
}
