.second-part { 
    background: var(--bg-color);
    z-index: 11;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);    
}

.introduction-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;    


}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo {
    flex: 1 1 300px;
    text-align: center;
}

.photo img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info {
    color: var(--test-color);
    flex: 1 1 300px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.radar {
    flex: 1 1 400px;
    height: 400px;
}

@media (max-width: 768px) {
    .introduction-container {
        flex-direction: column;
        text-align: center;      
    }

}

@media screen and (max-width: 425px) {
    .radar{
    height: 260px;
    width: 260px;
    }

}