  /*------- start scherm ---------*/
@font-face {
  font-family: "Dax Wide Bold";
  src: url("../fonts/DaxWide Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Dax Wide Regular";
  src: url("../fonts/DaxWide Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.start-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    height:auto;
    padding: 24px;    
    background: transparent;
    font-family: "Dax Wide Regular", sans-serif;
}
#endScreen{
    display:none;
}
.start-card {
    position: relative;
    max-width: 780px;    
    padding: 32px;    
    text-align: center;
    background-color: rgba(255,255,255,0.9);
    border-top-left-radius: 40px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 1);
    
}


.start-card h1 {
   font-family: "Dax Wide Bold", sans-serif;
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 0.95;
    color: #095ea7;
}

.start-card p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: #095ea7;
}

.start-button {
    position: absolute;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    background: #095ea7;
    /* border-top: 3px solid #095ea7; */
    border-bottom: 3px solid #03467e;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.1s ease;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
}

.start-button:hover {    
    transform: translate(-50%, 3px);
    background: #5CA032;
    /* border-top: 03px solid #5CA032; */
    border-bottom: 0px solid #5CA032;
    transition: all 0.1s ease;
    padding: 14px 22px;    
}
.button-arrow{
    width: 16px;
    position: relative;
    top: 3px;
    left: 5px;
    transition: all 0.1s ease;
}
.start-button:hover .button-arrow{
    width: 16px;
    position: relative;
    top: 3px;
    left: 8px;
    transition: all 0.1s ease;
}
.start-toc {
    text-align: left;
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(16,32,51,0.12);
    border-radius: 18px;
    display: none;
}

.start-toc p {
    margin: 0 0 10px;
    font-weight: 700;
    color: #102033;
}

.start-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.start-toc li {
    margin: 0 0 10px;
}

.toc-link {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    background: #f4f7fb;
    color: #102033;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.toc-link:hover {
    background: #e2e8f0;
}

.toc-toggle-button {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1200;
    border: 0;
    border-radius: 999px;
     padding: 14px 22px;
    background: #095ea7;
    border-top: 3px solid #095ea7;
    border-bottom: 3px solid #03467e;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(16, 32, 51, 0.18);
}

.toc-toggle-button:hover {
        background: #5CA032;
    border-top: 03px solid #5CA032;
    border-bottom: 0px solid #5CA032;
    transition: all 0.1s ease;
    padding: 14px 22px;    
}

.toc-panel {
    display: none;
    position: fixed;
    top: 70px;
    right: 18px;
    z-index: 1200;
    width: min(360px, calc(100% - 36px));
    max-width: 360px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(16, 32, 51, 0.18);
    padding: 22px;
    backdrop-filter: blur(8px);
}

.toc-panel.open {
    display: block;
}

.toc-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.toc-panel-header h2 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #102033;
}

.toc-close {
    border: 0;
    background: transparent;
    color: #102033;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
}
.nav{
    width: 720px;
}
.nav-p{

}