/* Reviews */
.reviews {
    background: #f9f9f9;
    padding: 6rem 9%;
    margin-top: 6rem;
}

.reviews .heading {
    text-align: center;
    font-size: 4rem;
    color: #333;
    padding: 1rem;
    margin-bottom: 4rem;
    background: rgba(255, 51, 153, 0.05);
}

.reviews .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.reviews .box {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.2s;
}

.reviews .box:hover {
    transform: translateY(-5px);
}

.reviews .box .stars {
    color: gold;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.reviews .box p {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviews .box h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.reviews .box span {
    font-size: 1.3rem;
    color: #888;
} 