<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: left !important;

        }

        .container {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            width: 100%;
            text-align: left !important;
        }

        h1 {
            color: #2d3748;
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
            line-height: 1.3;
            text-align: center;
        }

        h2 {
            color: #2d3748;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
            text-align: center;
        }

        p {
            color: #4a5568;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            overflow-wrap: break-word;
			word-break: keep-all;
            hyphens: none;
        }

        .section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #f0f0f0;
        }

        .email-img {
            display: block;
            min-width: 200px;
            max-width: 400px;
            width: 30%;
            height: auto;
            margin: 1rem auto;
        }

        a {
            color: #2B6CB0;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .italics {
            font-style: italic;
            color: #666;  /* Slightly muted color for the notice */
            font-size: 1rem;
            text-align: left;
        }

        .campus-image {
            min-width: 200px;
            width: 75%;
            height: auto;
            display: block;
            margin: 2rem auto;
        }

        .image-caption {
            text-align: center;
            font-size: 0.6rem;
            font-style: italic;
            color: #666;
            margin-bottom: 2rem;
         }
         .person-container {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .headshot {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;  /* Prevents image from shrinking */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .person-info {
            flex-grow: 1;  /* Takes up remaining space */
            text-align: left;
        }

        .person-info-text-centered {
            flex-grow: 0;  /* Don't grow */
            margin-right: 0;  /* Remove right margin */
            padding-right: 0;  /* Remove right padding */
            text-align: center;
        }

        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }

            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            p {
                font-size: 1rem;
            }
        }

		nav {
			display: flex;
			gap: 1.5rem;
			justify-content: center;
			margin-bottom: 2rem;
			flex-wrap: wrap;
		}

		nav a {
			font-size: 1.05rem;
			font-weight: 600;
			color: #d22b43;
			text-decoration: none;
			padding: 0.3rem 0.6rem;
			border-radius: 5px;
			transition: background 0.2s;
		}

		nav a:hover {
			background: #f5f7fa;
			text-decoration: none;
		}

		nav a.active {
			border-bottom: 2px solid #d22b43;
		}

		.headshot-placeholder {
			width: 150px;
			height: 150px;
			border-radius: 50%;
			background: #e2e8f0;
			flex-shrink: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #a0aec0;
			font-size: 3rem;
		}
			</style>
