:root {
	--primary-color: #2D4263;
	--secondary-color: #C84B31;
	--accent-color: #ECDBBA;
	--text-color: #333333;
	--light-text: #666666;
	--background-color: #FFFFFF;
	--light-background: #F8F9FA;
	--border-color: #E0E0E0;
	--shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header & Navigation */
header {
	background-color: var(--background-color);
	box-shadow: var(--shadow);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--transition);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.logo-img {
	height: 18px;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--secondary-color);
}

.nav-links a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--secondary-color);
	transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
	width: 100%;
}

.nav-links .current a {
	color: var(--secondary-color);
	/* text-decoration: underline; */
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Page Header */
.page-header {
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 80px;
	background: linear-gradient(135deg, var(--primary-color) 0%, #395B64 100%);
	color: white;
	position: relative;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
}

.page-header p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* Section Styles */
section {
	padding: 80px 0 40px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.2rem;
	color: var(--primary-color);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--secondary-color);
}

.section-title p {
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto;
        }

#home section {
	padding: 100px 0;
}

.btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(200, 75, 49, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(200, 75, 49, 0.4);
            background-color: #b33c24;
        }



/* Footer */
footer {
	background-color: var(--primary-color);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--secondary-color);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
}

.footer-column a:hover {
	color: white;
	padding-left: 5px;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 80px;
		right: -100%;
		flex-direction: column;
		background-color: white;
		width: 80%;
		height: calc(100vh - 80px);
		padding: 30px;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: var(--transition);
		z-index: 1000;
	}

	.nav-links.active {
		right: 0;
	}

	.mobile-menu-btn {
		display: block;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.section-title h2 {
		font-size: 2rem;
	}
}