.reviews-section {
    padding-bottom: 40px;
    background: linear-gradient(to bottom, #2c1b51 15%, #1d1d1e 100%);
    color: white;
}

.review-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    margin-bottom: 60px;
    background: linear-gradient(to bottom, #1d1d1e 0%, #2c1b51 100%);
}

.review-title-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1140px;
    width: 100%;
    margin-bottom: 10px;
}

.review-title-content > h1{
    font-style: normal;
    font-size: 23px;
    line-height: 1.64;
    letter-spacing: 0;
    color: #9D6CFF;
    font-weight: 400;
}

.review-title-content > hr{
    border: 1px solid white;
}

.review-title-border {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    width: 100%;
    margin-bottom: 20px;
}

.review-title-border span {
    display: block;
    width: 17%;
    border: 1px solid white;
}

.reviews-section .reviews-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
}

@media (min-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 20px;
    color: white;
    width: 100%;
    max-width: 1140px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-rating {
    color: gold;
    font-size: 20px;
}

.review-date {
    font-size: 14px;
    color: #ccc;
}

.review-content {
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.5;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

@media screen and (max-width: 769px) {
    .review-title-content > h1 {
        font-size: 28px;
        line-height: 50px;
    }
}

@media (max-width: 430px) {
    .review-title {
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .review-title-content > h1 {
        font-style: normal;
        font-size: 23px;
        line-height: 1.64;
    }

    .review-title-border span {
        width: 35%;
    }
}