body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin: auto;
}

header {
    background: #4CAF50;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #BBBBBB 3px solid;
}

nav {
    text-align: center;
    padding: 5px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

#home {
    padding: 50px 0;
    text-align: center;
}

#services, #about, #contact {
    padding: 50px 0;
}

.bg-light {
    background-color: #f4f4f4;
}

.service {
    margin-bottom: 30px;
}




/* Class to hide content on mobile devices */
@media screen and (max-width: 768px) { /* 768px is a common breakpoint for tablets */
    .hide-on-mobile {
        display: none;
    }
}

/* Class to hide content on desktop */
@media screen and (min-width: 769px) { /* This will apply to screens larger than 768px */
    .hide-on-desktop {
        display: none;
    }
}


footer {
    text-align: center;
    padding: 30px 20px;
    background: #4CAF50;
    color: white;
}
