/* About Section */
.about {
    padding: 20px 0 20px;

}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.skills {
    margin: 30px 0;
}

.skill {
    margin-bottom: 15px;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background-color: #e9e9e9;
    border-radius: 5px;
    margin-top: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background-color: var(--primary-color);
}