body {
    font-family: Arial, sans-serif;
}

.fast-customers {
    padding: 50px 0;
    background: #f9f9f9;
}

.about-us-title span {
    color: #FF6347;
}

.customers-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    flex: 1 0 100%;
    display: flex;
    justify-content: center;
    padding: 15px;
}

.customer-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 350px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

.cust-details {
    text-align: left;
}

.review-name {
    font-weight: bold;
    font-size: 1.2em;
}

.fa-quote-left {
    font-size: 2em;
    color: #FF6347;
    margin-bottom: 10px;
}

p {
    font-size: 0.9em;
    color: #333;
    flex-grow: 1;
    margin-top: 10
}