/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, var(--color-d) 0%, #6d7d16 100%);
    padding: 8rem 5%;
    text-align: center;
}

.reviews-header {
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-size: 3.5rem;
    color: var(--color-c);
    font-weight: 800;
}

/* New styles for review cards */
.review-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative; /* Added for positioning the quote mark */
}

.review-content .quote-mark {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: var(--color-a);
    opacity: 0.1;
    line-height: 1;
}

.review-content p {
    font-family: "Lora", serif;
    font-weight: 500;
    font-size: 1.1rem;
    z-index: 1; /* Ensure the text is above the quote mark */
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-a);
}

.user-details {
    text-align: left;
}

.user-name {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-a);
}

.user-role {
    font-size: 0.85rem;
    color: #555;
}

.review-rating {
    font-size: 1.8rem;
    color: var(--color-a);
    letter-spacing: 2px;
}