.main {
    max-width: 1170px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    margin: 0 auto;
}


.main-profile {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    border: 1px solid #CECECE;
    box-shadow: 0 4px 4px #866cf833;
    margin-bottom: 100px;
}

.profile-header {
    position: relative;
    height: 200px;
}

.profile-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    bottom: -40px;
    left: 24px;
}

.profile-info {
    padding: 48px 24px 24px;
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.profile-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.profile-skills {
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-tag {
    background: #f0f0ff;
    color: #6366f1;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .main {
        padding: 20px;
    }

    .main-profile {
        width: 100%;
    }

    .profile-header {
        height: 150px;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
        bottom: -30px;
    }

    .profile-info {
        padding: 36px 16px 16px;
    }

    .profile-skills {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 20px;
    }

    .profile-location {
        font-size: 12px;
    }
}