body {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 40px;
}

/* Card Container Styling to match screenshot 2 */
.profile-card {
    background: #fff;
    border: none;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); /* Soft shadow */
    padding: 25px;
    transition: transform 0.2s ease;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Image Styling - Circular */
.profile-img-container {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 50%; /* Makes it circular */
    background-color: #eee;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 13px;
    color: #777;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.4;
}

.profile-education {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.4;
}

.profile-pi-role {
    font-size: 13px;
    color: #777;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Interest List Styling */
.interest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interest-item {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.interest-icon {
    font-size: 12px;
    color: #666;
    margin-right: 10px;
    width: 15px; /* Fixed width for alignment */
}

/* Social Links - Optional, kept discreet to match clean aesthetic */
.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #333;
    margin-right: 12px;
    font-size: 16px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .card-body-flex {
        flex-direction: column;
        text-align: center;
    }
    .profile-img-container {
        margin-right: 0;
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
    }
    .interest-item {
        justify-content: center;
    }
}