/* Conditions Générales Page Styles */

.conditions-section {
    padding: 120px 0 80px;
    background-color: #FFFFFF;
    min-height: 100vh;
}

.conditions-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.conditions-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #CCCCCC;
}

.conditions-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.conditions-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.5px;
}

.conditions-content {
    line-height: 1.8;
}

.conditions-article {
    margin-bottom: 40px;
}

.article-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 30px;
    text-transform: uppercase;
}

.article-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.conditions-article p {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.conditions-article ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.conditions-article ul li {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #333333;
    letter-spacing: 0.5px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.conditions-article ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 18px;
}

.conditions-article ul li strong {
    font-weight: 500;
}

.conditions-update {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.5px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #CCCCCC;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .conditions-section {
        padding: 100px 0 60px;
    }

    .conditions-container {
        padding: 0 20px;
    }

    .conditions-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .conditions-section {
        padding: 100px 0 60px;
    }

    .conditions-container {
        padding: 0 15px;
    }

    .conditions-title {
        font-size: 24px;
    }

    .conditions-subtitle {
        font-size: 12px;
    }

    .article-title {
        font-size: 16px;
    }

    .article-subtitle {
        font-size: 14px;
    }

    .conditions-article p,
    .conditions-article ul li {
        font-size: 13px;
    }
}

