/* Comments section */
.comments-area {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

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

.comment {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.comment-author {
    font-weight: 600;
    color: #1c3a4d;
    margin-bottom: 5px;
}

.comment-meta {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
}

.comment-content {
    color: #4a5568;
    line-height: 1.7;
}

.reply a {
    color: #9b8a3a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.reply a:hover {
    color: #A68A3D;
}

