body {
    margin: 0;
    font-family: 'NanumGothic', sans-serif;
    background: #fff;
    color: #383838;
  }
  
  /* Header */
  .header {
    background: #fff;
    padding: 20px;
    text-align: center;
  }
  .logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .logo-area .box {
    width: 32px;
    height: 30px;
    margin: 2px;
    background: black;
    outline: 1.5px solid white;
  }
  .tagline {
    font-weight: 700;
    font-size: 13px;
    margin-top: 10px;
  }
  .spacer-before-logo {
    height: 80px;
  }
  .spacer-after-iframe {
    height: 20px;
  }
  .store-links {
    margin-top: 20px;
  }
  .store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: white;
    width: 200px;
    padding: 18px 0;
    margin: 0 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }
  .store-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  
  /* Main */
  .main-section {
    background: #009A49;
    text-align: center;
    padding: 50px 20px;
  }

  .award {
    color: white;
    font-size: 14px;
    margin-top: 20px;
  }
  
  /* Footer */
  .footer {
    background: #009A49;
    color: white;
    padding: 20px;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;

    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-left p {
    margin: 0 0 10px 0;
  }
  .footer a {
    color: white;
    text-decoration: underline;
    
  }

  .footer .award {
    margin-top: 0;
  }
  
  /* Privacy Page */
  .privacy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
  }
  .privacy-container h1 {
    font-family: Bevan, sans-serif;
    font-size: 48px;
    margin: 0 0 8px 0;
  }
  .privacy-container hr {
    border: 0;
    border-top: 2px solid #222;
    margin: 12px 0 24px 0;
  }
  .privacy-container h2 {
    margin-top: 26px;
    font-weight: 700;
    font-size: 20px;
  }
  .privacy-container p {
    font-size: 14px;
    line-height: 1.8;
    color: #222;
  }
  .privacy-container a {
    color: #111;
    text-decoration: underline;
  }
  
  /* 반응형 */
  @import url('https://fonts.googleapis.com/css2?family=Bevan:wght@400&display=swap');

  @media (max-width: 767px) {
    .footer-container {
      flex-direction: column;
    }
    .store-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .header iframe {
      width: 340px;
      aspect-ratio: 375 / 812; /* 원본 비율 유지 */
      height: auto; /* 가로에 맞춰 세로 자동 계산 */
    }
    .spacer-after-iframe {
      height: 10px;
    }
    .spacer-before-logo {
      height: 40px;
    }
    .headline {
      font-size: 36px;
      font-family: 'Bevan', cursive;
    }
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    .headline {
      font-size: 48px;
      font-family: 'Bevan', cursive;
    }
  }
  @media (min-width: 1025px) {
    .headline {
      font-size: 100px;
      font-family: 'Bevan', cursive;
    }
  }
  .logo {
    width: 200px;
    height: 33px;
  }