.customer-reviews {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 1rem;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.customer-reviews h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.review-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.review-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #444;
}

.client-comment {
    font-size: 1rem;
    padding: 0.75rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
    border-left: 2px solid #4CAF50;
}

.rating {
    color: #4CAF50;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.add-review {
    background: #ff4081;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out, transform 0.3s;
    margin-top: 10px;
    font-size: 13px;
}

.add-review:hover {
    background: #e91e63;
    transform: scale(1.05);
}


.hidden {
    display: none;
}

#review-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    
}

#review-form h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

#commentForm input, #commentForm textarea, #commentForm select {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#commentForm button {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 85px;
    text-transform: uppercase;
    font-size: 13px;
}

#commentForm button:hover {
    background-color: #e91e63;
}
