@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

header img {
    width: 20%;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav li a {
    text-decoration: none;
    color: #09A85B;
    font-weight: 600;
    font-size: 22px;
    transition: color 0.3s ease;
}

nav li a:hover {
    color: black;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0 auto;
}
main{
    background-color: #f4f4f4;
}
main h1 {
    text-align: center;
    color: #333;
}
main h2 {
    color: #444;
    margin-top: 30px;
}
main .section {
    margin-bottom: 20px;
}
main .subsection {
    margin-left: 20px;
}
main ol {
    margin-left: 20px;
}
main ol ol {
    list-style-type: lower-alpha;
}

footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.ftr_left{
    display: flex;
    width: 50%;
}
.ftr_left ul{
    width: 100%;
    list-style: none;
    display: flex;
    gap: 5%;
}
.ftr_left a{
    text-decoration: none;
    color:#fff
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        
    }
    header img {
        width: 70%;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
}

@media (max-width: 480px) {
    header img {
        width: 70%;
    }
    
    nav ul {
        font-size: 16px;
    }
    
    footer {
        font-size: 14px;
    }
}

