/* Reset some default styles */
body, h1, form, div, label, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body styling */
body {
    background-color: #f8f9fa;
    
}

/* Page title */
h1 {
    margin-bottom: 20px;
    color: #343a40;
    text-align: center;
}

/* Form styling */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: auto;
}

/* Form fields styling */
div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], input[type="number"], textarea, input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="number"]:focus, textarea:focus, input[type="file"]:focus {
    border-color: #007BFF;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Button styling */
button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.service-list {
    margin-bottom: 15px;
}

.service-list input {
    display: inline-block;
    width: 90%;
}

.service-list button {
    display: inline-block;
    width: 8%;
    padding: 6px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
}