/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base */
  body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #111;
  }
  
  /* Layout */
  .hero {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Typography */
  h1 {
    font-size: 64px;
    letter-spacing: 6px;
    margin-bottom: 16px;
  }
  
  p {
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.8;
  }

  /* Header */
.site-header {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    height: 40px; /* 로고 크기 조절 */
  }
  
  .logo-link {
    display: inline-block;
  }