body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #fafafa;
}

.top-bar {
	color: #ffffff;
	background-color: #0064c8;
	padding: 10px 20px;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar .left a {
	color: #ffffff;
	text-decoration: none;
	margin-right: 15px;
}

.top-bar .left i, .top-bar .right i {
	margin-right: 5px;
	color: #ffffff;
}

.main-header {
	background-color: #003264;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	flex-wrap: wrap;
}

.main-header .logo img {
	height: 50px;
}

.menu a {
	color: #ffffff;
	text-decoration: none;
	margin-left: 11px;
	font-size: 14px;
}

.menu a:hover {
	text-decoration: underline;
}

.footer {
	background-color: #003264;
	color: #ffffff;
	text-align: center;
	padding: 15px;
	font-size: 14px;
}

/* Responsive Menü */
.menu .icon {
	display: none;
}

/* WhatsApp Butonu */
.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #32c864;
	color: #ffffff;
	font-size: 22px;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	z-index: 1000;
	transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
	background-color: #64c864;
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.menu a {
		display: none;
	}

	.menu.responsive a {
		display: block;
		margin: 10px 0;
	}

	.menu .icon {
		display: block;
		margin-left: auto;
	}
}