/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffff5;
    color: #333;
}



main {
    padding: 20px;
    text-align: center;
}

section {
    margin: 20px 0;
}

footer {
    background-color: #00796b;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Home Section Styles */
#home {
  
    padding: 20px 0;
}

#home h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#home img {
    max-width: 400px;
    margin: 0 auto;
}

/* About Section Styles */
#about h2, #services h2, #contact h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

#about p {
    font-size: 1.1em;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

/* Services Section Styles */
#services ul {
    list-style: none;
    padding: 0;
}

#services ul li {
    background-color: #b2dfdb;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.1em;
}

/* Contact Section Styles */
#contact p {
    font-size: 1.1em;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

#contact a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    #home h1 {
        font-size: 2em;
    }

    #home p {
        font-size: 1em;
    }

    #home img {
        max-width: 250px;
    }

    #about h2, #services h2, #contact h2 {
        font-size: 1.5em;
    }

    #about p, #contact p {
        font-size: 1em;
    }

    #services ul li {
        font-size: 1em;
    }
}
