*,
::before,
::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body ,
html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.mt-48 {
    margin-top: 48px
}

h1 {
    color: #000000;
    font-size: 48px;
    line-height: normal;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px
}

h2 {
    color: #000000;
    font-size: 26px;
    line-height: 32px;
    font-weight: 900;
    margin-bottom: 20px
}

 h3 {
    color: #000000;
    font-size: 20px;
    line-height: 24px;
    font-weight: 900;
    margin-bottom: 10px
}

p {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 24px
}

ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 20px
}

ul li {
    list-style: disc
}

ol li {
    list-style: decimal
}

 ul li, ol li {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    margin-bottom: 5px
}


img {
    max-width: 100%;
    height: auto
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background: green;
}

.header-container {
    max-width: 1022px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

span.logo-text {
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

nav.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu a {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 6px;
}

.lang-dropdown {
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #000000;
}

.lang-button span {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

.menu-toggle {
    border: 0;
    background: #fff0;
    cursor: pointer;
    display: none;
}

.lang-menu {
    position: absolute;
    padding: 8px;
    background-color: green;
    border-radius: 6px;
    width: 130px;
    top: 45px;
    right: 0;
}

footer{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background: green;
}

.footer-container {
    max-width: 1022px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5px 30px;
    flex-wrap: wrap;
}

.footer-container a {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;

}

.main-container {
    max-width: 1022px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
}

.main-content {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 40px 15px;
}

.main-content img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}




@media (max-width: 767px) {

    button.menu-toggle {
        display: block;
    }

    .menu-section {
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        height: auto;
        background-color: green;
        display: block;
        padding-bottom: 15px;
        display: none;
    }

    nav.menu{
        display: block;
        padding: 0 16px;
    }

    .menu a {
        display: block;
    }

    .lang-button {
        align-items: center;
        justify-content: flex-start;
    }

    .lang-menu {
        width: 100%;
        position: unset;
    }

    .main-content {
        padding: 20px 15px;
    }

    h1 { 
        font-size: 28px;
    }
}


