* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: #1f2937;
	background-color: #ffffff;
	overflow-x: hidden;
}

.evk-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	color: #1f2937;
}

h2 {
	font-size: 2.5rem;
	color: #1f2937;
}

h3 {
	font-size: 2rem;
	color: #1f2937;
}

h4 {
	font-size: 1.5rem;
	color: #1f2937;
}

p {
	margin-bottom: 1rem;
	color: #4b5563;
	line-height: 1.7;
}

a {
	color: #4f46e5;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #3730a3;
	text-decoration: underline;
}

ol,
ul {
	padding-left: 1.2rem;
}

/* Buttons */
.evk-btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	text-decoration: none;
	font-size: 1rem;
}

.evk-btn-primary {
	background-color: #4f46e5;
	color: white;
	box-shadow: 0 4px 6px rgba(79, 70, 229, 0.3);
}

.evk-btn-primary:hover {
	background-color: #3730a3;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(79, 70, 229, 0.4);
	text-decoration: none;
	color: white;
}

.evk-btn-secondary {
	background-color: #10b981;
	color: white;
	box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.evk-btn-secondary:hover {
	background-color: #059669;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
	text-decoration: none;
	color: white;
}

.evk-btn-outline {
	background-color: transparent;
	color: #4f46e5;
	border: 2px solid #4f46e5;
}

.evk-btn-outline:hover {
	background-color: #4f46e5;
	color: white;
	text-decoration: none;
}

/* Header Styles */
.evk-header {
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.evk-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.evk-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #4f46e5;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.evk-logo i {
	margin-right: 10px;
	font-size: 2rem;
}

.evk-logo:hover {
	color: #3730a3;
	text-decoration: none;
}

.evk-nav {
	display: flex;
	align-items: center;
	gap: 5px;
	list-style: none;
}

.evk-nav a {
	color: #1f2937;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.evk-nav a:hover,
.evk-nav a.evk-active {
	background-color: #4f46e5;
	color: white;
	text-decoration: none;
}

.evk-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.evk-mobile-toggle span {
	width: 25px;
	height: 3px;
	background-color: #4f46e5;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.evk-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 1rem;
}

.evk-mobile-menu a {
	display: block;
	padding: 10px 0;
	color: #1f2937;
	text-decoration: none;
	border-bottom: 1px solid #e5e7eb;
}

.evk-mobile-menu a:hover {
	color: #4f46e5;
	text-decoration: none;
}

/* Hero Section */
.evk-hero {
	background: linear-gradient(
			135deg,
			rgba(79, 70, 229, 0.9),
			rgba(16, 185, 129, 0.8)
		),
		url('assets/evk-hero.webp') center/cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
	margin-top: 80px;
}

.evk-hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	animation: evkFadeInUp 1s ease-out;
}

.evk-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.evk-hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.evk-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

/* Section Styles */
.evk-section {
	padding: 80px 0;
}

.evk-section-alt {
	background-color: #f9fafb;
}

.evk-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.evk-section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #1f2937;
}

.evk-section-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
}

/* Grid Layouts */
.evk-grid {
	display: grid;
	gap: 2rem;
}

.evk-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.evk-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.evk-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.evk-card {
	background-color: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid #e5e7eb;
}

.evk-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.evk-card-icon {
	font-size: 3rem;
	color: #4f46e5;
	margin-bottom: 1rem;
}

.evk-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1f2937;
}

.evk-card-description {
	color: #6b7280;
	line-height: 1.6;
}

/* Feature Cards */
.evk-feature-card {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	color: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.evk-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
}

.evk-feature-card i {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #f59e0b;
}

.evk-feature-card h3 {
	color: white;
	margin-bottom: 1rem;
}

.evk-feature-card p {
	color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.evk-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.evk-team-member {
	background-color: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.evk-team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.evk-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	overflow: hidden;
	border: 4px solid #4f46e5;
}

.evk-team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evk-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #1f2937;
}

.evk-team-role {
	color: #4f46e5;
	font-weight: 600;
	margin-bottom: 1rem;
}

.evk-team-description {
	color: #6b7280;
	line-height: 1.6;
}

/* Testimonials */
.evk-testimonials {
	background: linear-gradient(135deg, #f9fafb, #ffffff);
	padding: 80px 0;
}

.evk-testimonial-carousel {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.evk-testimonial-slide {
	display: none;
	background-color: white;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.evk-testimonial-slide.evk-active {
	display: block;
	animation: evkFadeIn 0.5s ease-in-out;
}

.evk-testimonial-quote {
	font-size: 1.2rem;
	font-style: italic;
	color: #374151;
	margin-bottom: 2rem;
	line-height: 1.8;
}

.evk-testimonial-quote::before,
.evk-testimonial-quote::after {
	content: '"';
	font-size: 2rem;
	color: #4f46e5;
	font-weight: bold;
}

.evk-testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.evk-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #4f46e5;
}

.evk-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evk-testimonial-info h4 {
	color: #1f2937;
	margin-bottom: 0.25rem;
}

.evk-testimonial-info span {
	color: #6b7280;
	font-size: 0.9rem;
}

.evk-testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.evk-testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #d1d5db;
	cursor: pointer;
	transition: all 0.3s ease;
}

.evk-testimonial-dot.evk-active,
.evk-testimonial-dot:hover {
	background-color: #4f46e5;
}

/* Contact Section */
.evk-contact-section {
	background-color: #f9fafb;
	padding: 80px 0;
}

.evk-contact-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
}

.evk-contact-info h3 {
	color: #1f2937;
	margin-bottom: 1rem;
}

.evk-contact-info p {
	color: #6b7280;
	margin-bottom: 1rem;
}

.evk-contact-details {
	margin-top: 2rem;
}

.evk-contact-details p {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: #374151;
}

.evk-contact-details i {
	color: #4f46e5;
	margin-right: 0.75rem;
	width: 20px;
	text-align: center;
}

/* Form Styles */
.evk-form {
	background-color: white;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.evk-form h3 {
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.evk-form > p {
	color: #6b7280;
	margin-bottom: 2rem;
}

.evk-form-group {
	margin-bottom: 1.5rem;
}

.evk-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #374151;
	font-weight: 500;
}

.evk-form-input,
.evk-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.evk-form-input:focus,
.evk-form-textarea:focus {
	outline: none;
	border-color: #4f46e5;
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.evk-form-input.evk-error,
.evk-form-textarea.evk-error {
	border-color: #ef4444;
}

.evk-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.evk-form-error.evk-show {
	display: block;
}

.evk-submit-btn {
	width: 100%;
	background-color: #4f46e5;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.evk-submit-btn:hover {
	background-color: #3730a3;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.evk-submit-btn:disabled {
	background-color: #9ca3af;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Map Section */
.evk-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.evk-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.evk-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.evk-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Footer Styles */
.evk-footer {
	background-color: #1f2937;
	color: white;
	padding: 60px 0 20px;
}

.evk-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.evk-footer-section h4 {
	color: #4f46e5;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.evk-footer-section p {
	color: #d1d5db;
	line-height: 1.6;
}

.evk-footer-section ul {
	list-style: none;
	padding-left: 0;
}

.evk-footer-section li {
	margin-bottom: 0.5rem;
}

.evk-footer-section a {
	color: #d1d5db;
	transition: color 0.3s ease;
}

.evk-footer-section a:hover {
	color: #4f46e5;
	text-decoration: none;
}

.evk-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #374151;
	color: #9ca3af;
}

/* Cookie Banner */
.evk-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1f2937;
	color: white;
	padding: 20px;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.evk-cookie-banner.evk-show {
	transform: translateY(0);
}

.evk-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.evk-cookie-text p {
	margin: 0;
	color: #d1d5db;
}

.evk-cookie-text a {
	color: #4f46e5;
}

.evk-cookie-actions {
	display: flex;
	gap: 1rem;
}

.evk-cookie-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.evk-cookie-accept {
	background-color: #4f46e5;
	color: white;
}

.evk-cookie-accept:hover {
	background-color: #3730a3;
}

/* Language Cards */
.evk-language-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.evk-language-card {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	color: white;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.evk-language-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: rotate(45deg);
	transition: all 0.6s ease;
	opacity: 0;
}

.evk-language-card:hover::before {
	animation: evkShine 1s ease-in-out;
}

.evk-language-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.evk-language-flag {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.evk-language-card h3 {
	color: white;
	margin-bottom: 1rem;
}

.evk-language-card p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
}

.evk-language-stats {
	display: flex;
	justify-content: space-around;
	margin-top: 1rem;
}

.evk-stat {
	text-align: center;
}

.evk-stat-number {
	font-size: 1.5rem;
	font-weight: bold;
	color: #f59e0b;
}

.evk-stat-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Course Cards */
.evk-course-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.evk-course-card {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid #e5e7eb;
}

.evk-course-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.evk-course-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.evk-course-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: #f59e0b;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.evk-course-content {
	padding: 1.5rem;
}

.evk-course-title {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
	color: #1f2937;
}

.evk-course-description {
	color: #6b7280;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.evk-course-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 0.875rem;
	color: #6b7280;
}

.evk-course-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.evk-course-rating .fa-star {
	color: #f59e0b;
}

/* Tips and Articles */
.evk-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.evk-tip-card {
	background-color: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border-left: 4px solid #4f46e5;
}

.evk-tip-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border-left-color: #10b981;
}

.evk-tip-number {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #4f46e5;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-weight: bold;
	margin-bottom: 1rem;
}

.evk-tip-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #1f2937;
}

.evk-tip-description {
	color: #6b7280;
	line-height: 1.6;
}

/* Progress Bars */
.evk-progress {
	background-color: #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	margin: 1rem 0;
}

.evk-progress-bar {
	height: 8px;
	background: linear-gradient(90deg, #4f46e5, #10b981);
	border-radius: 10px;
	transition: width 1s ease-in-out;
}

/* Animations */
@keyframes evkFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes evkFadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes evkSlideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes evkShine {
	0% {
		opacity: 0;
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

/* Utility Classes */
.evk-fade-in {
	animation: evkFadeInUp 0.6s ease-out;
}

.evk-slide-left {
	animation: evkSlideInLeft 0.6s ease-out;
}

.evk-text-center {
	text-align: center;
}

.evk-text-left {
	text-align: left;
}

.evk-text-right {
	text-align: right;
}

.evk-mb-1 {
	margin-bottom: 1rem;
}

.evk-mb-2 {
	margin-bottom: 2rem;
}

.evk-mb-3 {
	margin-bottom: 3rem;
}

.evk-mt-1 {
	margin-top: 1rem;
}

.evk-mt-2 {
	margin-top: 2rem;
}

.evk-mt-3 {
	margin-top: 3rem;
}

/* Media Queries */
@media (max-width: 968px) {
	.evk-nav {
		display: none;
	}

	.evk-mobile-toggle {
		display: flex;
	}

	.evk-mobile-menu.evk-show {
		display: block;
		animation: evkSlideInLeft 0.3s ease-out;
	}

	.evk-hero h1 {
		font-size: 3rem;
	}

	.evk-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.evk-cookie-content {
		flex-direction: column;
		gap: 1rem;
	}

	.evk-cookie-actions {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.evk-container {
		padding: 0 15px;
	}

	.evk-hero h1 {
		font-size: 2.5rem;
	}

	.evk-hero p {
		font-size: 1.1rem;
	}

	.evk-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.evk-section {
		padding: 60px 0;
	}

	.evk-section-title {
		font-size: 2rem;
	}

	.evk-grid-2,
	.evk-grid-3,
	.evk-grid-4 {
		grid-template-columns: 1fr;
	}

	.evk-form {
		padding: 2rem;
	}

	.evk-testimonial-author {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.evk-hero h1 {
		font-size: 1.8rem;
	}

	.evk-hero p {
		font-size: 1rem;
	}

	.evk-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.evk-card,
	.evk-form {
		padding: 1.5rem;
	}

	.evk-testimonial-slide {
		padding: 2rem;
	}

	.evk-language-grid,
	.evk-tips-grid,
	.evk-course-grid,
	.evk-grid-2,
	.evk-grid-3,
	.evk-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.evk-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Print Styles */
@media print {
	.evk-header,
	.evk-footer,
	.evk-cookie-banner,
	.evk-mobile-toggle,
	.evk-mobile-menu {
		display: none !important;
	}

	.evk-hero {
		margin-top: 0;
		min-height: auto;
		padding: 2rem 0;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
	}

	.evk-section {
		padding: 1rem 0;
		page-break-inside: avoid;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	.evk-btn-primary {
		border: 2px solid #000;
	}

	.evk-card {
		border: 2px solid #000;
	}

	.evk-form-input,
	.evk-form-textarea {
		border: 2px solid #000;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}

.evk-about-hero {
	background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
	padding: 5rem 0;
	text-align: center;
	color: #ffffff;
}

.evk-about-hero .evk-hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
}

.evk-about-hero .evk-hero-content p {
	font-size: 1.2rem;
	opacity: 0.9;
	color: #fff;
	max-width: 600px;
	margin: 0 auto;
}

.evk-mission {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.evk-mission h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 2rem;
	position: relative;
}

.evk-mission h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #4f46e5;
	border-radius: 2px;
}

.evk-mission p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #6b7280;
	margin-bottom: 1.5rem;
	text-align: left;
}

.evk-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.evk-team-member {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.evk-team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.evk-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1.5rem;
	border: 4px solid #4f46e5;
}

.evk-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evk-team-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.evk-team-role {
	font-size: 1rem;
	color: #4f46e5;
	font-weight: 600;
	margin-bottom: 1rem;
}

.evk-team-bio {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #6b7280;
	text-align: left;
}

.evk-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.evk-value-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.evk-value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.evk-value-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4f46e5, #10b981);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
	color: #ffffff;
}

.evk-value-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.evk-value-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #6b7280;
}

.evk-history {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: center;
}

.evk-history-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.5rem;
}

.evk-history-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #6b7280;
	margin-bottom: 1.5rem;
}

.evk-history-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.evk-stat {
	text-align: center;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.evk-stat:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.evk-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #4f46e5;
	margin-bottom: 0.5rem;
	display: block;
}

.evk-stat-label {
	font-size: 1rem;
	color: #6b7280;
	font-weight: 500;
}

/* Contact Page Styles */
.evk-contact-hero {
	background: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
	padding: 5rem 0;
	text-align: center;
	color: #ffffff;
}

.evk-contact-hero .evk-hero-content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
}

.evk-contact-hero .evk-hero-content p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 700px;
	color: #fff;
	margin: 0 auto 2rem;
}

.evk-hero-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.evk-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.evk-contact-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.evk-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.evk-contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4f46e5, #10b981);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
	color: #ffffff;
}

.evk-contact-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.evk-contact-card p {
	color: #6b7280;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.evk-contact-card a {
	color: #4f46e5;
	text-decoration: none;
	font-weight: 600;
}

.evk-contact-card a:hover {
	color: #10b981;
	text-decoration: underline;
}

.evk-contact-section {
	padding: 5rem 0;
	background: #f9fafb;
}

.evk-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.evk-contact-info {
	background: #ffffff;
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.evk-contact-info h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.5rem;
}

.evk-contact-info p {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: #6b7280;
	line-height: 1.6;
}

.evk-contact-info i {
	color: #10b981;
	margin-right: 0.5rem;
	width: 20px;
}

.evk-contact-details {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}

.evk-contact-details p {
	margin-bottom: 0.8rem;
}

.evk-contact-details a {
	color: #4f46e5;
	text-decoration: none;
	font-weight: 500;
}

.evk-contact-details a:hover {
	color: #10b981;
	text-decoration: underline;
}

.evk-form {
	background: linear-gradient(135deg, #4f46e5, #10b981);
	border-radius: 12px;
	padding: 2.5rem;
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.evk-form h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #ffffff;
}

.evk-form > p {
	margin-bottom: 2rem;
	opacity: 0.9;
	color: #fff;
	line-height: 1.6;
}

.evk-form-group {
	margin-bottom: 1.5rem;
}

.evk-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #ffffff;
}

.evk-form-input,
.evk-form-textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.evk-form-input::placeholder,
.evk-form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.evk-form-input:focus,
.evk-form-textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.evk-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.evk-form-group.evk-error .evk-form-error {
	display: block;
}

.evk-form-group.evk-error .evk-form-input,
.evk-form-group.evk-error .evk-form-textarea {
	border-color: rgba(248, 113, 113, 0.7);
	background: rgba(248, 113, 113, 0.1);
}

.evk-submit-btn {
	background: #f59e0b;
	color: #ffffff;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.evk-submit-btn:hover {
	background: #d97706;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.evk-submit-btn:active {
	transform: translateY(0);
}

.evk-map-container {
	width: 100%;
	height: 400px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.evk-map {
	width: 100%;
	height: 100%;
	border: none;
}

.evk-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.evk-faq-item {
	background: #ffffff;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: all 0.3s ease;
}

.evk-faq-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.evk-faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	transition: all 0.3s ease;
}

.evk-faq-question:hover {
	background: #f9fafb;
}

.evk-faq-question h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1f2937;
	margin: 0;
	flex: 1;
	padding-right: 1rem;
}

.evk-faq-question i {
	color: #4f46e5;
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.evk-faq-item.evk-active .evk-faq-question i {
	transform: rotate(180deg);
}

.evk-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.evk-faq-item.evk-active .evk-faq-answer {
	max-height: 1000px;
}

.evk-faq-answer p {
	padding: 1rem 2rem 1.5rem;
	margin: 0;
	color: #6b7280;
	line-height: 1.6;
}

/* Responsive Styles for About and Contact Pages */
@media (max-width: 768px) {
	.evk-about-hero .evk-hero-content h1,
	.evk-contact-hero .evk-hero-content h1 {
		font-size: 2.5rem;
	}

	.evk-about-hero .evk-hero-content p,
	.evk-contact-hero .evk-hero-content p {
		font-size: 1.1rem;
	}

	.evk-team-grid {
		grid-template-columns: 1fr;
	}

	.evk-values-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.evk-history {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.evk-history-stats {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.evk-contact-grid {
		grid-template-columns: 1fr;
	}

	.evk-hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.evk-hero-actions .evk-btn {
		width: 100%;
		max-width: 300px;
	}

	.evk-contact-info-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.evk-contact-info,
	.evk-form {
		padding: 2rem;
	}

	.evk-map-container {
		height: 300px;
	}

	.evk-faq-question {
		padding: 1rem 1.5rem;
	}

	.evk-faq-answer p {
		padding: 0 1.5rem 1rem;
	}
}

@media (max-width: 480px) {
	.evk-about-hero .evk-hero-content h1,
	.evk-contact-hero .evk-hero-content h1 {
		font-size: 2rem;
	}

	.evk-mission h2,
	.evk-history-content h2 {
		font-size: 2rem;
	}

	.evk-team-member,
	.evk-value-card,
	.evk-contact-card {
		padding: 1.5rem;
	}

	.evk-contact-info,
	.evk-form {
		padding: 1.5rem;
	}

	.evk-contact-info-grid {
		grid-template-columns: 1fr;
	}

	.evk-history-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.evk-stat {
		padding: 1rem;
	}

	.evk-stat-number {
		font-size: 2rem;
	}
}

.evk-legal-hero {
	background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
	padding: 120px 0 80px 0;
	text-align: center;
	position: relative;
	border-bottom: 1px solid #e5e7eb;
}

.evk-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.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(79,70,229,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.4;
	z-index: 1;
}

.evk-legal-hero .evk-container {
	position: relative;
	z-index: 2;
}

.evk-legal-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #4f46e5;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.evk-legal-subtitle {
	font-size: 1.3rem;
	color: #6b7280;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.evk-legal-date {
	display: inline-block;
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
	padding: 10px 25px;
	border-radius: 25px;
	font-size: 0.9rem;
	border: 1px solid rgba(16, 185, 129, 0.2);
	font-weight: 500;
}

/* Legal Content Layout */
.evk-legal-content {
	padding: 80px 0;
	background: #ffffff;
}

.evk-legal-wrapper {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 60px;
	align-items: start;
}

/* Table of Contents */
.evk-legal-toc {
	background: #f9fafb;
	padding: 30px;
	border-radius: 15px;
	border: 1px solid #e5e7eb;
	position: sticky;
	top: 100px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.evk-legal-toc h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #4f46e5;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.evk-legal-toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.evk-legal-toc li {
	margin-bottom: 10px;
}

.evk-legal-toc a {
	color: #6b7280;
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.5;
	padding: 10px 15px;
	display: block;
	border-radius: 8px;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.evk-legal-toc a:hover {
	background: rgba(79, 70, 229, 0.1);
	color: #4f46e5;
	border-left-color: #4f46e5;
	transform: translateX(5px);
}

/* Legal Sections */
.evk-legal-sections {
	background: #ffffff;
	padding: 40px;
	border-radius: 15px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.evk-legal-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e5e7eb;
}

.evk-legal-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.evk-legal-section h2 {
	font-size: 2rem;
	font-weight: 600;
	color: #4f46e5;
	margin-bottom: 20px;
	line-height: 1.3;
	scroll-margin-top: 100px;
}

.evk-legal-section h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #10b981;
	margin: 30px 0 15px 0;
	line-height: 1.3;
}

.evk-legal-section p {
	color: #1f2937;
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 1rem;
	opacity: 0.95;
}

.evk-legal-section ul {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
}

.evk-legal-section li {
	color: #1f2937;
	line-height: 1.7;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	font-size: 0.95rem;
	opacity: 0.9;
}

.evk-legal-section li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #4f46e5;
	font-weight: bold;
	font-size: 1.1rem;
}

.evk-legal-section li strong {
	color: #4f46e5;
	font-weight: 600;
}

.evk-legal-section a {
	color: #10b981;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.evk-legal-section a:hover {
	color: #4f46e5;
	text-decoration: underline;
}

/* Contact Info Block */
.evk-contact-info {
	background: rgba(79, 70, 229, 0.05);
	border: 1px solid rgba(79, 70, 229, 0.15);
	border-radius: 15px;
	padding: 30px;
	margin-top: 40px;
}

.evk-contact-info h3 {
	color: #4f46e5 !important;
	font-size: 1.4rem;
	margin-top: 0 !important;
	margin-bottom: 20px !important;
}

.evk-contact-info p {
	margin-bottom: 15px;
	color: #1f2937;
}

.evk-contact-info strong {
	color: #4f46e5;
	font-weight: 600;
}

.evk-contact-info a {
	color: #10b981;
	font-weight: 500;
}

.evk-contact-info a:hover {
	color: #4f46e5;
}

/* Mobile Responsiveness for Legal Pages */
@media (max-width: 968px) {
	.evk-legal-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.evk-legal-toc {
		position: static;
		order: 2;
		margin-top: 40px;
	}

	.evk-legal-sections {
		order: 1;
		padding: 30px 25px;
	}
}

@media (max-width: 768px) {
	.evk-legal-title {
		font-size: 2.5rem;
	}

	.evk-legal-subtitle {
		font-size: 1.1rem;
	}

	.evk-legal-content {
		padding: 60px 0;
	}

	.evk-legal-section h2 {
		font-size: 1.6rem;
	}

	.evk-legal-section h3 {
		font-size: 1.1rem;
	}

	.evk-legal-toc {
		padding: 25px 20px;
	}

	.evk-legal-sections {
		padding: 25px 20px;
	}

	.evk-contact-info {
		padding: 25px 20px;
	}
}

@media (max-width: 480px) {
	.evk-legal-title {
		font-size: 1.5rem;
		line-height: 1.1;
	}

	.evk-legal-subtitle {
		font-size: 1rem;
	}

	.evk-legal-date {
		font-size: 0.85rem;
		padding: 8px 20px;
	}

	.evk-legal-section {
		margin-bottom: 35px;
		padding-bottom: 30px;
	}

	.evk-legal-section h2 {
		font-size: 1.4rem;
		margin-bottom: 15px;
	}

	.evk-legal-section h3 {
		font-size: 1rem;
		margin: 25px 0 12px 0;
	}

	.evk-legal-section p {
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.evk-legal-section li {
		font-size: 0.9rem;
		padding-left: 20px;
		margin-bottom: 10px;
	}

	.evk-legal-toc a {
		font-size: 0.9rem;
		padding: 8px 12px;
	}
}
