* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f8f9fa;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}


:root {
	--primary-color: #3498db;
	--secondary-color: #2ecc71;
	--dark-color: #2c3e50;
	--light-color: #ecf0f1;
	--accent-color: #e74c3c;
}

.blk13-navbar {
	background: white;
	color: var(--dark-color);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.blk13-navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 75px;
}

.blk13-navbar-brand {
	display: flex;
	align-items: center;
}

.blk13-brand-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--dark-color);
	transition: all 0.3s ease;
}

.blk13-brand-link:hover {
	transform: translateY(-2px);
}

.blk13-brand-icon {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	font-weight: bold;
}

.blk13-brand-text {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--dark-color);
}

.blk13-navbar-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	gap: 6px;
	flex-direction: column;
	z-index: 1001;
}

.blk13-toggle-icon {
	width: 24px;
	height: 2px;
	background: var(--dark-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.blk13-navbar-toggle.blk13-active .blk13-toggle-icon:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.blk13-navbar-toggle.blk13-active .blk13-toggle-icon:nth-child(2) {
	opacity: 0;
}

.blk13-navbar-toggle.blk13-active .blk13-toggle-icon:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.blk13-navbar-menu {
	display: flex;
	align-items: center;
}

.blk13-menu-links {
	display: flex;
	list-style: none;
	gap: 2px;
}

.blk13-menu-item {
	position: relative;
}

.blk13-menu-link {
	display: block;
	padding: 12px 20px;
	color: var(--dark-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
}

.blk13-menu-link:hover {
	color: var(--primary-color);
}

.blk13-menu-item.blk13-has-dropdown:hover .blk13-menu-link {
	color: var(--primary-color);
}

.blk13-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 10px 0;
	min-width: 180px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 999;
}

.blk13-menu-item.blk13-has-dropdown:hover .blk13-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.blk13-dropdown-item {
	list-style: none;
}

.blk13-dropdown-link {
	display: block;
	padding: 10px 20px;
	color: var(--dark-color);
	text-decoration: none;
	font-size: 13px;
	transition: all 0.3s ease;
}

.blk13-dropdown-link:hover {
	background: var(--light-color);
	color: var(--primary-color);
}

.blk13-navbar-actions {
	display: flex;
	align-items: center;
	margin-left: 30px;
}

.blk13-action-button {
	display: inline-block;
	padding: 10px 24px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.blk13-action-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}


.blk13-hero-area {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	padding: 120px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.blk13-hero-area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.blk13-w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.blk13-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.blk13-hero-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.blk13-hero-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.blk13-hero-cta {
	display: inline-block;
	padding: 15px 30px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	color: white;
	font-weight: 600;
	font-size: 16px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.blk13-hero-cta:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.blk13-main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}


.blk13-card-section {
	margin-bottom: 80px;
}

.blk13-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.blk13-section-title {
	font-size: 36px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
}

.blk13-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #3498db, #2ecc71);
	border-radius: 2px;
}

.blk13-section-subtitle {
	font-size: 18px;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

.blk13-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.blk13-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
}

.blk13-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blk13-card-image {
	height: 200px;
	overflow: hidden;
	background: #f0f0f0;
}

.blk13-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blk13-card:hover .blk13-card-image img {
	transform: scale(1.05);
}

.blk13-card-content {
	padding: 30px;
}

.blk13-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
}

.blk13-card-text {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 25px;
}

.blk13-card-link {
	display: inline-block;
	color: #3498db;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 8px 0;
	border-bottom: 2px solid transparent;
}

.blk13-card-link:hover {
	border-bottom-color: #3498db;
	padding-right: 10px;
}


.blk13-features-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 100px 20px;
	margin: 80px 0;
}

.blk13-features-content {
	max-width: 1200px;
	margin: 0 auto;
}

.blk13-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.blk13-feature-item {
	text-align: center;
	padding: 40px 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.blk13-feature-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 1);
}

.blk13-feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #3498db, #2ecc71);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	color: white;
}

.blk13-feature-title {
	font-size: 20px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
}

.blk13-feature-text {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}


.blk13-footer {
	background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
	color: white;
	padding: 80px 20px 40px;
	position: relative;
	overflow: hidden;
}

.blk13-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3498db, #2ecc71);
}

.blk13-footer-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.blk13-footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 60px;
	margin-bottom: 60px;
}

.blk13-footer-section .blk13-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.blk13-footer-section h3 {
	font-size: 20px;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
	color: #3498db;
	margin: 0;
}

.blk13-toggle-links {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	color: #3498db;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 15px;
	transition: all 0.3s ease;
	background: rgba(52, 152, 219, 0.1);
	border: 1px solid rgba(52, 152, 219, 0.2);
}

.blk13-toggle-links:hover {
	background: rgba(52, 152, 219, 0.2);
	transform: translateY(-1px);
}

.blk13-toggle-icon {
	font-size: 10px;
	transition: transform 0.3s ease;
}

.blk13-toggle-links.blk13-active .blk13-toggle-icon {
	transform: rotate(180deg);
}

.blk13-footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #3498db, #2ecc71);
	border-radius: 2px;
}


.blk13-company-desc {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.blk13-footer-social {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.blk13-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: white;
	font-size: 16px;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.blk13-social-link:hover {
	background: #3498db;
	border-color: #3498db;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}


.blk13-links-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.blk13-footer-links {
	list-style: none;
}

.blk13-footer-links li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 16px;
}

.blk13-footer-links li::before {
	content: '→';
	position: absolute;
	left: 0;
	top: 0;
	color: #3498db;
	font-size: 12px;
}

.blk13-footer-links a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	transition: all 0.3s ease;
	display: inline-block;
}

.blk13-footer-links a:hover {
	color: #3498db;
	transform: translateX(6px);
}


.blk13-friendly-links-container {
	position: relative;
}

.blk13-friendly-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
	transition: all 0.3s ease;
}

.blk13-hidden-links {
	display: none;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blk13-hidden-links.blk13-active {
	display: grid;
}

.blk13-friendly-link-item {
	display: inline-block;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.blk13-friendly-link-item:hover {
	background: rgba(52, 152, 219, 0.2);
	border-color: #3498db;
	color: #3498db;
	transform: translateY(-2px);
}


.blk13-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	padding-left: 0 !important;
}

.blk13-contact-item::before {
	display: none;
}

.blk13-contact-icon {
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.blk13-contact-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	line-height: 1.5;
}

.blk13-contact-link {
	color: #3498db;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.blk13-contact-link:hover {
	color: #2ecc71;
	text-decoration: underline;
}


.blk13-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 40px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

.blk13-sitemap-links {
	margin-bottom: 15px;
}

.blk13-sitemap-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s ease;
	margin: 0 8px;
}

.blk13-sitemap-links a:hover {
	color: #3498db;
}

.blk13-separator {
	color: rgba(255, 255, 255, 0.4);
	margin: 0 8px;
}

.blk13-copyright {
	margin: 0;
	font-size: 12px;
}


@media (max-width: 1024px) {
	.blk13-hero-title {
		font-size: 36px;
	}
	
	.blk13-section-title {
		font-size: 32px;
	}
	
	.blk13-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px;
	}
	
	.blk13-footer-top {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 40px;
	}
	
	.blk13-links-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.blk13-friendly-links-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 10px;
	}
}

@media (max-width: 768px) {
	.blk13-navbar-toggle {
		display: flex;
	}
	
	.blk13-navbar-menu {
		position: fixed;
		top: 75px;
		left: 0;
		right: 0;
		background: white;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
		padding: 30px 20px;
		display: none;
		flex-direction: column;
		gap: 20px;
		z-index: 999;
		max-height: calc(100vh - 75px);
		overflow-y: auto;
	}
	
	.blk13-navbar-menu.blk13-active {
		display: flex;
	}
	
	.blk13-menu-links {
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	
	.blk13-menu-item {
		width: 100%;
	}
	
	.blk13-menu-link {
		padding: 15px 20px;
		border-radius: 8px;
		background: var(--light-color);
	}
	
	.blk13-menu-link:hover {
		background: rgba(52, 152, 219, 0.1);
	}
	
	.blk13-dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding: 10px 0;
		margin-top: 10px;
		background: transparent;
		display: none;
	}
	
	.blk13-dropdown-menu.blk13-active {
		display: block;
	}
	
	.blk13-dropdown-link {
		padding: 12px 30px;
		background: rgba(52, 152, 219, 0.05);
		border-radius: 6px;
		margin-bottom: 5px;
	}
	
	.blk13-navbar-actions {
		margin-left: 0;
		width: 100%;
	}
	
	.blk13-action-button {
		width: 100%;
		text-align: center;
		padding: 12px 0;
	}
	
	.blk13-hero-area {
		padding: 120px 20px 60px;
	}
	
	.blk13-hero-title {
		font-size: 28px;
	}
	
	.blk13-hero-subtitle {
		font-size: 16px;
	}
	
	.blk13-main-container {
		padding: 40px 20px;
	}
	
	.blk13-section-title {
		font-size: 28px;
	}
	
	.blk13-section-subtitle {
		font-size: 16px;
	}
	
	.blk13-cards-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.blk13-footer-top {
		gap: 40px;
	}
	
	.blk13-footer {
		padding: 60px 20px 30px;
	}
	
	.blk13-footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.blk13-footer-section h3 {
		font-size: 18px;
	}
	
	.blk13-footer-section .blk13-section-header {
		margin-bottom: 25px;
	}
	
	.blk13-toggle-links {
		font-size: 11px;
		padding: 5px 10px;
	}
	
	.blk13-toggle-text {
		display: none;
	}
	
	.blk13-toggle-icon {
		font-size: 12px;
	}
	
	.blk13-company-desc {
		font-size: 13px;
	}
	
	.blk13-friendly-links-grid {
		grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
		gap: 8px;
	}
	
	.blk13-friendly-link-item {
		font-size: 11px;
		padding: 6px 10px;
	}
	
	.blk13-footer-bottom {
		padding-top: 30px;
	}
	
	.blk13-sitemap-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	
	.blk13-sitemap-links a {
		margin: 0;
	}
	
	.blk13-separator {
		display: none;
	}
}

@media (max-width: 480px) {
	.blk13-navbar-container {
		height: 65px;
	}
	
	.blk13-brand-text {
		font-size: 18px;
	}
	
	.blk13-brand-icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	
	.blk13-navbar-menu {
		top: 65px;
		max-height: calc(100vh - 65px);
	}
	
	.blk13-menu-link {
		padding: 12px 16px;
		font-size: 13px;
	}
	
	.blk13-dropdown-link {
		padding: 10px 24px;
		font-size: 12px;
	}
	
	.blk13-hero-area {
		padding: 100px 20px 60px;
	}
	
	.blk13-hero-title {
		font-size: 24px;
	}
	
	.blk13-hero-subtitle {
		font-size: 14px;
	}
	
	.blk13-hero-cta {
		padding: 12px 24px;
		font-size: 14px;
	}
	
	.blk13-section-title {
		font-size: 24px;
	}
	
	.blk13-card-content {
		padding: 20px;
	}
	
	.blk13-card-title {
		font-size: 18px;
	}
	
	.blk13-feature-item {
		padding: 30px 15px;
	}
	
	.blk13-footer {
		padding: 60px 20px 30px;
	}
}


body { background: #f8fafc; }
.blk13-hero-area { padding: 5rem 2rem; }
.blk13-card { border-radius: 12px; box-shadow: 0 4px 20px rgba(52,152,219,0.08); }