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

body {
  font-family: Verdana, Geneva, sans-serif;
  background-color: #ffffff;
  color: #111;
  line-height: 1.2;
}

/* Header */
.site-header {
  padding: 28px 40px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  height: 48px;
  width: auto;
}

.brand-text {
  font-size: 15px;
}

/* Hero Image */
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content */
.content {
  max-width: 1000px;
  margin: 30px auto 30px;
  padding: 0 24px;
  text-align: center;
}

.content p {
  font-size: 16px;
  margin-bottom: 32px;
line-height: 1.7;
}

/* Footer */
.site-footer {
  background-color: #f7f7f5;
  padding: 48px;
}

.footer-content {
  max-width: 900px;
}

.site-footer p {
  font-size: 13px;
  line-height: 1.6;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 20px;
  }

  .logo {
    height: 48px;
  }

  .brand-text {
    font-size: 15px;
  }

  .content {
    margin: 40px auto;
  }

.content p {
  font-size: 13px;
}

}
