#achievements {
    margin: 100px 0 56px 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    color: rgb(255, 255, 255);
    background-color: #1a1919;
    padding: 0 200px;
}

.accordion {
    background-color: #242424;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 8px;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
    margin-bottom: 32px;
}

.accordion:focus {
    outline: none;                  /* Remove the default focus outline */
    box-shadow: none;               /* Remove any focus box-shadow */
}

.panel {
    width: 100%;
    display: none;
    flex-direction: row;
    align-items: center;
    background-color: #343434;
    overflow: scroll;
    border-radius: 0 0 8px 8px;     /* Bottom-left and bottom-right radius */
    margin-top: -8px;               /* Adjust to align with the accordion */
}

.activeaccordion {
    border-radius: 8px 8px 0 0;     /* Top-left and top-right radius when active */
    margin-bottom: 0;               /* Remove margin-bottom when active to avoid gaps */
}

.activeaccordion+.panel {
    margin-bottom: 32px;            /* Add margin-bottom to the panel when active */
}

.pdf {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Style the tab */
.tab {
    float: left;
    border: none;
    background-color: #282828;
    width: 30%;
    height: 400px;
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    background-color: inherit;
    color: white;
    padding: 22px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover,
.tab button.active:hover {
    background-color: #313131;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #414141;
    border-left: 6px solid #68d5f9;
    padding: 22px 10px;
}

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 12px;
    width: 70%;
    border: none;
    height: 400px;
}

.tabcontent h3 {
    margin-bottom: 16px;
}