
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    scroll-behavior: smooth;
    line-height: 1.6;
}
h1, h2 {
    color: #333;
}
a {
    text-decoration: none;
    color: white;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
#header {
    position: sticky;
    top:0;
    display: grid;
    grid-template-columns: 70% auto auto auto auto;
    padding: 20px;
    background-color: #096C6C;
    color: white;
}
#header .logo {
    position: sticky;
}
#navbar {
    display: grid;
    grid-auto-flow: column;
    list-style: none;

}
#navbar li {
    padding: 10px;
}
#navbar a {
    color: white;
    font-weight: bold;
    padding: 50 px;
}

#section {
    height: 100vh;
    background-color: rgb(167, 167, 167);
    display: grid;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.sectioncontent h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.section1 {
    background-color: #096C6C;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.section1:hover {
    background-color: #096C6C;
}

#about {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}
#about h2 {
    margin-bottom: 20px;
}
#about p {
    color: #555;
}

#services {
    padding: 50px 20px;
    text-align: center;
}
#services h2 {
    margin-bottom: 20px;
}
.service-item {
    margin: 10px;
    padding: 20px;
    background:#096C6C;
    border-radius: 5px;
}
#contact {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
}
#contact h2 {
    margin-bottom: 20px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
.instagram {color: black;}
