.reviews-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}

.reviews-section * {
    box-sizing: border-box;
}

.reviews-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.reviews-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #000;
}

.reviews-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: sans-serif;
    font-size: 18px;
    margin-bottom: 50px;
    color: #333;
}

.header-stars {
    background: #00b67a;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 20px;
    letter-spacing: 2px;
}

.reviews-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.review-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-stars {
    background: #00b67a;
    color: #fff;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.review-heading {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #000;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.review-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    font-style: italic;
}

@media (max-width: 900px) {
    .reviews-grid {
        flex-direction: column;
        gap: 50px;
    }

    .review-text {
        padding: 0 10px;
    }
}