@charset "ISO-8859-1";

/* Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden; 
}

section {
	padding: 80px 0;
}

h1, h2, h3, h4 {
	color: #004a99;
}

.btn {
	display: inline-block;
	background: #0077cc;
	color: white;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background: #005fa3;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 119, 204, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid #0077cc;
	color: #0077cc;
}

.btn-outline:hover {
	background: #0077cc;
	color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.section-title:after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #0077cc;
	margin: 15px auto 0;
	border-radius: 2px;
}


/* Header Styles */
header {
	background: white;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 45px;
	margin-right: 12px;
}

.logo-text {
	font-size: 24px;
	font-weight: 700;
	color: #004a99;
}

.logo-text span {
	color: #0077cc;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 25px;
}

.nav-menu a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: #0077cc;
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #004a99;
}