 .reviews-section {
        padding: 60px 20px;
        background-color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        text-align: center;
        width: 100%;
        overflow: hidden;
    }
 
    .reviews-heading {
        font-size: 28px;
        font-weight: 600;
        margin: 0 0 8px;
        color: #1a1a1a;
    }
 
    .reviews-subheading {
        font-size: 14px;
        color: #777;
        margin: 0 0 40px;
    }
 
    .review-card {
        background-color: #faf9f6;
        border-radius: 16px;
        padding: 50px 40px;
        max-width: 900px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden;
    }
 
    .google-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 20px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }
 
    .google-badge span {
        font-size: 13px;
        font-weight: 600;
        color: #1a1a1a;
    }
 
    .review-track {
        display: flex;
        transition: transform 0.6s ease;
        align-items: flex-start;
        width: 100%;
    }
 
    .review-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 0 10px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
    }
 
    .review-text {
        font-size: 18px;
        line-height: 1.7;
        color: #1a1a1a;
        margin: 0 0 20px;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        min-height: 90px;
    }
 
    .review-stars {
        color: #f5a623;
        font-size: 15px;
        letter-spacing: 3px;
        margin-bottom: 10px;
        display: block;
    }
 
    .review-name {
        font-size: 14px;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
        max-width: 100%;
    }
 
    .review-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }
 
    .review-nav button {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #333;
        padding: 0;
        flex-shrink: 0;
    }
 
    .review-nav button:hover {
        background: #f2f2f2;
    }
 
    .review-dots {
        display: flex;
        gap: 6px;
    }
 
    .review-dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ddd;
        display: inline-block;
        cursor: pointer;
        flex-shrink: 0;
    }
 
    .review-dots span.active {
        background: #1a1a1a;
    }
 
    @media (max-width: 480px) {
        .review-card {
            padding: 30px 16px;
        }
 
        .reviews-heading {
            font-size: 22px;
        }
 
        .review-text {
            font-size: 15px;
        }
    }