/* ===== HEADER BASE STYLE ===== */
.topbar {
  width: 100%;
  padding: 12px 20px;
  background: white;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.brand img {
  height: 65px;
  width: auto;
}

.brand .title {
  font-size: 22px;
  font-weight: 700;
}

/* Buttons */
.top-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 16px;
  text-decoration: none;
  background: #0078ff;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

.whatsapp-btn {
  background: #25D366;
}

/* ===== MOBILE FIX ===== */
@media(max-width: 760px) {
  .topbar {
    flex-direction: column;
    text-align: center;
    padding: 14px 20px;
    gap: 12px;
  }

  .brand {
    flex-direction: column;
    gap: 6px;
  }

  .brand img {
    height: 70px;
  }

  .top-actions {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }
}
h1, p {
  color: #000000;
}

