/* GENERAL */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f7f9fb;
	color: #222;
}

h1,
h2 {
	margin: 0 0 10px;
}

/* NAVBAR */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #2b6cb0;
	padding: 15px 30px;
	color: white;
}

.navbar ul {
	display: flex;
	list-style: none;
	gap: 20px;
}

.navbar a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.navbar a.active,
.navbar a:hover {
	text-decoration: underline;
}

/* BANNER */
.banner {
	position: relative;
}

.banner img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

.banner-text {
	position: absolute;
	bottom: 30px;
	left: 40px;
	color: white;
	text-shadow: 0px 2px 5px black;
}

/* PROFILE BANNER */
.profile-banner {
	position: relative;
}

.profile-banner img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.profile-banner h1 {
	position: absolute;
	bottom: 20px;
	left: 30px;
	color: white;
	font-size: 40px;
}

/* HEADQUARTER */
.hq-section {
	padding: 40px;
	text-align: center;
}

.hq-container {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 20px;
}

.hq-item img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid #2b6cb0;
}

.hq-item p {
	margin-top: 10px;
}

/* MESSAGE FORM */
.message-section {
	padding: 40px;
}

.form-wrapper {
	display: flex;
	gap: 30px;
}

form {
	width: 50%;
	display: flex;
	flex-direction: column;
}

form input,
form textarea {
	margin-bottom: 15px;
	padding: 8px;
}

button {
	padding: 10px;
	background: #2b6cb0;
	color: white;
	border: none;
	cursor: pointer;
	font-weight: bold;
}

button:hover {
	background: #225a93;
}

.result-box {
	padding: 20px;
	background: #eef3ff;
	border-radius: 10px;
	width: 40%;
}

/* FOOTER */
footer {
	text-align: center;
	padding: 20px;
	background: #2b6cb0;
	color: white;
	margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hq-container {
		flex-direction: column;
	}

	.form-wrapper {
		flex-direction: column;
	}

	form,
	.result-box {
		width: 100%;
	}
}
