body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
/* For better hyphenation support */
p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation Links */
.nav-link {
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2b6cb0;
    background-color: #ebf8ff;
}

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

main {
    flex: 1; /* Grow to fill available space */
}

footer {
    flex-shrink: 0; /* Prevent footer from shrinking */
}

/* Remove gap between last section and footer */
main > section:last-child {
    margin-bottom: 0 !important;
}
/* style.css addition */
ul.list-disc.pl-6 li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
