﻿:root {
	--primary-accent: #2C5F8D;
	--secondary-accent: #4A90A4;
	--text-primary: #1A1A2E;
	--text-secondary: #4A5568;
	--bg-light: #F7FAFC;
	--bg-white: #FFFFFF;
	--border-color: #E2E8F0;
	--gradient-start: #2C5F8D;
	--gradient-end: #4A90A4;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

html {
	background: var(--bg-light);
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	color: var(--text-primary);
	font-family: "Poppins", "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	background: var(--bg-light);
}

html.no-scroll {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* Header Styles */
.site-header {
	background: var(--bg-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 20px 0;
}

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

.logo-link {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-accent);
	letter-spacing: -0.5px;
}

.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 8px;
	background: var(--primary-accent);
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
}

.menu-toggle:hover {
	background: var(--secondary-accent);
	transform: scale(1.05);
}

.menu-toggle svg rect {
	fill: #fff;
}

.main-navigation {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: var(--bg-white);
	box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
	flex-direction: column;
	padding: 80px 30px 30px;
	z-index: 1001;
	transition: right 0.3s ease;
}

.main-navigation.active {
	display: flex;
	right: 0;
}

.main-navigation a {
	padding: 15px 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--text-primary);
	border-bottom: 1px solid var(--border-color);
	transition: color 0.3s ease;
}

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

.menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	backdrop-filter: blur(2px);
}

.menu-overlay.active {
	display: block;
}

/* Hero Section */
.hero-banner {
	background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
	color: #fff;
	padding: 80px 0 60px;
	text-align: center;
}

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

.hero-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 30px;
	color: #fff;
}

.scroll-indicator {
	display: inline-block;
	margin: 30px auto;
	width: 60px;
	height: 60px;
	animation: bounce 2s infinite;
}

.scroll-indicator svg circle {
	fill: rgba(255, 255, 255, 0.9);
}

.scroll-indicator svg path {
	fill: var(--primary-accent);
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	max-width: 900px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.95);
}

/* Content Sections */
.content-section {
	padding: 60px 0;
	background: var(--bg-white);
}

.content-section:nth-child(even) {
	background: var(--bg-light);
}

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

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-accent);
	margin-bottom: 30px;
	text-align: center;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
	border-radius: 2px;
}

.content-text {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 30px;
}

.content-text p+p {
	margin-top: 20px;
}

.content-image {
	width: 100%;
	max-width: 700px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	margin: 40px auto;
	display: block;
	object-fit: cover;
}

.cta-button {
	display: inline-block;
	padding: 16px 40px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 30px auto;
	text-align: center;
	box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

/* Form Section */
.contact-form-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
	padding: 80px 0;
}

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

.form-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-accent);
	text-align: center;
	margin-bottom: 40px;
}

.contact-form {
	background: var(--bg-white);
	padding: 50px 40px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid var(--border-color);
	border-radius: 10px;
	font-size: 16px;
	font-family: inherit;
	background: var(--bg-light);
	transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary-accent);
	background: var(--bg-white);
	box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-button {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
}

/* Footer */
.site-footer {
	background: var(--text-primary);
	color: #fff;
	padding: 50px 0 30px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	text-align: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	margin-bottom: 20px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Page Styles */
.contact-page-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.page-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-accent);
	text-align: center;
	margin-bottom: 50px;
}

.contact-info-block {
	background: var(--bg-light);
	padding: 40px;
	border-radius: 16px;
	margin-bottom: 40px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-block p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 15px;
}

.contact-link {
	display: inline-block;
	padding: 12px 24px;
	background: var(--primary-accent);
	color: #fff;
	border-radius: 8px;
	margin: 10px 10px 10px 0;
	transition: all 0.3s ease;
}

.contact-link:hover {
	background: var(--secondary-accent);
	transform: translateY(-2px);
}

.map-container {
	margin-top: 40px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
}

/* Privacy/Terms Page Styles */
.legal-page-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.legal-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.legal-content h5 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-accent);
	margin: 40px 0 20px;
}

.legal-content p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.legal-content ul {
	margin: 20px 0;
	padding-left: 30px;
}

.legal-content li {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 10px;
}

/* Cookie Notice */
.cookie-notice {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 600px;
	background: var(--bg-white);
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	z-index: 999999;
	font-size: 15px;
	color: var(--text-primary);
}

.cookie-notice.show {
	display: block;
}

.cookie-notice div {
	margin-bottom: 15px;
	line-height: 1.6;
}

.cookie-notice a {
	color: var(--primary-accent);
	text-decoration: underline;
}

.cookie-accept-btn {
	float: right;
	padding: 10px 25px;
	background: var(--primary-accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
	background: var(--secondary-accent);
}

/* Responsive Design */
@media (min-width: 768px) {
	.hero-title {
		font-size: 48px;
	}

	.section-title {
		font-size: 36px;
	}

	.footer-container {
		grid-template-columns: 1fr 1fr;
		text-align: left;
	}

	.footer-links {
		justify-content: flex-start;
	}

	.footer-copyright {
		text-align: right;
	}
}

@media (min-width: 1024px) {
	body {
		font-size: 18px;
	}

	.header-container {
		padding: 0 40px;
	}

	.logo-link {
		font-size: 28px;
	}

	.menu-toggle {
		display: none;
	}

	.main-navigation {
		display: flex;
		position: static;
		width: auto;
		height: auto;
		background: transparent;
		box-shadow: none;
		flex-direction: row;
		padding: 0;
		gap: 30px;
	}

	.main-navigation a {
		padding: 0;
		border: none;
		font-size: 16px;
		color: var(--text-primary);
	}

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

	.hero-banner {
		padding: 120px 0 100px;
	}

	.hero-title {
		font-size: 64px;
	}

	.hero-description {
		font-size: 20px;
	}

	.content-section {
		padding: 100px 0;
	}

	.section-wrapper {
		padding: 0 40px;
	}

	.section-title {
		font-size: 42px;
		margin-bottom: 50px;
	}

	.content-text {
		font-size: 19px;
	}

	.content-image {
		max-width: 800px;
		margin: 50px auto;
	}

	.contact-form-section {
		padding: 120px 0;
	}

	.form-title {
		font-size: 42px;
	}

	.contact-form {
		padding: 60px 50px;
	}

	.page-title {
		font-size: 52px;
	}

	.contact-info-block {
		padding: 50px;
	}

	.map-container iframe {
		height: 500px;
	}

	.legal-content {
		padding: 0 40px;
	}

	.legal-content h5 {
		font-size: 28px;
	}

	.legal-content p,
	.legal-content li {
		font-size: 18px;
	}

	.site-footer {
		padding: 70px 0 40px;
	}

	.footer-container {
		grid-template-columns: 2fr 1fr;
	}
}