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

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #333;
    padding: 20px;
}

nav ul {
    list-style: none;
}

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

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

/* Main styles */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #007bff;
    color: #fff;
}

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

.btn:hover {
    background-color: #eee;
}

/* Services section styles */
#services {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.service {
    margin-bottom: 30px;
    text-align: center;
    width: 35%;
    padding-bottom: 20px;
    margin: 0 auto;
}

.service img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service h3 {
    color: #007bff;
}

/* About section styles */
#about {
    padding: 50px 20px;
    text-align: center;
}

/* Contact section styles */
#contact {
    background-color: #333; 
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

#contact ul {
    list-style: none;
    margin-top: 20px;
}

#contact ul li {
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    background-color: #333 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    text-align: center !important;
    margin-top: auto !important; /* Push footer to the bottom */
    width: 100% !important;
    position: relative !important;
}