.reviews-hero {
    text-align: center;
    padding: 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.reviews-container {
    width: 80%;
    margin: 2rem auto;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-form input,
.review-form select,
.review-form textarea {
    padding: 0.5rem;
    border: 1px solid #aaa;
    border-radius: 6px;
}

.review-form button {
    background: #e63946;
    color: white;
    padding: 0.7rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.review-form button:hover {
    background: #c82333;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-card h3 {
    margin: 0;
}

.rating {
    color: #f39c12;
    font-weight: bold;
}