.reviews-container {
            width: 95%;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
            margin: 10px;
            margin-left: auto;
            margin-right: auto;
        }
        .reviews-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        .review {
            min-width: 100%;
            box-sizing: border-box;
            padding: 20px;
            text-align: center;
        }
        .review p {
            font-size: 18px;
            line-height: 1.6;
            text-align: center;
        }
        .review .author {
            margin-top: 10px;
            font-weight: bold;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .review img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-left: 5px;
            margin-right: 0;
        }
        .stars {
            color: #ffc107;
            font-size: 24px;
            margin: 10px 0;
        }
        .navigation {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }
        .navigation button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            font-size: 24px;
            color: #666;
            pointer-events: auto;
        }
        .navigation button:hover {
            color: #000;
        }
