/* ============================================
   Coaching Luna - CGV Styles
   ============================================ */

.cgv-container {
    background: var(--background);
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.cgv-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.cgv-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .cgv-header h1 {
        font-size: 3rem;
    }
}

.cgv-header p {
    font-size: 1.1rem;
    color: var(--muted);
}

.cgv-content {
    max-width: 900px;
    margin: 0 auto;
}

.cgv-article {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.cgv-article:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cgv-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.cgv-article h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.cgv-article p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

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

.cgv-list li {
    color: var(--muted);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.8;
}

.cgv-list li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cgv-address {
    background: linear-gradient(135deg, rgba(10, 147, 150, 0.03) 0%, transparent 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 3px solid var(--primary);
}

.cgv-address p {
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.cgv-address p:first-child {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cgv-footer {
    text-align: center;
    padding: 2rem;
    border-top: 2px solid var(--border);
    margin-top: 2rem;
    color: var(--muted);
}

/* Responsive Design */
@media (max-width: 640px) {
    .cgv-header h1 {
        font-size: 2rem;
    }

    .cgv-article {
        padding: 1.5rem;
    }

    .cgv-article h2 {
        font-size: 1.25rem;
    }
}
