@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,600;0,900;1,300;1,400;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #f6f8fc;
    /* background-image:url(../userregistration/images/PaperShare2.png); */
    min-height: 100%;
    display: flex; 
    flex-direction: column;
}
.wrapper {
    display: flex;
    flex-direction: column; /* Aanpassing voor mobile */
}
nav {
    position: fixed;
    top: 70;
    left: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav li {
    margin: 20px 0;
    transition: all 0.3s ease;
}
nav li a {
    color: #3586ff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: all 0.3s ease;
}
nav li a:hover, nav li.active a {
    font-size: 22px;
    color: #00265f;
    font-weight: 700;
}
nav li .nav__counter {
    font-size: 16px;
    color: #bbb;
}
.content {
    margin-left: 250px;
    width: calc(100% - 250px);
    transition: margin-left 0.3s ease; /* Transitie voor margin */
}
section {
    position: relative;
    height: 60vh;
    padding: 20px; /* Kleine padding rondom de sectie */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Zorgt ervoor dat de inhoud bovenaan de sectie staat */
    background-color: #f4f4f4;
    transition: background-color 0.3s ease;
}
.section-button {
    margin-top: 20px;
    padding: 10px;
    width: 100px;
    background-color: #3586ff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.section-button:hover {
    background-color: #00265f;
}
section:nth-child(odd) {
    background-color: #f4f4f4;
}
section:nth-child(even) {
    background-color: #ddd;
}
section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    padding-left: 15px;
}
section p {
    font-size: 18px;
    line-height: 1.6;
    padding-right: 50px;
    padding-left: 15px;
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    nav {
       display: none;
    }
    .content {
        margin-left: 0;
        width: 100%;
    }
    section {
        padding: 20px 20px;
        height: 80vh;
    }
    section h2 {
        font-size: 28px;
    }
    section p {
        font-size: 16px;
    }
}