.testimonials_container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 64px 32px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials_content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
    color: #fff;
}

.reviews_icon img {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

.testimonials_heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
}

.text-40 {
    font-size: 36px;
    font-weight: 700;
    color: #7FE366;
}

.testimonials_heading .text {
    font-size: 18px;
    color: #ccc;
    line-height: 1.5;
}

.reviews_content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.reviews_item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    background-color: rgba(25, 25, 25, 0.5);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    color: #f1f1f1;
}

.reviews_user_column {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews_user_column img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 100px;
    border: 2px solid #7FE366;
}

.reviews_name_rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews_name_rating div:first-child {
    font-weight: 600;
    font-size: 18px;
}

.rating {
    font-size: 20px;
}

.rating span {
    margin-right: 2px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.reviews_text_column {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    word-break: break-word;
}

.review-text {
    font-size: 16px;
    line-height: 1.5;
    color: #eaeaea;
}

.btn-warning {
    background-color: #E36666;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-warning:hover {
    background-color: #cc4444;
}

.devider_line {
    width: 100%;
    height: auto;
    opacity: 0.2;
}
