.content_section {
    text-align: center;
    padding: 50px 20px;
}

.content_section h2 {
    font-size: 2.5em;
    font-weight: 500;
}

.timeline-container {
    position: relative;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 5.5px;
    height: 4px;
    background-color: black;
    z-index: 1;
    left: calc(12.5%);
    width: calc(75%);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.timeline-item {
    width: 30%;
    text-align: center;
    position: relative;
}

.timeline_dot {
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

.timeline_content {
    margin-top: 15px;
    font-size: 1.3em;
    line-height: 1.5;
}

.content_container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 40px;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120px;
}

.skill img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
    object-fit: contain;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.skill img:hover {
    transform: scale(1.1);
}

.skill p {
    margin-top: 10px;
    font-size: 0.95em;
}

.content_item {
    font-size: 1.3em;
    color: black;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}


.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    margin-right: 8px;
    margin-top: 9px;
}

.experience_content {
    font-size: 1em;
    line-height: 1.5;
    margin-left: 20px;
}

div#cv_div {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4%;
    margin-top: 2%;
    gap: 8em;
}

div.download_cv {
    margin-top: 2%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 0.7em;
    font-family: 'Comfortaa', cursive;
    color: #0a0c20;
    font-size: 1.2em;
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
    padding: 0.5%;
    padding-left: 5%;
    padding-right: 5%;
    background: rgba(222, 240, 252, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.download_cv:hover {
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3), 0 6px 25px 0 rgba(0, 0, 0, 0.39);
}

ion-icon.cv_icon {
    font-size: 2em;
}

img.cv_image {
    margin-top: 10%;
    margin-bottom: 2%;
    width: 100%;
}



@media screen and (max-width: 1800px) {
    .timeline_content {
        font-size: 1em;
    }

    .content_item {
        font-size: 1em;
    }
}

@media screen and (max-width: 1400px) {
    .timeline_content {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 1000px) {
    .timeline_content {
        font-size: 0.8em;
    }
}