body {
	font-family: Arial, sans-serif;
	margin: 0;
	background-color: #f4f6f8;
	color: #333;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px; /* space between logo and text */
}

.header-logo {
	height: 125px;
	width: auto;
	margin-top: 50px; /* ⬅ adjust as needed to align with text */
}

h4 {
	font-family: "Playfair Display", serif;
	font-size: 30px;
	color: rgba(6, 6, 6, 0.915);
	margin-top: -8px;
}

header {
	font-family: "Playfair Display", serif;
	font-style: normal;
	font-size: 40px;
	background-color: #225fb3;
	color: rgba(6, 6, 6, 0.915);
	padding: 15px;
	text-align: center;
}

header h1 {
	position: relative;
	margin-bottom: 0.5rem; /* ⬅ reduce space below h1 */
	padding-bottom: 0.25rem; /* ⬅ pulls lines closer */
}

header h1::after {
	content: "";
	display: block;
	width: 100%;
	max-width: 890px;
	height: 2px;
	background-color: #c9a227;
	margin: 0.25rem auto 0; /* ⬅ reduce gap above first line */
	box-shadow: 0 5px 0 #c9a227; /* ⬅ distance between the two lines */
}

.nav {
	position: relative;
}

/* Hamburger icon */
.hamburger {
	position: absolute;
	top: 1rem;
	left: 1rem; /* ⬅ left side */
	width: 30px;
	cursor: pointer;
	z-index: 2000; /* ⬅ ensure it's above the dropdown */
}

.hamburger span {
	display: block;
	height: 3px;
	background-color: #000;
	margin: 6px 0;
}

/* Dropdown menu */
.dropdown-menu {
	display: none;
	position: absolute;
	top: 3rem;
	text-align: left;
	padding: 0.5rem 0;
	min-width: 180px;
	z-index: 1000;
}

.dropdown-menu a {
	display: block;
	padding: 0.5rem 1rem;
	line-height: 0.5;
	color: #000;
	text-decoration: none;
	text-align: left;
}

.dropdown-menu.open {
	display: block;
}

section {
	padding: 40px;
	text-align: center;
}

.body-centered {
	text-align: center;
	line-height: 2.5;
	font-size: 25px;
	max-width: 1200px;
	margin: 2rem auto 0;
	color: #000; /* ⬅ black text */
}

.body-centered li {
	color: #000;
	margin-bottom: 0.75rem;
	font-size: 17px;
}

.body-centered a,
.body-centered a:visited,
.body-centered a:hover,
.body-centered a:active {
	color: #000; /* ⬅ black link */
	text-decoration: none;
}

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

.links-centered {
	text-align: center;
	line-height: 1;
	max-width: 1200px;
	margin: 2rem auto;
	color: #000; /* ⬅ black text */
}

.links-centered li {
	color: #000;
	margin-bottom: 0.75rem;
}

.links-centered a,
.links-centered a:visited,
.links-centered a:hover,
.links-centered a:active {
	color: #000; /* ⬅ black link */
	text-decoration: none;
}

/*ABOUT PAGE*/

.cv-section p {
	text-align: left;
	line-height: 1.8;
	font-size: 25px;
}

.cv-photo {
	float: left;
	width: 320px; /* adjust as needed */
	margin: 0 20px 5px 0; /* space between image and text */
	border-radius: 4px; /* subtle polish */
}
.cv-photo {
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

button {
	background-color: #1f4f9c;
	color: white;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
}

button:hover {
	background-color: #0f2f5c;
}

.site-footer {
	background-color: #225fb3; /* same blue as header */
	color: #fff;
	text-align: center;
	padding: 20px 10px;
	font-size: 14px;
	margin-top: 40px;
}

.site-footer p {
	margin: 5px 0;
}

.site-footer a {
	color: #fff;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.privacy-content {
	max-width: 900px;
	margin: 2rem auto;
	padding: 0 20px;
	text-align: left; /* ⬅ aligns text to left margin */
	line-height: 1.6;
	color: #000;
}

.terms {
	max-width: 900px;
	margin: 2rem auto;
	padding: 0 20px;
	text-align: left; /* ⬅ aligns text to left margin */
	line-height: 1.6;
	color: #000;
}
