.comments-area {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.comments-title {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.comment-author {
    font-weight: bold;
    color: var(--text-dark);
}

.comment-metadata {
    font-size: 12px;
    color: #888;
}

.comment-content {
    margin-top: 10px;
}

.comment-pagination {
    text-align: center;
    margin-top: 20px;
}

.comment-pagination a {
    margin: 0 5px;
    padding: 5px 10px;
    background: var(--primary-green);
    color: var(--text-white);
    text-decoration: none;
}

.comment-pagination a:hover {
    background: var(--secondary-yellow);
}

.comment-form label {
    display: block;
    margin-top: 10px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.comment-form input[type="submit"] {
    width: auto;
    background-color: var(--primary-green);
    color: var(--text-white);
    border: none;
    cursor: pointer;
}

.comment-form input[type="submit"]:hover {
    background-color: var(--secondary-yellow);
}

@media (max-width: 768px) {
    .comments-area {
        padding: 10px;
    }
}