body {
    font-family: 'Roboto';
    background-color: #0a0e17;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}
a {
    color: #ffffff;
}
.container {
    max-width: 800px;
    margin: 0 auto;
}
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}
.profile-info h1 {
    margin: 0;
    font-size: 24px;
}
.profile-info p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #a0a0a0;
}
h2 {
    font-size: 22px;
    margin-top: 30px;
}
.experience {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}
.company-experience {
    background-color: #1a1f2e;
    padding: 20px;
    border-radius: 8px;
}
.company-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    line-height: 1;
}
.company-logo {
    width: 60px;
    height: 60px;
    margin-right: 20px;
}
.company-name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}
.role {
    margin-bottom: 15px;
    padding-left: 80px;
}
.role:last-child {
    margin-bottom: 0;
}
.role-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1;
}
.role-date {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 5px;
}
.role-description {
    font-size: 14px;
}
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.skill {
    background-color: #1a1f2e;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0.7;
}
.skill:hover {
    opacity: 1;
}
.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
}
.carousel-image {
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    margin: auto;
    width: 80%;
    max-width: 700px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.close {
    color: #f1f1f1;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.fa {
    text-decoration: none;
    margin-right: 0.5em;
    text-decoration: none;
    opacity: 0.6;
}
.fa:hover {
    opacity: 1;
}