* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

.cgv-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.cgv-header {
  background: linear-gradient(
    135deg,
    rgb(45, 150, 235) 0%,
    rgb(32, 112, 223) 100%
  );
  color: white;
  padding: 4rem 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.cgv-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.cgv-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.cgv-content {
  padding: 0 1rem;
}

.cgv-section {
  margin-bottom: 2.5rem;
}

.cgv-section:last-child {
  margin-bottom: 0;
}

.cgv-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.cgv-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3d8dd7;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.cgv-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.cgv-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.cgv-section ul li {
  padding: 0.2rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4a5568;
  line-height: 1.7;
  display: flex;
  align-items: center;
}

.cgv-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3d8dd7;
  font-weight: bold;
  font-size: 1.2rem;
}

.cgv-section strong {
  color: #2d3748;
  font-weight: 600;
}

.info-box {
  background: #f0f9ff;
  border-left: 4px solid #3d8dd7;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.info-box p {
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3d8dd7;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #f8fafc;
}

@media (max-width: 768px) {
  .cgv-container {
    padding: 0 1.5rem 3rem;
    margin: 2rem auto;
  }

  .cgv-header {
    padding: 2rem 1.5rem;
  }

  .cgv-header h1 {
    font-size: 1.75rem;
  }

  .cgv-header p {
    font-size: 1rem;
  }

  .cgv-content {
    padding: 2rem 1.5rem;
  }

  .cgv-section h2 {
    font-size: 1.25rem;
  }

  .cgv-section h3 {
    font-size: 1.1rem;
  }
}

/* ===========================
   MAIN FOOTER
   =========================== */

.main-footer {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  color: #ffffff;
  padding: 0;
  margin-top: 4rem;
}

.main-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.footer-dot {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .main-footer-wrapper {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}
