.bio-card {
    background-color: lightgray;
    border-radius: 8px; /* Standard professional curving */
}

/* Overall page background and typography */
body {
    background: linear-gradient(135deg, #f6f8fb 0%, #eef4fb 100%);
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Centered container with breathing room (note: Index uses "Container" with capital C)
   so we style both forms) */
.Container, .container {
    max-width: 1100px;
    margin: 2.25rem auto;
    padding: 1.25rem;
}

/* Profile image styling */
.Container img, .container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

/* Card appearance tweaks */
.card {
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(20,30,60,0.08);
}
.card-title { color: #1f6feb; font-weight: 600; }
.card-text { color: #444; }

/* Small helpers */
a.text-decoration-none { color: inherit; }

ul {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

ul li {
    margin-bottom: 10px; /* Add spacing between items */
    font-size: 1.15rem; /* Slightly larger text for readability */
    color: #1f2937;
}

/* Accent for headings */
h3, .card-title {
    color: #0f172a;
}

/* Slight spacing for the main intro paragraph */
.Container p, .container p {
    line-height: 1.6;
    color: #2b3440;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .Container, .container { padding: 0.75rem; }
    ul li { font-size: 1.05rem; }
}
