/* Reset default browser styles */
body, h1, h2, h3, p, ul, li, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set body font and background color */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.logo {
    width: 250px; /* Adjust the width as needed */
    padding: 0px; /* Add padding around the logo */
}

/* Container for centralizing content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #f4f4f4; /* Change to your desired background color */
    color: #333;
    padding: 20px 0;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

header nav ul {
    list-style: none;
}

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

header nav ul li a {
    color: #333;
    text-decoration: none;
}

/* Hero section styles */
#hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#hero h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Services section styles */
#services {
    background-color: #fff;
    padding: 50px 0;
    text-align: left;
}

#services h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#services ul {
    list-style: none;
}

#services ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* About section styles */
#about {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: left;
}

#about h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact section styles */
#contact {
    padding: 50px 0;
    text-align: center;
}

#contact h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#contact form input,
#contact form textarea {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#contact form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#contact form button:hover {
    background-color: #0056b3;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 14px;
}
