* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}

.clientReview {
    width: 100%;
    max-height: auto;
    background: linear-gradient(0deg, var(--dark-overlay), var(--dark-overlay)), url('../image/clientback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.clientReviewTitle h2{
    color: var(--light-color);
}

.clientReviewList {
    text-decoration: none;
}

.clientReviewInner {
    width: 80%;
    height: 80%;
    /* background-color: var(--dark-color); */ /* Commented out, using variable */
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-items: center;
}

.clientReviewTitle {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 20%;
}

.clientReviewInner h2 {
    font-size: 3rem;
}

.clientReviewList {
    width: 100%;
    height: 70%;
    /* background-color: var(--primary-color); */ /* Commented out, using variable for red */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.clientReviewItem {
    border-radius: 10px;
    box-shadow: 2px 2px 10px var(--dark-color);
    width: 300px;
    height: 450px;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    text-decoration: none;
}

.clientReviewItemTop {
    width: 100%;
    height: 20%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.clientReviewItemTop img {
    width: 20%;
}

.clientReviewItemBottom {
    width: 90%;
    height: 60%;
    /* background-color: var(--tertiary-color); */ /* Commented out, placeholder for rgb(43, 44, 110) */
    text-align: center;
}

.clientReviewItemBottom h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.clientReviewItemBottom p {
    line-height: 22px;
    color: var(--text-dark);
}