.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
}

.about-photo {
    flex: 0 0 300px;
}

.creator-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 255, 0.2);
}

.about-text {
    flex: 1;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-photo {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
        margin-bottom: 30px;
    }
}
