/* =========================
   Global Reset
   ========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* =========================
   Base Typography
   ========================= */

body {
  font-family: -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo",
               "Noto Sans KR",
               "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #111111;
  background-color: #ffffff;
  padding: 96px 48px;
}

/* =========================
   Header
   ========================= */

header {
  margin-bottom: 120px;
}

header h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

header p {
  font-size: 16px;
  color: #555555;
  margin: 0;
}

/* =========================
   Dual Brand Logos
   ========================= */

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.logo {
  display: block;
  height: 150px;   
  width: auto;
}

/* =========================
   Content Sections
   ========================= */

section {
  max-width: 720px;
  margin-bottom: 120px;
}

section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

section p {
  margin: 0 0 24px 0;
}

/* =========================
   Lead Paragraph
   ========================= */

.lead {
  font-size: 18px;
  line-height: 1.9;
}

/* =========================
   Footer
   ========================= */

footer {
  margin-top: 160px;
  padding-top: 48px;
  font-size: 14px;
  color: #666666;
}

footer p {
  margin: 0 0 8px 0;
}

footer a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   Responsive (Minimal)
   ========================= */

@media (max-width: 768px) {
  body {
    padding: 64px 24px;
  }

  header h1 {
    font-size: 36px;
  }

  section {
    margin-bottom: 96px;
  }
}
