/* Reset some default browser styles */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-image: url('images/background.png');
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-attachment: fixed; /* Keep the background image fixed during scroll */
}

/* Navigation Bar and Footer Styles */
nav, footer {
    background: rgba(51, 51, 51, 0.9); /* Darker, still semi-transparent */
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a, footer a {
    text-decoration: none;
    color: #fff;
}

/* Link Hover Effect */
nav ul li a:hover, nav ul li a:focus, footer a:hover {
    text-decoration: underline;
}

/* Main Content Style */
main {
    padding: 20px;
    background: rgba(200, 200, 200, 0.9); /* Light grey, more opaque */
    margin: 20px 0 40px; /* Added bottom margin for spacing before the footer */
}

/* Service Sections and Form Styles */
section, form {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(245, 245, 245, 0.9); /* Slightly lighter grey, more opaque */
}

/* Button Styles */
button, main a {
    display: inline-block;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
}

button:hover, main a:hover {
    background: #555;
}

/* Form Input Styles */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    width: 100%;
    padding: 10px;
}

