* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

.header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	color: white;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	flex-wrap: wrap;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.nav-menu a:hover {
	background-color: rgba(255,255,255,0.1);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

.hero-section {
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/><circle fill="%23764ba2" cx="200" cy="150" r="100" opacity="0.3"/><circle fill="%23667eea" cx="800" cy="350" r="150" opacity="0.2"/></svg>');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 4rem 0;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background-color: #ff6b6b;
	color: white;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: bold;
	transition: transform 0.3s, box-shadow 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.main-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	margin: 2rem 0;
}

.content-section {
	background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	margin-bottom: 2rem;
	border: 1px solid #e9ecef;
	position: relative;
}

.content-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	border-radius: 15px 15px 0 0;
}

.sidebar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sidebar-widget {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	border: 1px solid #e9ecef;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sidebar-widget::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
	border-radius: 15px 15px 0 0;
}

.sidebar-widget:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.sidebar-widget h3 {
	color: #667eea;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sidebar-widget h3 i {
	font-size: 1.2rem;
	background: linear-gradient(45deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sidebar-widget ul {
	list-style: none;
}

.sidebar-widget ul li {
	margin-bottom: 0.8rem;
	padding-left: 0;
}

.sidebar-widget ul li a {
	color: #495057;
	text-decoration: none;
	display: flex;
	align-items: center;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	position: relative;
	gap: 0.5rem;
}

.sidebar-widget ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: linear-gradient(45deg, #667eea, #764ba2);
	border-radius: 2px;
	transition: height 0.3s ease;
}

.sidebar-widget ul li a:hover {
	background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	color: #667eea;
	transform: translateX(5px);
}

.sidebar-widget ul li a:hover::before {
	height: 100%;
}

.sidebar-widget p {
	color: #6c757d;
	font-size: 0.9rem;
	line-height: 1.5;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.feature-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 2.5rem 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid #e9ecef;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
	transition: left 0.6s ease;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
	border-color: #667eea;
}

.feature-icon {
	font-size: 3.5rem;
	background: linear-gradient(45deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
}

.feature-card h3 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.feature-card p {
	color: #6c757d;
	line-height: 1.6;
	font-size: 0.95rem;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0;
}

.info-table th,
.info-table td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}

.info-table th {
	background-color: #667eea;
	color: white;
}

.info-table tr:nth-child(even) {
	background-color: #f2f2f2;
}

.check-icon {
	color: #28a745;
}

.cross-icon {
	color: #dc3545;
}

.footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 3rem 0;
	margin-top: 4rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	color: #667eea;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: #667eea;
}

.breadcrumb {
	background-color: #e9ecef;
	padding: 0.75rem 0;
}

.breadcrumb nav {
	font-size: 0.9rem;
}

.breadcrumb a {
	color: #667eea;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #333;
	color: white;
	padding: 1rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 1rem;
}

.cookie-text {
	flex: 1;
	font-size: 0.9rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background-color 0.3s;
}

.cookie-accept {
	background-color: #28a745;
	color: white;
}

.cookie-accept:hover {
	background-color: #218838;
}

.cookie-decline {
	background-color: #6c757d;
	color: white;
}

.cookie-decline:hover {
	background-color: #5a6268;
}

.highlight {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	border-left: 4px solid #ffc107;
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
	position: relative;
}

.highlight::before {
	content: '\f06a';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 1rem;
	left: 1rem;
	color: #856404;
	font-size: 1.2rem;
}

.highlight strong {
	color: #856404;
}

.toc {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border: 2px solid #dee2e6;
	border-radius: 15px;
	padding: 1.5rem;
	margin: 1.5rem 0;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.toc h3 {
	margin-bottom: 1rem;
	color: #667eea;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
}

.toc h3::before {
	content: '\f0ca';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #667eea;
}

.toc ul {
	list-style: none;
	padding-left: 1rem;
}

.toc ul li {
	margin-bottom: 0.5rem;
	padding-left: 1rem;
	position: relative;
}

.toc ul li::before {
	content: '\f0da';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #667eea;
	font-size: 0.8rem;
}

.toc a {
	color: #495057;
	text-decoration: none;
	transition: color 0.3s ease;
}

.toc a:hover {
	color: #667eea;
}

.page-hidden {
	display: none !important;
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}
	
	.nav-menu {
		display: none;
		width: 100%;
		margin-top: 1rem;
	}
	
	.nav-menu.active {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	
	.hero-content h1 {
		font-size: 2rem;
	}
	
	.main-content {
		grid-template-columns: 1fr;
	}
	
	.feature-grid {
		grid-template-columns: 1fr;
	}
	
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
	margin-bottom: 1rem;
}

h2 {
	border-bottom: 2px solid #667eea;
	padding-bottom: 0.5rem;
	color: #667eea;
}

p {
	margin-bottom: 1rem;
}