/**
 * email-collection 페이지 스타일
 * 인라인 스타일에서 추출됨 - 2026-01-28
 */

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

    body {
      font-family: 'Noto Sans KR', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      padding-top: 70px;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
      min-height: 100vh;
    }

    .page-header {
      text-align: center;
      padding-bottom: 40px;
      border-bottom: 3px solid var(--primary);
      margin-bottom: 40px;
    }

    h1 {
      font-size: 2rem;
      color: var(--primary-dark);
      margin-bottom: 15px;
    }

    .subtitle {
      font-size: 1rem;
      color: var(--text-light);
    }

    .notice-box {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 40px;
      border-radius: 12px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    .notice-box h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      text-align: center;
    }

    .notice-content {
      font-size: 1.1rem;
      line-height: 1.9;
      text-align: justify;
      word-break: keep-all;
    }

    .warning-box {
      background-color: #fef3c7;
      border-left: 5px solid var(--warning);
      padding: 25px;
      margin-top: 30px;
      border-radius: 5px;
    }

    .warning-box h3 {
      color: #92400e;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .warning-box p {
      color: #78350f;
      font-size: 1rem;
      line-height: 1.7;
    }

    .info-section {
      background-color: #f0f9ff;
      border: 2px solid #bae6fd;
      padding: 25px;
      margin-top: 30px;
      border-radius: 8px;
    }

    .info-section h3 {
      color: #0c4a6e;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .info-section ul {
      list-style: none;
      padding-left: 0;
    }

    .info-section li {
      padding: 8px 0;
      color: #0369a1;
      font-size: 1rem;
    }

    .info-section li:before {
      content: "• ";
      color: #0284c7;
      font-weight: bold;
      margin-right: 8px;
    }

    .date-info {
      text-align: center;
      margin-top: 50px;
      padding-top: 30px;
      border-top: 2px solid var(--border);
      color: var(--text-light);
      font-size: 1rem;
    }

    .back-button {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 30px;
      background-color: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-size: 1rem;
      transition: background-color 0.3s;
    }

    .back-button:hover {
      background-color: var(--primary-dark);
    }

    .button-container {
      text-align: center;
      margin-top: 40px;
    }

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

      h1 {
        font-size: 1.5rem;
      }

      .notice-box {
        padding: 25px 20px;
      }

      .notice-box h2 {
        font-size: 1.3rem;
      }

      .notice-content {
        font-size: 1rem;
      }

      .warning-box, .info-section {
        padding: 20px 15px;
      }
    }
