/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for the body */
body {
    font-family: Arial, sans-serif; /* Use a web-safe font */
    background-color: #f4f4f4; /* Light background color */
    color: #333; /* Dark text color */
    line-height: 1.6; /* Line height for readability */
    padding: 20px;
}

/* Header Styling */
header {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff; /* White text */
    text-decoration: none;
    font-size: 1.1em;
}

header nav ul li a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Main Section Styling */
main {
    margin-top: 20px;
}

/* Section Styling */
section {
    margin-bottom: 30px;
}

section h1, section h2 {
    color: #333; /* Dark text color for headings */
    margin-bottom: 15px;
}

section p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Services List */
ul {
    list-style-type: square;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Contact Form Styling */
form {
    background-color: #fff; /* White background for the form */
    padding: 20px;
}