.cgv-container {
    background: linear-gradient(135deg, var(--bs-gray-50) 0%, var(--bs-body-bg) 100%);
    min-height: 90vh;
    padding: 3rem 0;
}

.cgv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Section */
.cgv-header {
    text-align: center;
    padding: 3rem;
    background: var(--bs-body-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
    margin-bottom: 2rem;
}

.cgv-icon {
    font-size: 4rem;
    color: #0047FF;
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.cgv-title {
    color: var(--bs-body-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cgv-subtitle {
    color: #D10000;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cgv-intro {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.cgv-intro .lead {
    color: var(--bs-secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

.cgv-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-secondary-color);
    font-size: 1rem;
    background: var(--bs-gray-100);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--bs-border-color);
}

.cgv-date i {
    color: #0047FF;
}

/* Pricing Banner */
.pricing-banner {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 2px solid rgba(40, 167, 69, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.1);
}

.pricing-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-icon {
    font-size: 3rem;
    color: #28a745;
    flex-shrink: 0;
}

.pricing-text h3 {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.pricing-text p {
    color: var(--bs-body-color);
    margin: 0;
}

/* Table of Contents */
.cgv-toc {
    background: var(--bs-body-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bs-border-color);
}

.cgv-toc h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bs-gray-50);
    border-radius: 10px;
    text-decoration: none;
    color: var(--bs-body-color);
    transition: all 0.3s ease;
    border: 1px solid var(--bs-border-color);
}

.toc-item:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 71, 255, 0.3);
    text-decoration: none;
}

.toc-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toc-item:hover .toc-number {
    background: white;
    color: var(--bs-primary);
}

/* CGV Content */
.cgv-content {
    background: var(--bs-body-bg);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bs-border-color);
}

.cgv-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

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

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bs-border-color);
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section-header h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.section-content {
    line-height: 1.7;
    color: var(--bs-body-color);
}

.section-content p {
    margin-bottom: 1rem;
}

.section-content strong {
    color: #0047FF;
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.service-icon {
    font-size: 2.5rem;
    color: #D10000;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card h4 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-align: center;
}

.service-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bs-border-color);
}

.service-features span {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}

/* Pricing Table */
.pricing-table {
    margin: 2rem 0;
}

.pricing-table h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.price-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
    position: relative;
}

.price-card.express {
    border-color: #ffc107;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-header {
    background: var(--bs-body-bg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.price-card.express .price-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.price-header h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0047FF;
    margin-bottom: 0.5rem;
}

.price-unit {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-features {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-features span {
    color: var(--bs-secondary-color);
    font-size: 0.95rem;
}

/* Additional Services Table */
.additional-services {
    margin: 2rem 0;
}

.additional-services h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.additional-table {
    background: var(--bs-gray-50);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.table-row:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--bs-body-color);
    font-weight: 500;
}

.service-price {
    color: #0047FF;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Payment Methods */
.payment-methods {
    margin: 2rem 0;
}

.payment-methods h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.payment-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.payment-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.payment-card h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.payment-security {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Delivery Methods */
.delivery-methods {
    margin: 2rem 0;
}

.delivery-methods h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.delivery-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.delivery-card.digital {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.1) 0%, rgba(0, 71, 255, 0.05) 100%);
    border-color: rgba(0, 71, 255, 0.3);
}

.delivery-card.postal {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.delivery-card.digital .delivery-icon i {
    color: #0047FF;
}

.delivery-card.postal .delivery-icon i {
    color: #28a745;
}

.delivery-card h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.delivery-timing {
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.delivery-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 1rem;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.delivery-features span {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #0047FF 0%, #D10000 100%);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--bs-secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-duration {
    background: var(--bs-gray-100);
    color: var(--bs-body-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-content h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Model Text */
.retractation-model {
    margin: 2rem 0;
}

.retractation-model h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.model-text {
    background: var(--bs-gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Guarantee Grid */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.guarantee-card {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.guarantee-icon {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.guarantee-card h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-card p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.9rem;
}

/* Delivery Formats */
.delivery-formats {
    margin: 2rem 0;
}

.delivery-formats h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.format-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.format-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bs-gray-50);
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.format-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.format-item i {
    font-size: 2rem;
    color: #0047FF;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.format-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.format-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive pour delivery-formats */
@media (max-width: 768px) {
    .format-info {
        grid-template-columns: 1fr;
    }
    
    .format-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .format-item i {
        align-self: center;
    }
}

/* Pricing Notes - Version corrigée */
.pricing-notes {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
}

.pricing-notes h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.note-item {
    display: flex;
    align-items: flex-start; /* Changé pour flex-start */
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bs-body-bg);
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.note-item:last-child {
    margin-bottom: 0;
}

.note-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.note-item i {
    font-size: 1.5rem;
    margin-top: 0; 
    line-height: 1; 
    flex-shrink: 0;
    align-self: flex-start; 
}


/* Payment Conditions */
.payment-conditions {
    margin: 2rem 0;
}

.payment-conditions h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.condition-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bs-gray-50);
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.condition-item i {
    font-size: 1.8rem;
    margin-top: 0;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
}

.condition-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.condition-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive pour payment-conditions */
@media (max-width: 768px) {
    .condition-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .condition-item i {
        align-self: center;
    }
}

/* Delivery Zones */
.delivery-zones {
    margin: 2rem 0;
}

.delivery-zones h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.zone-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zone-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bs-gray-50);
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.zone-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.zone-item i {
    font-size: 1.8rem;
    margin-top: 0;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
}

.zone-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.zone-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive pour delivery-zones */
@media (max-width: 768px) {
    .zone-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .zone-item i {
        align-self: center;
    }
}

/* Retractation Info */
.retractation-info {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
}

.retractation-info h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.retractation-info p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
}

/* Retractation Exceptions */
.retractation-exceptions {
    margin: 2rem 0;
}

.retractation-exceptions h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.exception-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exception-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bs-gray-50);
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.exception-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.exception-item i {
    font-size: 1.8rem;
    margin-top: 0;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
}

.exception-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exception-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive pour retractation sections */
@media (max-width: 768px) {
    .exception-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .exception-item i {
        align-self: center;
    }
}

/* Liability */
.liability {
    margin: 2rem 0;
}

.liability h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.liability-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.liability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bs-gray-50);
    border-radius: 15px;
    border: 1px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.liability-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: var(--bs-body-bg);
}

.liability-item i {
    font-size: 1.8rem;
    margin-top: 0;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
}

.liability-item h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.liability-item p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Error Correction */
.error-correction {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
}

.error-correction h4 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1rem;
}

.error-correction p {
    color: var(--bs-body-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.error-correction ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--bs-secondary-color);
}

.error-correction li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Responsive pour liability sections */
@media (max-width: 768px) {
    .liability-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .liability-item i {
        align-self: center;
    }
}

/* Complaints Process */
.complaints-process {
    margin: 2rem 0;
}

.complaints-process h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Mediation */
.mediation {
    margin: 2rem 0;
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--bs-border-color);
}

.mediation h4 {
    color: #D10000;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mediation-info p {
    color: var(--bs-body-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mediator-contact {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bs-body-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--bs-border-color);
}

.mediator-icon {
    flex-shrink: 0;
}

.mediator-icon i {
    font-size: 2.5rem;
    color: #0047FF;
}

.mediator-details h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mediator-details p {
    color: var(--bs-secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mediator-details p:last-child {
    margin-bottom: 0;
}

/* Applicable Law */
.applicable-law {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.1) 0%, rgba(209, 0, 0, 0.1) 100%);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.applicable-law h4 {
    color: #0047FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.applicable-law p {
    color: var(--bs-body-color);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive pour mediation sections */
@media (max-width: 768px) {
    .mediator-contact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mediator-icon i {
        font-size: 2rem;
    }
}


.note-item p {
    color: var(--bs-body-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive pour pricing-notes */
@media (max-width: 768px) {
    .note-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .note-item i {
        align-self: center;
    }
}


/* Timeline for complaints */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0047FF 0%, #D10000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 71, 255, 0.3);
}

.step-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #0047FF 0%, #D10000 100%);
    margin-top: 0.5rem;
}

.timeline-step:last-child .step-line {
    display: none;
}

.step-content-box {
    background: var(--bs-gray-50);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: var(--bs-body-bg);
}

.step-content-box::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--bs-gray-50);
}

.step-content-box h5 {
    color: var(--bs-body-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.step-content-box p {
    color: var(--bs-secondary-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.cgv-contact {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05) 0%, rgba(209, 0, 0, 0.05) 100%);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header i {
    font-size: 3rem;
    color: #0047FF;
    margin-bottom: 1rem;
}

.contact-header h3 {
    color: var(--bs-body-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--bs-secondary-color);
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.cgv-container .btn,
.cgv-wrapper .btn {
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cgv-container .btn:hover,
.cgv-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.cgv-container .btn i,
.cgv-wrapper .btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cgv-container {
        padding: 2rem 0;
    }
    
    .cgv-header {
        padding: 2rem 1rem;
    }
    
    .cgv-title {
        font-size: 2rem;
    }
    
    .cgv-subtitle {
        font-size: 1.2rem;
    }
    
    .pricing-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cgv-toc,
    .cgv-content {
        padding: 1.5rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .services-grid,
    .price-grid,
    .payment-grid,
    .delivery-grid,
    .guarantee-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cgv-container .btn,
    .cgv-wrapper .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-indicator {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    
    .step-line {
        width: 60px;
        height: 3px;
        margin-top: 0;
        margin-left: 0.5rem;
    }
    
    .timeline-step:last-child .step-indicator {
        flex-direction: column;
    }
    
    .step-content-box::before {
        display: none;
    }
    
    .table-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cgv-wrapper {
        padding: 0 0.5rem;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .cgv-icon {
        font-size: 3rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .cgv-container {
        background: white;
        padding: 0;
    }
    
    .cgv-wrapper {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .cgv-header,
    .pricing-banner,
    .cgv-toc,
    .cgv-content,
    .cgv-contact {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .contact-buttons {
        display: none;
    }
    
    .toc-item:hover {
        background: var(--bs-gray-50);
        color: var(--bs-body-color);
        transform: none;
        box-shadow: none;
    }
}