.about-content {
    display: flex;
    gap: 4rem;
    color: #333;
}

.profile-image {
    margin-top: 80px;
    flex: 0 0 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    height: fit-content;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.profile-text {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-text h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-section-title {
    color: #667eea;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.about-content li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }

    .profile-image {
        flex: 0 0 250px;
        margin: 0 auto;
        max-width: 300px;
    }

    .profile-text {
        padding: 2rem !important;
    }
}

@media (max-width: 600px) {
    .profile-text {
        padding: 1.5rem !important;
    }

    .profile-text h3 {
        font-size: 1.5rem;
    }

    .about-section-title {
        font-size: 1.3rem;
    }
}
