﻿:root {
	--primary-accent: #2563EB;
	--secondary-accent: #10B981;
	--text-primary: #1F2937;
	--text-secondary: #6B7280;
	--bg-light: #F9FAFB;
	--bg-white: #FFFFFF;
	--border-color: #E5E7EB;
}

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

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

html.no-scroll {
	overflow: hidden;
}

body {
	color: var(--text-primary);
	font-family: "Baskervville", "Libre Baskerville", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	background: var(--bg-white);
}

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

/* Header Styles */
.site-header {
	background: linear-gradient(135deg, var(--primary-accent) 0%, #1E40AF 100%);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo-brand {
	font-size: 24px;
	font-weight: 700;
	color: var(--bg-white);
	letter-spacing: 1px;
}

.menu-toggle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.menu-toggle-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

.menu-toggle-btn svg rect {
	fill: var(--bg-white);
}

.main-navigation {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: var(--bg-white);
	box-shadow: -2px 0 10px 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: 600;
	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;
}

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

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, var(--bg-light) 0%, #E0E7FF 100%);
	padding: 60px 0;
	text-align: center;
}

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

.hero-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-primary);
	margin-bottom: 30px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

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

.scroll-indicator svg circle {
	fill: var(--secondary-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;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto;
}

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

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

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

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--secondary-accent);
	border-radius: 2px;
}

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

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

.content-image {
	width: 100%;
	max-width: 700px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px 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(--primary-accent) 0%, #1E40AF 100%);
	color: var(--bg-white);
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
	margin: 30px auto;
	display: block;
	text-align: center;
	max-width: 300px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Contact Form Section */
.contact-form-section {
	background: linear-gradient(135deg, var(--primary-accent) 0%, #1E40AF 100%);
	padding: 70px 0;
	color: var(--bg-white);
}

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

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-label {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--bg-white);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--bg-white);
	background: rgba(255, 255, 255, 0.15);
}

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

.submit-button {
	padding: 16px 40px;
	background: var(--bg-white);
	color: var(--primary-accent);
	font-size: 18px;
	font-weight: 600;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

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

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

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

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

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

.footer-links a:hover {
	color: var(--bg-white);
}

.footer-copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

/* Cookie Notice */
.cookie-notice {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 600px;
	background: var(--text-primary);
	color: var(--bg-white);
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	font-size: 14px;
	line-height: 1.6;
}

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

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

.cookie-accept-btn {
	float: right;
	padding: 10px 25px;
	background: var(--secondary-accent);
	color: var(--bg-white);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	margin-top: 10px;
	transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
	background: #059669;
}

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

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

.contact-info {
	background: var(--bg-white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

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

.contact-link {
	color: var(--primary-accent);
	font-weight: 600;
	display: inline-block;
	margin-top: 10px;
}

.contact-link:hover {
	text-decoration: underline;
}

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

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

/* Legal Pages Styles */
.legal-page-section {
	padding: 60px 0;
	background: var(--bg-white);
}

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

.legal-content {
	background: var(--bg-light);
	padding: 40px;
	border-radius: 12px;
	max-width: 900px;
	margin: 0 auto;
}

.legal-content h5 {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 30px 0 15px;
}

.legal-content h5:first-child {
	margin-top: 0;
}

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

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

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

.legal-content address {
	font-style: normal;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.legal-content address p {
	margin-bottom: 10px;
}

/* Success Page Styles */
.success-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--bg-light);
}

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

.success-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

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

.success-alert {
	padding: 25px;
	border-radius: 12px;
	border-left: 4px solid var(--secondary-accent);
	background: rgba(16, 185, 129, 0.1);
	margin: 30px 0;
}

.success-alert div:first-child {
	font-weight: 700;
	font-size: 18px;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.success-form {
	margin-top: 40px;
	padding: 30px;
	background: var(--bg-light);
	border-radius: 12px;
}

.success-form h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

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

.success-form input {
	width: 100%;
	padding: 14px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	margin-bottom: 15px;
	font-family: inherit;
}

.success-form button {
	width: 100%;
	padding: 14px;
	background: var(--secondary-accent);
	color: var(--bg-white);
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.success-form button:hover {
	background: #059669;
}

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

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

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.site-header {
		padding: 25px 0;
	}

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

	.menu-toggle-btn {
		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 {
		color: var(--bg-white);
		border-bottom: none;
		padding: 0;
		font-size: 16px;
	}

	.main-navigation a:hover {
		color: rgba(255, 255, 255, 0.8);
	}

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

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

	.content-block {
		padding: 80px 0;
	}

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

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

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

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

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

	.footer-content {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-page-section {
		padding: 80px 0;
	}

	.legal-page-section {
		padding: 80px 0;
	}

	.legal-content {
		padding: 60px;
	}
}