/* Profile Card Styles */
.profile-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid #e1e5e9;
}

.profile-image {
    margin-bottom: 25px;
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e74c3c;
}

.profile-name {
    font-size: 28px;
    font-weight: 600;
    color: #007cba;
    margin: 15px 0 10px 0;
    line-height: 1.2;
}

.profile-title {
    color: #666;
    font-size: 16px;
    margin: 0 0 25px 0;
    font-weight: 400;
}

.profile-main-heading {
    font-size: 22px;
    font-weight: 600;
    color: #2c5aa0;
    margin: 20px 0;
    line-height: 1.3;
}

.profile-date {
    color: #888;
    font-size: 14px;
    margin: 15px 0 30px 0;
    font-weight: 400;
}

.profile-about-heading {
    font-size: 20px;
    font-weight: 600;
    color: #2c5aa0;
    margin: 25px 0 20px 0;
    text-align: left;
}

.profile-description {
    text-align: left;
    line-height: 1.6;
}

.profile-description p {
    color: #444;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-card {
	width: 90%;
        padding: 30px 20px;
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-main-heading {
        font-size: 20px;
    }
    
    .profile-about-heading {
        font-size: 18px;
    }
}
