.reviews-section {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

.reviews-section h5 {
    color: #007bff;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.reviews-section h2 {
    color: var(--blue);
    font-size: 1.9rem;
    font-weight: 700;
}

.reviews-information {
    display: flex;
    justify-content: center;   
    align-items: center;       
    gap: 12px;                
    flex-wrap: nowrap;        
    text-align: center;
}

.reviews-information img {
    width: 90px;
    height: auto;
    display: inline-block;
    vertical-align: middle;   
}

.reviews-info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: 0;
}

.reviews-info-text span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.stars {
    color: #f5bd43;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
}

.stars i {
    padding-right: 1px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    position: relative;
    padding: 18px;
    margin: 0 12px;
    flex: 0 0 230px;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ccc;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    font-size: 1rem;
    color: #222;
}

.review-date {
    display: block;
    color: #777;
    font-size: 0.75em;
    margin-bottom: 8px;
}

.review-card .stars {
    color: #f5bd43;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.review-text {
    color: #444;
    font-size: 0.9em;
    line-height: 1.4em;
    max-height: 65px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    display: inline-block;
    margin-top: 6px;
    color: var(--blue);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #0056b3;
}

.arrow-button {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    border: 2px solid var(--blue);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.arrow-left {
    left: 100px;
}

.arrow-right {
    right: 100px;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 180px;
    }

    .arrow-button {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .reviews-section > div:nth-of-type(2) {
        flex-direction: column;
        padding: 12px;
    }

    .reviews-section img {
        width: 75px;
    }
}


