.comments-area {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.comment-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.comment-content {
    font-size: 1rem;
    line-height: 1.6;
}

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

.comment-form .btn {
    background: #333;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comment-form .btn:hover {
    background: #555;
}