




<style>
.reviews-section {
    padding: 80px 20px;
    background: #f8f6f2;
    text-align: center;
}

.reviews-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #c6a55c;
    margin-bottom: 50px;
}

.reviews-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: left;
    scroll-snap-align: start;
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-name {
    font-weight: 600;
    font-size: 18px;
}

.review-country {
    font-size: 14px;
    color: #999;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.review-date {
    font-size: 13px;
    color: #c6a55c;
    font-style: italic;
}
.review-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.review-country {
    display: block;
    font-size: 14px;
    color: #999;
}


</style>