/* CGV Page Styles - Ultra Modern Design */

.cgv-article {
  margin-bottom: 1rem;
}

.cgv-item {
  background-color: white;
  border: 1px solid var(--puramane-border);
  border-radius: 1rem;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cgv-item:hover {
  border-color: rgba(69, 87, 99, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.cgv-item[open] {
  border-color: var(--puramane-navy);
  box-shadow: 0 4px 12px rgba(69, 87, 99, 0.15);
}

.cgv-question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: var(--puramane-navy);
}

.cgv-question::-webkit-details-marker {
  display: none;
}

.cgv-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cgv-question .chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--puramane-navy);
}

.cgv-item[open] .cgv-question .chevron {
  transform: rotate(180deg);
}

.cgv-answer {
  padding: 0 1.5rem 1.5rem 4.25rem;
  color: rgba(69, 87, 99, 0.7);
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

.cgv-answer p {
  margin-bottom: 1rem;
}

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

.cgv-answer strong {
  color: var(--puramane-navy);
  font-weight: 600;
}

.cgv-answer ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.cgv-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  /* Container */
  .puramane-container {
    padding: 0 1rem !important;
  }

  /* Hero Section */
  .puramane-hero {
    padding: 3rem 0 4rem !important;
  }

  .puramane-title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  .puramane-subtitle {
    font-size: 1rem !important;
  }

  .puramane-badge {
    margin-bottom: 1rem !important;
  }

  /* CGV Items - Mobile Enhanced */
  .cgv-item {
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }

  .cgv-item[open] {
    box-shadow: 0 4px 8px rgba(69, 87, 99, 0.12);
  }

  .cgv-question {
    padding: 1.25rem 1rem;
    font-size: 0.9375rem;
    gap: 0.5rem;
  }

  .cgv-icon {
    font-size: 1.25rem;
  }

  .cgv-answer {
    padding: 0 1rem 1.25rem 2.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* Section Spacing */
  .puramane-section {
    padding: 3rem 0 !important;
  }

  .puramane-section-alt {
    padding: 3rem 0 !important;
  }

  /* CTA Section - Mobile */
  .puramane-section-alt > div > div {
    padding: 2rem 1.5rem !important;
    border-radius: 1rem !important;
  }

  .puramane-section-alt h2 {
    font-size: 1.25rem !important;
  }

  .puramane-section-alt p {
    font-size: 0.875rem !important;
  }

  /* CTA Button */
  .puramane-btn {
    width: 100%;
    padding: 1rem !important;
    font-size: 1rem !important;
  }

  /* Chevron Size Mobile */
  .cgv-question .chevron {
    width: 18px;
    height: 18px;
  }
}

/* Desktop hover effects */
@media (min-width: 769px) {
  .cgv-item:hover {
    transform: translateY(-2px);
  }
}
