/* ============================================================
   CGU PAGES STYLES
   ============================================================ */

.cgu-page {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: var(--sky1);
  min-height: 100vh;
}

.cgu-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 16px 48px rgba(13, 31, 45, 0.08);
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cgu-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--sky2);
}

.cgu-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cgu-meta {
  color: var(--txt3);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cgu-meta strong {
  color: var(--ink);
}

.cgu-warning {
  background: rgba(239, 68, 68, 0.05);
  border-left: 4px solid #EF4444;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 0.95rem;
}

.cgu-content h2 {
  font-size: 1.5rem;
  color: var(--teal);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
}

.cgu-content h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.cgu-content p {
  color: var(--txt2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cgu-content ul {
  list-style-type: disc;
  margin-left: 24px;
  margin-bottom: 24px;
  color: var(--txt2);
}

.cgu-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.cgu-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cgu-content a:hover {
  color: var(--teal-light);
}

.cgu-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(13, 31, 45, 0.05);
}

.cgu-table th {
  background: var(--sky2);
  color: var(--ink);
  font-weight: 600;
  text-align: left;
  padding: 16px;
  font-size: 0.95rem;
}

.cgu-table td {
  padding: 16px;
  border-bottom: 1px solid var(--sky1);
  color: var(--txt2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cgu-table tr:last-child td {
  border-bottom: none;
}

.cgu-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 2px solid var(--sky2);
  text-align: center;
  color: var(--txt3);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .cgu-container {
    padding: 32px 24px;
    border-radius: 16px;
    margin: 0 16px;
  }
  
  .cgu-title {
    font-size: 1.8rem;
  }
  
  .cgu-table {
    display: block;
    overflow-x: auto;
  }
}
