/* About Section */
.about {
    background-color: #e4e1dc;
}

.about__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.about__info, .about__skills, .about__hobbies {
    flex: 1;
    min-width: 300px;
}

.about__info-title, .about__skills-title, .about__hobbies-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.about__info-title::after, .about__skills-title::after, .about__hobbies-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #6c63ff;
}

.about__info-item {
    margin-bottom: 15px;
}

.about__info-label {
    font-weight: 600;
    color: #555;
    margin-right: 10px;
}

.about__info-value {
    color: #666;
}

.about__info-languages {
    color: #666;
    list-style-type: none; /* Removes circles */
    padding-left: 0;
}

.about__skill-item {
    margin-bottom: 20px;
}

.about__skill-name {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.about__skill-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.about__skill-level {
    height: 100%;
    background: #6c63ff;
    border-radius: 5px;
}
