
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

/* Single column layout */
.reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Card */
.review-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* Hover */
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* Profile */
.profile {
    width: 45px;
    height: 45px;
    background: #427ff4;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* ⭐ GOLDEN STARS */
.stars {
    color: #FFD700; /* golden */
    margin: 8px 0;
    font-size: 16px;
}

/* Text */
.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .review-card {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .profile {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .review-card p {
        font-size: 13px;
    }
}