.jobs-section {
    background: #fff;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}


.jobs-wrapper {
    max-width: 800px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Links uitlijnen */
    text-align: left; /* Tekst links uitlijnen */
    justify-content: center;
    gap: 20px;
}

.jobs-wrapper h2 {
    font-size: 40px; /* Vergroot indien nodig */
    font-weight: 700;
    text-align: left;
    color: #091D28;
    line-height: 1.1;
}

.jobs-description {
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
    max-width: 800px;
    color: #555;
    text-transform: none;
    padding-bottom: 20px; /* Maak ruimte voor lijntje */
    border-bottom: 1px solid #e0e0e0; /* Zelfde lijntje als job-items */
    margin-bottom: 20px; /* Extra marge na lijntje indien gewenst */
}



.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    cursor: default;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    padding-right: 40px; 
}


.job-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #0A1E2C;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: left;
    
}

.toggle-more {
    position: absolute;
    right: 0;
    top: 10px;
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 18px;
    color: #0A1E2C;
    padding: 0;
    transition: transform 0.3s ease;
}

.toggle-more.active {
    transform: rotate(90deg);
}

.job-description {
    flex-basis: 100%;
    padding-left: 0;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
     text-transform: none;
     text-align: left;
}

.arrow-icon-down2 {
    box-sizing: border-box;
    display: inline-block;
    position: relative; 
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.arrow-icon-down2::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    top: 3px;
    left: -4px;
    background-color: #999;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}


.contact-btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 8px 18px;
    border: 1px solid #0A1E2C;
    color: #0A1E2C;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #0c2a3a;
    color: #fff;
}



.more-paragraphs {
    display: none;
    margin-top: 10px;
}

.first-paragraph {
    margin: 10px 0;
}

@media (min-width: 768px) {
    .jobs-section {
        padding: 100px 60px;
    }

    .toggle-more {
        align-self: auto;
    }
}
