body {
	font-family: Arial, sans-serif;
	font-size: 14px;
}
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #fff;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

nav li {
	flex: 1;
	text-align: center;
	padding: 20px;
}

nav a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}

nav a:hover {
	text-decoration: underline;
}

.hamburger-menu {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-around;
	width: 25px;
	height: 20px;
}

.hamburger-menu div {
	width: 100%;
	height: 4px;
	background-color: #fff;
}

@media (max-width: 767px) {
	nav ul {
		display: none;
	}

	.hamburger-menu {
		display: flex;
	}
}

main {
	margin-top: 80px;
}

section {
	padding: 20px;
	margin: 40px;
	border: 1px solid #ddd;
}

section h1 {
	font-size: 36px;
}

section h2 {
	margin-top: 0;
}
.responsive-grid {
	max-width: 900px;
	margin: 0 auto;
}

.grid-row {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 16px;
}

.grid-header {
	font-weight: bold;
	padding: 8px;
	box-sizing: border-box;
	min-width: 150px;
	margin-right: 16px;
}

.grid-content {
	flex: 1;
	padding: 8px;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.grid-row {
		flex-direction: column;
	}

	.grid-header {
		margin-right: 0;
		margin-bottom: 8px;
	}
}

.experience-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.experience-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.experience-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.experience-heading {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.experience-item h3,
.experience-item h4 {
	margin: 0;
}

.experience-item p {
	margin: 0;
}

.experience-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.experience-item ul li::before {
	content: "• ";
	margin-right: 5px;
}

.contact-details {
	font-size: 14px;
	margin-bottom: 20px;
}
ul {
	list-style-type: disc;
	margin-bottom: 20px;
	text-indent: -15px;
}

li {
	margin-bottom: 10px;
	margin-left: 20px;
}

