body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px 0; /* Added padding at the top */
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns content to the top */
}
        table {
            width: 80%;
            border-collapse: collapse;
            margin: 20px auto;
            font-family: Arial, sans-serif;
        }
        th, td {
            border: 1px solid black;
            padding: 10px;
            text-align: center;
        }
        th {
            background-color: #f4f4f4;
        }
        .container {
            max-width: 800px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-top: 100px;
        }
        .header {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: left;
            margin-bottom: 20px;
        }
        .header img {
            width: 100px; /* Passport photo size */
            height: 100px;
            border-radius: 25px;
            margin-left: 20px;
        }
        h1 {
            color: #333;
            font-size: 28px;
            margin: 0;
        }
        h2 {
            color: #333;
        }
        .contact-info {
            margin-bottom: 20px;
        }
        .section {
            margin-bottom: 20px;
            text-align: left;
        }
        a{
			color: aliceblue;
		}
		.navbar {
					position: fixed;
					top: 0;
					left: 0;
					width: 100%;
					background-color: #212529;
					display: flex;
					justify-content: space-between;
					align-items: center;
					padding: 10px 20px;
					z-index: 1000;
					font-family: Segoe system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
				}

				.navbar-left {
					display: flex;
					align-items: center;
				}

				.navbar-brand {
					color: white;
					font-size: 20px;
					text-decoration: none;
					margin-right: 20px;
					font-family: Segoe system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
					
				}

				.nav-links {
					list-style: none;
					display: flex;
					gap: 80px;
					margin: 0;
					padding: 0;
				}

				.nav-links li {
					display: inline;
				}

				.nav-links a {
					text-decoration: none;
					color: #aaa;
					font-size: 16px;
					transition: color 0.3s;
				}

				.nav-links a:hover, .nav-links a.active {
					color: white;
				}

				@media (max-width: 768px) {
					.navbar {
						flex-direction: column;
						align-items: flex-start;
					}

					.nav-links {
						flex-direction: column;
						width: 100%;
						gap: 10px;
					}

					.login-btn {
						margin-top: 10px;
					}
				}
				table{
					color: black;
				}
