body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2F3C47;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.container {
    width: 80%;
    max-width: 900px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 2px solid #dcdcdc;
    position: relative;
    margin-top: 50px;
}
header {
    text-align: center;
    border-bottom: 2px solid #dcdcdc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #714B67;
}
section {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.icon-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.icon-section i {
    font-size: 2em;
    color: #306998;
    margin-right: 15px;
}
.timeline {
    list-style: none;
    padding: 0;
}
.timeline li {
    margin-bottom: 30px;
    padding-left: 20px;
    position: relative;
}
.timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #714B67;
    border-radius: 50%;
}
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.skills span {
    background: #306998;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
}
footer {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #dcdcdc;
    margin-top: 20px;
    font-size: 1em;
}
