.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(10, 10, 42, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
}

.about-image {
    flex: 0 0 200px;
    margin-right: 30px;
    margin-bottom: 20px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8a2be2;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h1 {
    color: #8a2be2;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    color: #9370db;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #8a2be2;
    padding-bottom: 5px;
}

.about-content p, .about-content ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-content ul {
    list-style-type: none;
    padding-left: 0;
}

.about-content ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.about-content ul li::before {
    content: '•';
    color: #8a2be2;
    position: absolute;
    left: 0;
    top: 0;
}

.intro {
    font-size: 1.1em;
    font-style: italic;
    color: #b19cd9;
}

.skills, .education, .languages, .projects, .interests {
    background-color: rgba(75, 0, 130, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .profile-pic{
        height: 200px;
        width: 200px;
    }
}