.article {
    padding-top: 120px;
    background-color: #f5f5f5;
}

.article-title {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    text-transform: none;
}

.article-date {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    text-transform: none;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: none;
}

.article-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.article-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-transform: none;
}

.article-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-transform: none;
    text-align: justify;
}

/* Styles pour les listes à puces */
.article-content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    text-transform: none;
    text-align: justify;
}

.article-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    text-transform: none;
    text-align: justify;
}

.article-content ul li strong{
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    text-transform: none;
    text-align: justify;
}

/* Responsive design */
@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }

    .article-content h2 {
        font-size: 20px;
    }
}
