.reviews-list-section {
    width: 100%;
    background-color: #fffae6;
    padding: 0 0 60px 0;
    font-family: Arial, sans-serif;
    color: #584a40;
    box-sizing: border-box;
}

.reviews-list-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 220px;
    border-top: 1px solid #e0d8c3;
    box-sizing: border-box;
}

.review-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0d8c3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.review-stars {
    color: #009958;
    letter-spacing: 1px;
    font-size: 18px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.review-author {
    font-weight: bold;
    color: #009958;
}

.verified-badge {
    background-color: #009958;
    color: white;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.review-title {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0 0 0;
    color: #584a40;
}

.review-body {
    font-size: 20px;
    line-height: 1.5;
    color: #6b5e54;
    margin: 0;
}

.review-photos {
    margin-top: 10px;
}

.review-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.review-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .reviews-list-container {
        padding: 0 15px;
        max-width: 100%;
    }

    .review-item {
        padding: 20px 0;
    }
}