html {
    background-color: rgb(10, 10, 10);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-padding-top: 215px;
}

*, *::before, *::after {
    box-sizing: inherit;
    user-select: none;
    /* border: solid red 1px; */
}

body {
    max-width: 1000px;
    width: 100%;               
    min-width: 300px;             
    background-color: rgb(243, 237, 237);
    padding: 0;
    margin: 0 auto;
    font-family: sans-serif;
}

header {
    position: sticky;
    top: 0;
    max-width: 1000px;
    width: 100%;
    height: 200px;
    min-height: fit-content;
    background-color: rgb(243, 237, 237);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
}

#logo {
    position: absolute;
    top: 50%;
    transform: translate(10%, -50%);
    max-width: 250px;
    width: 100%;
    min-width: 100px;
    margin-top: 20px;
    padding: 10px;
    align-items: center;
}
#navContainer{
    position: fixed;
    max-width: 1000px;
    width: 100%;
    height: calc(100% - 255px);
    text-align: center;
    display: none;
    justify-content: center;
    align-content: center;
    font-size: 25px;   
    background-color: rgb(243, 237, 237);
    z-index: 100;
}
#navContainer ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
#hamburgerContainer{
    padding: 5px;
    width: 30px;
    height: 30px;
    top: 60%;
    position: absolute;
    right: 10%;
    transform: translate(0,-50%);
    padding: 20px;
    cursor: pointer;
}
#hamburger {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    transform: translate(-50%, -50%);
}
#hamburger::before, #hamburger::after {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: black;
    content: "";
    transition: transform 0.3s ease, top 0.3s ease;
    transform-origin: center;
}
#hamburger::before { 
    top: -10px; 
}
#hamburger::after { 
    top: 10px; 
}
#hamburger.active {
    background-color: transparent;
}

#hamburger.active::before {
    top: 0;
    transform: rotate(45deg);
}
#hamburger.active::after {
    top: 0;
    transform: rotate(-45deg);
}
a{
    text-decoration: none;
    color: black;
}
a:hover{
    color: #333333;
}
main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
}
section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
section:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: rgb(10, 10, 10);
    font-size: 1.5rem;
}
p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #333333;
}
p:last-of-type {
    margin-bottom: 0;
}
section ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}
section li {
    margin-bottom: 12px;
    line-height: 1.4;
}
footer {
    position: sticky;
    bottom: 0;
    text-align: center;
    background-color: rgb(243, 237, 237);
    padding: 20px 0;
    z-index: 100;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}