
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.profile {
    margin: 30px 0;
}

.profile-img {
    width: 150px;
    height: 150px;
   border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}
    

.profile h1 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

.profile p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 80%;
    margin: 0 auto;
}

.links {
    margin: 30px 0;
}

.link-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-text {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.advisor-btn {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.advisor-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.advisor-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

footer {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}


@media (max-width: 480px) {
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .profile h1 {
        font-size: 24px;
    }
    
    .link-item {
        padding: 12px 15px;
    }
}