:root {
  --cgv-primary: #5a6aa5;
  --cgv-primary-soft: #cad3ed;
  --cgv-muted-blue: #969eb5;
  --cgv-pink: #f3bebe;
  --cgv-pink-soft: #f7f1f1;
  --cgv-card-bg: #ffffff;
  --cgv-light-bg: #f9f9f9;
  --cgv-text: #1f2937;
  --cgv-muted: #6b7280;
  --cgv-border: #e5e7eb;
  --cgv-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  --font-title: 'Montserrat', Arial, sans-serif;
  --font-body: 'JetBrains Mono', monospace;
}

.cgv-policy {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.cgv-policy-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cgv-policy-header h1 {
  padding: 0;
  margin: 0 0 0.75rem 0;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cgv-primary);
}

.cgv-policy-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cgv-muted);
}

.cgv-card {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--cgv-card-bg);
  border: 2px solid var(--cgv-pink);
  border-radius: 12px;
  box-shadow: var(--cgv-shadow);
}

.cgv-card h2 {
  margin: 0 0 1rem 0;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cgv-primary);
  text-decoration: underline;
  text-underline-position: under;
}

.cgv-card h3 {
  margin: 1.25rem 0 0.75rem 0;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cgv-primary);
}

.cgv-card p {
  margin: 0 0 1rem 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}

.cgv-card p:last-child {
  margin-bottom: 0;
}

.cgv-card strong {
  font-family: var(--font-title);
  color: var(--cgv-primary);
}

.cgv-card a {
  color: var(--cgv-primary);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.cgv-card a:hover {
  text-decoration: underline;
}

.cgv-list {
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
}

.cgv-list:last-child {
  margin-bottom: 0;
}

.cgv-list li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}

.cgv-list li:last-child {
  margin-bottom: 0;
}

.cgv-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--cgv-primary);
  font-family: var(--font-title);
  font-weight: 700;
}

.cgv-highlight-card{
  background-color: var(--cgv-pink-soft);
}

.cgv-highlight-card h2,
.cgv-update-card h2 {
  color: var(--cgv-primary);
}

.cgv-download-container {
  display: flex;
  justify-content: center;
  margin: 0 0 1.75rem 0;
}

.cgv-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  box-sizing: border-box;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 12px;
  background-color: var(--cgv-primary);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(90, 106, 165, 0.22);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cgv-download-button:hover {
  background-color: #4a5a95;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(90, 106, 165, 0.3);
}

.cgv-download-button:active {
  transform: translateY(0);
  background-color: var(--cgv-primary-soft);
  color: #020203;
  box-shadow: 0 3px 8px rgba(90, 106, 165, 0.2);
}

.cgv-download-button:focus-visible {
  outline: 3px solid var(--cgv-primary-soft);
  outline-offset: 3px;
}


@media (max-width: 700px) {
  .cgv-policy-header h1 {
    font-size: 1.8rem;
  }

  .cgv-card {
    padding: 1rem;
  }

  .cgv-card h2 {
    font-size: 1.15rem;
  }

  .cgv-card h3 {
    font-size: 0.95rem;
  }

  .cgv-card p,
  .cgv-list li {
    font-size: 0.85rem;
  }

  .cgv-download-container {
    margin: 0 0 1.25rem 0;
  }

  .cgv-download-button {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
  }
}