body, button, select, input, label {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 102%;
}
header,
nav,
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #ffffff; /* Updated background color */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); /* Added box shadow */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0; /* Removed default margin */
}

nav ul li {
    display: inline;
    margin-right: 20px;
    position: relative;
}
a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 700; /* Added font weight */
}

a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

a:hover {
    color: #0084ff;
}

a:hover::after {
    transform: scaleX(1);
}

footer {
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;

}
#page-footer {
    display: none; /* Initially hide the footer */
}
body {
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

form {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
}

label {
    font-weight: bold;
}

input,
select {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

button {
    background-color: #333;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #444;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.name-input-container {
    display: flex;
    justify-content: space-between;
}

.name-input-field {
    width: 48%;
}

.package-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.package-section,
.package-description {
    width: 48%; /* Adjust width as needed */
}
.service_description{
    width: 48%; /* Adjust width as needed */
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-left: 7px;
    font-family:'Times New Roman', Times, serif;
    font-size: 18px;
    align-self: center;
}
.package-section {
    margin-right: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.package-description {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.package-description p {
    padding-left: 7px;
    font-family:'Times New Roman', Times, serif;
}
.service-item {
    margin-bottom: 10px; /* Add spacing between checklist items */
}

.service-item label {
    margin-left: 5px; /* Add spacing between checkbox and label */
    font-weight: normal; /* Reset font weight */
}
/* Style for Year, Make, and Model dropdowns */
.dropdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px; /* Adjust the gap between dropdowns */
}
.year-dropdown {
    width: 17%; /* Adjust the width of the Year dropdown */
}

.make-dropdown {
    width: 40%; /* Adjust the width of the Make dropdown */
}

.model-dropdown {
    width: 40%; /* Adjust the width of the Model dropdown */
}
.dropdown-container{
    font-size: 14.5px;
}