/* ===== CGV PAGE ===== */
.cgv-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.cgv-header {
    text-align: center;
    margin-bottom: 60px;
}

.cgv-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.6;
}

.cgv-separator {
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 40px auto;
    max-width: 200px;
    opacity: 0.7;
}

.cgv-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cgv-article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cgv-article:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.cgv-article-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.cgv-article-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.cgv-article-content p:last-child {
    margin-bottom: 0;
}

.cgv-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.cgv-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.cgv-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.cgv-list.forbidden li::before {
    content: "✕";
    color: var(--error);
}

.cgv-contact {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
}

.cgv-contact h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cgv-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE CGV ===== */
@media (max-width: 768px) {
    .cgv-section {
        padding: 100px 0 60px;
    }

    .cgv-article {
        padding: 25px;
    }

    .cgv-article-title {
        font-size: 20px;
    }

    .article-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .cgv-contact {
        padding: 35px 25px;
    }

    .cgv-contact h3 {
        font-size: 22px;
    }
}
/* ===== CGV WARNING BOX ===== */
.cgv-warning {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    color: var(--text-primary);
}

.cgv-warning strong {
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}
