/* Basic Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

#hero h1 {
    font-size: 2.5em;
}

#hero p {
    font-size: 1.2em;
}

#hero .btn {
    background-color: #fff;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

#hero .btn:hover {
    background-color: #e0e0e0;
}

/* Services Section */
#services {
    background-color: white;
    padding: 50px 20px;
    text-align: left;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
}

#services article {
    margin-bottom: 30px;
}

#services h3 {
    color: #007bff;
}

/* About Section */
#about {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

#about h2 {
    text-align: center;
    margin-bottom: 40px;
}

#about ul {
    list-style: none;
    padding: 0;
}

#about ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Contact Section */
#contact {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
}

#contact form {
    display: inline-block;
    text-align: left;
}

#contact form label {
    display: block;
    margin-bottom: 5px;
}

#contact form input, 
#contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contact form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

#footer-links {
    text-align: center;
    margin-top: 20px;
}

#footer-links ul {
    list-style: none;
    padding: 0;
}

#footer-links ul li {
    display: inline;
    margin: 0 10px;
}

#footer-links ul li a {
    color: white;
    text-decoration: none;
}

#footer-links ul li a:hover {
    text-decoration: underline;
}
