:root {
    --content_padding: 120px;
}



h1 {
    font-size: 38px;
    margin-bottom: -10px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    margin-top: 20px;
}

h3 {
    margin: 0px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.2px;
}

ul, ol {
    margin: 0px;
    padding-left: 20px;
}

ol {
    margin-left: -4px;
}

li {
    padding-left: 0px;
}

.cv_subtitle {
    font-size: 18px;
    margin: 0;
    margin-bottom: 12px;
    margin-top: -4px;
    font-style: italic;
    opacity: 0.8;
}

.highlight {
    font-size: 66px;
    font-weight: 700;
}

.sidehighlight {
    font-size: 28px;
    margin-left: 40px;
    font-weight: 500;
}

.interpunct {
    margin-left: 12px;
    margin-right: 12px;
}

.content {
    position: relative;
    z-index: 1;
    width: calc(100vw - var(--content_padding) - var(--content_padding));
    height: auto;
    padding-left: var(--content_padding);
    padding-right: var(--content_padding);
}

    .flex_content {
        width: 100%;
        min-height: calc(100vh - 130px);
        height: min-content;
        margin-bottom: 50px;
    }

        .section_outer {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

            .section_inner {
                width: 50%;
            }

        .cv_columns {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
        }

            .cv_column_4 {
                width: 100%;
                margin-top: 2px;
                margin-bottom: 2px;
            }

            .cv_column_4:hover {
                
                cursor: pointer;
            }

.accordion {
    transition: 0.4s;
    font-size: 18px;
}

.accordion:hover {
    text-decoration: underline;
}
  

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.about_me {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 60px;
    margin-top: 30px;
    
}

.about_me_inner {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

.about_me .name {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

.about_me .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    margin: 0;
    margin-bottom: 5px;
    color: white;
    opacity: 0.7;
}

.italic {
    font-style: italic;
}


.about_me .location {
    font-size: 18px;
    margin: 0;
    color: white;
    opacity: 0.8;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.about_me .linkedin {
    display: inline-block;
    padding: 8px 20px;
    background-color: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.about_me .linkedin:hover {
    background-color: #006097;
}

.location_icon {
    width: 18px;
    height: 18px;
}

.education_icon {
    width: 20px;
    height: 20px;
}

.location_icon, .education_icon {
    display: inline-block;
    
    margin-right: 6px;
    margin-top: -2px;
    margin-left: -10px;
    vertical-align: middle;
    fill: white;
}

.location_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: -10px;
}

.location_group, .education_group {
    display: flex;
    align-items: center;
}

.education_group {
    margin-left: 15px;
}

@media screen and (max-width: 767px) { 
    :root {
        --content_padding: 20px;
    }

    .about_me .name {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .about_me {
        margin-top: 62px;
    }

    .about_me .title {
        flex-direction: column;
        font-size: 16px;
        gap: 2px;
    }

    .degree_separator {
        display: none;
    }

    .location_line {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .education_group {
        margin-left: 0;
    }

    .about_me .location {
        font-size: 18px;
    }

    .location_icon, .education_icon {
        margin-left: 0;
        width: 14px;
        height: 14px;
    }

    .section_outer {
        flex-direction: column;
    }

    .section_inner {
        width: 100%;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 28px;
    }

    .highlight {
        font-size: 42px;
    }

    .sidehighlight {
        font-size: 20px;
        margin-left: 20px;
        line-height: 70%;
        margin-bottom: 6px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 16px;
    }

    .cv_subtitle {
        font-size: 14px;
    }

    li {
        font-size: 14px;
    }

    .panel {
        padding: 0 12px;
    }
}

/* Skills Section */
.skills_section {
    margin-top: 20px;
    margin-bottom: 50px;
}

.skills_inner {
    width: 100%;
}

.skills_group {
    margin-bottom: 25px;
}

.skill_heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.skills_list {
    padding-left: 25px;
}

.skills_list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.skills_list strong {
    font-weight: 600;
    opacity: 0.9;
}

@media screen and (max-width: 767px) {
    .skill_heading {
        font-size: 18px;
    }

    .skills_list li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .skills_group {
        margin-bottom: 20px;
    }
}