body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4f3b78;
    color: white;
    text-align: center;
    padding: 1em 0;
}

nav {
    background-color: #3a2a59;
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 2em;
    background-color: white;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #4f3b78;
}

.bio-philosophy-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between;
    align-items: center;
}

.bio-philosophy-text {
    flex: 1;
    padding-right: 20px;
    margin-bottom: 20px; /* Add space below text on mobile */
}

.bio-image-container {
    flex-shrink: 0;
    margin-bottom: 20px; /* Add space below image on mobile */
    text-align: center; /* Center the image on smaller screens */
}

.bio-image {
    max-width: 200px;
    border-radius: 50%;
    width: 100%; /* Ensure the image scales on mobile */
    height: auto;
}

ul {
    padding-left: 20px;
}

ul ul {
    padding-left: 20px;
}

.health-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}


/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 1em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .bio-philosophy-container {
        flex-direction: column;
        text-align: center;
    }

    .bio-philosophy-text {
        padding-right: 0;
    }

    .bio-image-container {
        margin-bottom: 20px;
    }

    main {
        padding: 1em;
        box-shadow: none;
    }
}
footer {
    background-color: #4f3b78;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

.contact-link {
    color: #ffcc00; /* Bright color for visibility */
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

