body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    padding: 1rem 0;
}

.navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

section {
    padding: 2rem;
    text-align: center;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review {
    width: 80%;
    background-color: #f4f4f4;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: left;
}

.review h3 {
    margin-top: 0;
}

.review span {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label, form input, form select, form textarea {
    width: 80%;
    margin-bottom: 1rem;
}

form input, form select, form textarea {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.error-message {
    color: red;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

label{
    text-align: left;
}
/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #f5f5f5;
}

body.dark-mode header,
body.dark-mode footer {
    background-color: #1f1f1f;
}

body.dark-mode .review,
body.dark-mode .service-block,
body.dark-mode .special-block {
    background-color: #1e1e1e;
    color: #ffffff;
}

body.dark-mode a,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
    color: #e0e0e0;
}

body.dark-mode button {
    background-color: #444;
    color: white;
    border: 1px solid #666;
}

