/* Container and text adjustments */
.bio-container h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.bio-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Divider line */
.bio-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* Profile Links Layout */
.profile-links {
    margin-top: 15px;
}

.profile-links p {
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #666;
}

/* Link Button Styling */
.link-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 16px;
    margin-right: 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.github-link {
    background-color: #24292e;
    color: #fff;
}

.github-link:hover {
    background-color: #444c56;
}

.linkedin-link {
    background-color: #0077b5;
    color: #fff;
}

.linkedin-link:hover {
    background-color: #005987;
}