* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.top-banner {
  background-color: #ff9c33;
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header {
  background-color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  position: static;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 55px;
  display: block;
}

/* Footer */
.footer {
  background-color: #fafafa;
  border-top: 1px solid #e8e8e8;
}

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main,
.home-content,
.policy-content,
.page-content {
  flex: 1;
}
