:root {
	--primary-color: #0056b3;
	--primary-hover: #004494;
	--secondary-color: #f8f9fa;
	--text-color: #333333;
	--text-light: #666666;
	--bg-color: #ffffff;
	--border-radius: 8px;
	--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	--transition: all 0.3s ease;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-color);
	background-color: var(--bg-color);
	margin: 0;
	padding: 0;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-hover);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	margin-bottom: 1rem;
	color: #111;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 10px 24px;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: var(--transition);
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	color: white;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: white;
}

/* Header */
.site-header {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: var(--box-shadow);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(10px);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.main-navigation a {
	color: var(--text-color);
	font-weight: 600;
}

.main-navigation a:hover {
	color: var(--primary-color);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	min-height: 60vh;
}

.hero-content {
	flex: 1;
	padding-right: 40px;
}

.hero-content h1 {
	font-size: 3rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 30px;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.hero-image img {
	max-width: 100%;
	height: auto;
}

/* Services Section */
.services-section {
	background-color: var(--secondary-color);
	padding: 80px 20px;
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 50px;
}

.section-header h2 {
	font-size: 2.5rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: white;
	padding: 40px 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	text-align: center;
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon img {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.service-card p {
	color: var(--text-light);
}

/* About Section */
.about-section {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 80px auto;
	padding: 0 20px;
}

.about-content {
	flex: 1;
	padding-right: 40px;
}

.about-image {
	flex: 1;
}

.about-image img {
	max-width: 100%;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

/* Footer */
.site-footer {
	background-color: #1a1a1a;
	color: white;
	padding: 60px 20px 20px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-info h3 {
	color: white;
	margin-bottom: 15px;
}

.footer-info p {
	color: #ccc;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a {
	color: #ccc;
}

.footer-menu a:hover {
	color: white;
}

.site-info {
	text-align: center;
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #333;
	color: #999;
	font-size: 0.9rem;
}

/* Pages */
.page-main {
	padding: 60px 0;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: white;
	border-radius: var(--border-radius);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	padding: 25px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	max-width: 600px;
	border: 1px solid #eee;
}

.cookie-content h4 {
	margin-top: 0;
	margin-bottom: 10px;
}

.cookie-content p {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-link {
	font-size: 0.9rem;
	margin-left: auto;
}

/* Animations */
.fade-in {
	opacity: 0;
	transition: opacity 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-bottom {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-bottom.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		flex-direction: column;
		text-align: center;
		padding-top: 40px;
	}
	
	.hero-content {
		padding-right: 0;
		margin-bottom: 40px;
	}
	
	.about-section {
		flex-direction: column;
		text-align: center;
	}
	
	.about-content {
		padding-right: 0;
		margin-bottom: 40px;
	}
	
	.main-navigation ul {
		display: none; /* simple mobile menu fallback */
	}
	
	.menu-toggle {
		display: block;
	}
}
