/* CGV Modal */
.cgv-modal {
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.cgv-content h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 15px;
}

.cgv-content h3 {
  color: var(--light-blue);
  font-size: 1.3rem;
  margin: 25px 0 15px;
  font-weight: 600;
}

.cgv-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.cgv-content ul {
  color: rgba(255, 255, 255, 0.8);
  margin: 15px 0;
  padding-left: 25px;
}

.cgv-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.cgv-content strong {
  color: var(--white);
}

/* Responsive CGV */
@media (max-width: 768px) {
  .cgv-modal {
    max-width: 90vw;
    max-height: 85vh;
  }
  
  .cgv-content {
    padding: 20px;
  }
  
  .cgv-content h2 {
    font-size: 1.5rem;
  }
  
  .cgv-content h3 {
    font-size: 1.2rem;
  }
  
  .cgv-content p,
  .cgv-content li {
    font-size: 0.9rem;
  }
}