* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fafafa;
	overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Impact', 'Bebas Neue', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

h1 {
	font-size: 3.5rem;
	color: #000;
	text-transform: uppercase;
}

h2 {
	font-size: 2.8rem;
	color: #000;
	text-transform: uppercase;
}

h3 {
	font-size: 2.2rem;
	color: #000;
}

h4 {
	font-size: 1.8rem;
	color: #333;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

a {
	text-decoration: none;
	color: #dc3545;
	transition: all 0.3s ease;
}

a:hover {
	color: #ffc107;
	transform: translateY(-2px);
}

/* ===== UTILITY CLASSES ===== */
.ec-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ec-section {
	padding: 80px 0;
	position: relative;
}

.ec-text-center {
	text-align: center;
}

.ec-text-left {
	text-align: left;
}

.ec-text-right {
	text-align: right;
}

.ec-mt-1 {
	margin-top: 1rem;
}
.ec-mt-2 {
	margin-top: 2rem;
}
.ec-mt-3 {
	margin-top: 3rem;
}
.ec-mb-1 {
	margin-bottom: 1rem;
}
.ec-mb-2 {
	margin-bottom: 2rem;
}
.ec-mb-3 {
	margin-bottom: 3rem;
}

.ec-flex {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.ec-grid {
	display: grid;
	gap: 2rem;
}

.ec-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ec-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===== HEADER ===== */
.ec-header {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	backdrop-filter: blur(10px);
	transition: all 0.1s ease;
}

.ec-header.ec-scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.ec-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.ec-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
}

.ec-logo:hover {
	color: #dc3545;
	transform: scale(1.05);
}

.ec-nav {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.ec-nav-link {
	font-weight: 600;
	font-size: 1.1rem;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.5rem 0;
	position: relative;
	transition: all 0.3s ease;
}

.ec-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(45deg, #dc3545, #ffc107);
	transition: width 0.3s ease;
}

.ec-nav-link:hover::after,
.ec-nav-link.ec-active::after {
	width: 100%;
}

.ec-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
}

.ec-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	/* transition: 0.3s; */
}

/* ===== MOBILE MENU ===== */
.ec-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	height: 100vh;
	width: 300px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	z-index: 999;
	transition: right 0.3s ease;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.ec-mobile-menu.ec-active {
	right: 0;
}

.ec-mobile-nav {
	list-style: none;
	padding: 6rem 2rem 2rem;
}

.ec-mobile-nav li {
	margin-bottom: 1.5rem;
}

.ec-mobile-nav-link {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
	transition: all 0.3s ease;
}

.ec-mobile-nav-link:hover {
	color: #dc3545;
	padding-left: 1rem;
}

.ec-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.ec-mobile-overlay.ec-active {
	opacity: 1;
	visibility: visible;
}

/* ===== BUTTONS ===== */
.ec-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 50px;
	/* font-family: 'Impact', sans-serif; */
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ec-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.6s ease;
}

.ec-btn:hover::before {
	width: 300px;
	height: 300px;
}

.ec-btn-primary {
	background: linear-gradient(45deg, #dc3545, #e63946);
	color: white;
	box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.ec-btn-primary:hover {
	background: linear-gradient(45deg, #c82333, #dc3545);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
	color: white;
}

.ec-btn-secondary {
	background: linear-gradient(45deg, #ffc107, #ffca2c);
	color: #000;
	box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.ec-btn-secondary:hover {
	background: linear-gradient(45deg, #e0a800, #ffc107);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
	color: #000;
}

.ec-btn-outline {
	background: transparent;
	border: 2px solid #dc3545;
	color: #dc3545;
}

.ec-btn-outline:hover {
	background: #dc3545;
	color: white;
	transform: translateY(-3px);
}

.ec-btn-pulse {
	animation: ec-pulse 2s infinite;
}

@keyframes ec-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* ===== BADGES ===== */
.ec-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0.25rem;
}

.ec-badge-live {
	background: #dc3545;
	color: white;
	animation: ec-pulse 2s infinite;
}

.ec-badge-neu {
	background: #ffc107;
	color: #000;
}

.ec-badge-exclusive {
	background: #000;
	color: white;
}

/* ===== HERO SECTION ===== */
.ec-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.ec-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.ec-hero-left {
	flex: 1;
}

.ec-hero-right {
	flex: 1;
	position: relative;
	min-height: 500px;
	background-image: url('assets/ec-hero.avif');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 15px;
	content-visibility: auto;
	contain-intrinsic-size: 500px;
}

.ec-hero h1 {
	font-size: 2rem;
	line-height: 1.1;
	margin-bottom: 2rem;
	/* background: linear-gradient(45deg, #000, #dc3545); */
	/* -webkit-background-clip: text; */
	/* -webkit-text-fill-color: transparent; */
	/* background-clip: text; */
}

.ec-hero p {
	font-size: 1.3rem;
	color: #666;

	max-width: 500px;
}

.ec-hero .ec-btn {
	margin-top: 1rem;
}

/* ===== SECTIONS ===== */
.ec-section-white {
	background: #ffffff;
	padding: 50px 0;
}

.ec-section-light {
	padding: 50px 0;
	background: #f8f9fa;
}

.ec-section-yellow {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	padding: 50px 0;
}

.ec-section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.ec-section-title h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.ec-section-title p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* ===== ABOUT PREVIEW ===== */
.ec-about-preview {
	padding: 100px 0;
	background: #ffffff;
}

.ec-about-list {
	list-style: none;
	margin-top: 2rem;
}

.ec-about-list li {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.ec-about-list li:hover {
	background: #ffc107;
	transform: translateX(10px);
}

.ec-about-list li i {
	font-size: 1.5rem;
	margin-right: 1rem;
	color: #dc3545;
}

/* ===== PRODUCT HIGHLIGHT ===== */
.ec-product-highlight {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ec-quote {
	background: #ffffff;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin: 3rem 0;
	position: relative;
	border-left: 5px solid #dc3545;
}

.ec-quote::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 4rem;
	color: #dc3545;
	font-family: 'Impact', sans-serif;
}

.ec-quote p {
	font-size: 1.4rem;
	font-style: italic;
	color: #333;
	margin-bottom: 1rem;
}

.ec-quote-author {
	font-weight: 700;
	color: #dc3545;
	text-align: right;
}

.ec-video-preview {
	position: relative;
	background: #000;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	/* aspect-ratio: 16/9; */
	cursor: pointer;
	transition: all 0.3s ease;
}

.ec-video-preview:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.ec-video-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(220, 53, 69, 0.8),
		rgba(255, 193, 7, 0.8)
	);
	z-index: 1;
}

.ec-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #dc3545;
	transition: all 0.3s ease;
}

.ec-video-preview:hover .ec-video-play {
	background: #ffffff;
	transform: translate(-50%, -50%) scale(1.1);
}

/* ===== COURSE CARD ===== */
.ec-course-card {
	background: linear-gradient(135deg, #ffffff 0%, #ffc107 100%);
	padding: 3rem;
	border-radius: 25px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin: 4rem 0;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.ec-course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ec-course-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #dc3545, #ffc107, #dc3545);
}

.ec-expert-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: url('assets/ec-expert1.avif') center/cover;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	font-weight: bold;
}

.ec-course-card h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #000;
}

.ec-course-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: #dc3545;
	margin: 1rem 0;
}

.ec-course-offer {
	background: #dc3545;
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ===== BENEFITS ===== */
.ec-benefits {
	padding: 100px 0;
	background: #ffffff;
}

.ec-benefits-list {
	list-style: none;
	max-width: 800px;
	margin: 0 auto;
}

.ec-benefits-list li {
	background: #f8f9fa;
	padding: 2rem;
	margin-bottom: 1.5rem;
	border-radius: 15px;
	border-left: 5px solid #dc3545;
	font-size: 1.2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ec-benefits-list li::before {
	content: '?';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	color: #ffc107;
	font-weight: bold;
}

.ec-benefits-list li:hover {
	background: #ffc107;
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== TESTIMONIALS ===== */
.ec-testimonials {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ec-testimonial-card {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
}

.ec-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ec-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	font-weight: bold;
}

.ec-testimonial-text {
	font-style: italic;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.ec-testimonial-name {
	font-weight: 700;
	color: #333;
	margin-bottom: 0.5rem;
}

.ec-testimonial-stars {
	color: #ffc107;
	font-size: 1.2rem;
}

/* ===== OFFER ===== */
.ec-offer {
	padding: 100px 0;
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	text-align: center;
}

.ec-offer-list {
	list-style: none;
	max-width: 600px;
	margin: 3rem auto;
	text-align: left;
}

.ec-offer-list li {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.ec-offer-list li:hover {
	background: #ffffff;
	transform: translateX(10px);
}

.ec-offer-list li i {
	color: #28a745;
	font-size: 1.5rem;
	margin-right: 1rem;
}

.ec-offer-price {
	font-size: 4rem;
	font-weight: 700;
	color: #dc3545;
	margin: 2rem 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== FAQ ===== */
.ec-faq {
	padding: 100px 0;
	background: #ffffff;
}

.ec-faq-item {
	background: #f8f9fa;
	border-radius: 15px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.ec-faq-item:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ec-faq-question {
	padding: 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	font-size: 1.2rem;
	color: #333;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	transition: all 0.3s ease;
}

.ec-faq-question:hover {
	color: #dc3545;
}

.ec-faq-question i {
	font-size: 1.5rem;
	color: #dc3545;
	transition: transform 0.3s ease;
}

.ec-faq-question.ec-active i {
	transform: rotate(45deg);
}

.ec-faq-answer {
	padding: 0 2rem 2rem;
	color: #666;
	line-height: 1.6;
	display: none;
	animation: ec-fadeInUp 0.3s ease;
}

.ec-faq-answer.ec-show {
	display: block;
}

/* ===== FORMS ===== */
.ec-form {
	max-width: 600px;
	margin: 0 auto;
}

.ec-form-group {
	margin-bottom: 2rem;
	position: relative;
}

.ec-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
	font-size: 1.1rem;
}

.ec-form-input,
.ec-form-textarea,
.ec-form-select {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid #e9ecef;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
}

.ec-form-input:focus,
.ec-form-textarea:focus,
.ec-form-select:focus {
	outline: none;
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.ec-form-input.ec-error,
.ec-form-textarea.ec-error,
.ec-form-select.ec-error {
	border-color: #dc3545;
	background: #fff5f5;
}

.ec-form-input.ec-success,
.ec-form-textarea.ec-success,
.ec-form-select.ec-success {
	border-color: #28a745;
	background: #f8fff9;
}

.ec-form-error {
	color: #dc3545;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ec-form-error.ec-show {
	display: block;
}

.ec-form-textarea {
	min-height: 120px;
	resize: vertical;
}

/* ===== CARDS ===== */
.ec-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ec-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ec-card-header {
	margin-bottom: 2rem;
}

.ec-card-title {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #333;
}

.ec-card-content {
	color: #666;
	line-height: 1.6;
}

.ec-card-footer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #eee;
}

/* ===== FOOTER ===== */
.ec-footer {
	background: #000;
	color: #ffffff;
	padding: 4rem 0 2rem;
}

.ec-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.ec-footer-section h3 {
	color: #ffc107;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.ec-footer-links {
	list-style: none;
}

.ec-footer-links li {
	margin-bottom: 0.8rem;
}

.ec-footer-links a {
	color: #ccc;
	transition: all 0.3s ease;
}

.ec-footer-links a:hover {
	color: #ffc107;
	padding-left: 0.5rem;
}

.ec-footer-contact {
	color: #ccc;
	line-height: 1.8;
}

.ec-footer-contact i {
	color: #dc3545;
	margin-right: 0.5rem;
	width: 20px;
}

.ec-footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.ec-footer-social a {
	width: 40px;
	height: 40px;
	background: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.ec-footer-social a:hover {
	background: #dc3545;
	transform: translateY(-3px);
}

.ec-footer-bottom {
	border-top: 1px solid #333;
	padding-top: 2rem;
	text-align: center;
	color: #666;
}

/* ===== COOKIE POPUP ===== */
.ec-cookie-popup {
	position: fixed;
	display: none;
	bottom: -100%;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	color: #ffffff;
	padding: 2rem;
	z-index: 10000;
	transition: bottom 0.5s ease;
}

.ec-cookie-popup.ec-show {
	bottom: 0;
	display: flex;
}

.ec-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ec-cookie-text {
	flex: 1;
	font-size: 1rem;
	line-height: 1.5;
}

.ec-cookie-text a {
	color: #ffc107;
	text-decoration: underline;
}

.ec-cookie-actions {
	display: flex;
	gap: 1rem;
}

.ec-cookie-btn {
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 25px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ec-cookie-accept {
	background: #dc3545;
	color: white;
}

.ec-cookie-accept:hover {
	background: #c82333;
	transform: translateY(-2px);
}

.ec-cookie-decline {
	background: transparent;
	color: white;
	border: 2px solid #666;
}

.ec-cookie-decline:hover {
	background: #666;
	transform: translateY(-2px);
}

.ec-video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ec-video-modal.ec-show {
	opacity: 1;
	visibility: visible;
}

.ec-video-modal-content {
	position: relative;
	width: 90%;
	max-width: 900px;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.ec-video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

.ec-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.ec-video-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 20px;
	line-height: 30px;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s ease;
}

.ec-video-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
	.ec-video-modal-content {
		width: 95%;
	}

	.ec-video-modal-close {
		top: 10px;
		right: 10px;
		width: 25px;
		height: 25px;
		font-size: 18px;
		line-height: 25px;
	}
}

/* ===== ABOUT PAGE STYLES ===== */
.ec-about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	text-align: center;
}

.ec-about-mission {
	padding: 100px 0;
	background: #ffffff;
}

.ec-mission-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.ec-mission-card {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	padding: 3rem 2rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ec-mission-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #dc3545, #ffc107);
}

.ec-mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ec-mission-icon {
	font-size: 3rem;
	color: #dc3545;
	margin-bottom: 1.5rem;
}

.ec-about-values {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ec-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.ec-value-item {
	text-align: center;
	padding: 2rem;
}

.ec-value-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, #dc3545, #ffc107);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
}

/* ===== COURSES PAGE STYLES ===== */
.ec-courses-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	text-align: center;
}

.ec-courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
}

.ec-course-item {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ec-course-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ec-course-image {
	height: 200px;
	background: linear-gradient(45deg, #dc3545, #ffc107);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ec-course-image i {
	font-size: 4rem;
	color: white;
}

.ec-course-info {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ec-course-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.ec-course-description {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.ec-course-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;

	font-size: 0.9rem;
	color: #666;
	margin: auto 0 1.5rem;
}

.ec-course-duration,
.ec-course-level {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ec-course-info .ec-badge {
	text-align: center;
}

/* ===== STORIES PAGE STYLES ===== */
.ec-stories-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	text-align: center;
}

.ec-stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.ec-story-card {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ec-story-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ec-story-image {
	height: 200px;
	background: linear-gradient(45deg, #dc3545, #ffc107);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ec-story-image i {
	font-size: 3rem;
	color: white;
}

.ec-story-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ec-story-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333;
}

.ec-story-excerpt {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ec-story-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: #999;
	margin-top: auto;
}

/* ===== STORY MODAL ===== */
.ec-story-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.ec-story-modal.ec-show {
	display: flex;
}

.ec-story-modal-content {
	background: #ffffff;
	border-radius: 20px;
	max-width: 800px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.ec-story-modal-header {
	padding: 2rem 2rem 1rem;
	border-bottom: 1px solid #eee;
	position: relative;
}

.ec-story-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #666;
	transition: all 0.3s ease;
}

.ec-story-modal-close:hover {
	color: #dc3545;
	transform: scale(1.1);
}

.ec-story-modal-body {
	padding: 2rem;
}

.ec-story-modal-video {
	width: 100%;
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 10px;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.ec-contact-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	text-align: center;
}

.ec-contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 4rem;
}

.ec-contact-info {
	background: #ffffff;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ec-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.ec-contact-item:hover {
	background: #ffc107;
	transform: translateX(5px);
}

.ec-contact-item a:hover {
	color: #333;
}

.ec-contact-item i {
	font-size: 1.5rem;
	color: #dc3545;
	margin-right: 1rem;
	margin-top: 0.25rem;
}

.ec-contact-form-container {
	background: #ffffff;
	padding: 3rem;

	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ec-maps {
	margin-top: 4rem;
	border-radius: 20px;
	overflow: hidden;
	padding: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ec-map {
	height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ec-map {
		height: 400px;
	}
}

.ec-contact-map {
	position: relative;
	height: 400px;
	/* flex: 1; */
	min-height: 400px;

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ec-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;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 850px) {
	.ec-nav {
		display: none;
	}

	.ec-mobile-toggle {
		display: flex;
	}

	.ec-hero-content {
		grid-template-columns: 1fr;
	}
	.ec-hero {
		text-align: center;
	}

	.ec-hero p {
		margin: 15px auto;
	}
}
@media (max-width: 768px) {
	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.8rem;
	}

	.ec-section {
		padding: 60px 0;
	}

	.ec-grid-2,
	.ec-grid-3 {
		grid-template-columns: 1fr;
	}

	.ec-course-card {
		margin: 2rem 0;
		padding: 2rem;
	}

	.ec-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ec-cookie-actions {
		justify-content: center;
		flex-direction: column;
	}

	h1 {
		font-size: 25px;
	}

	.ec-contact-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.ec-hero-right {
		display: none;
	}
}

@media (max-width: 480px) {
	.ec-hero h1 {
		font-size: 2rem;
	}

	.ec-contact-item {
		flex-direction: column;
	}

	.ec-contact-item i {
		margin-bottom: 15px;
	}
	.ec-contact-info {
		padding: 2rem;
	}
	.ec-values-grid,
	.ec-mission-cards,
	.ec-courses-grid,
	.ec-stories-grid,
	.ec-contact-content {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.ec-about-list li {
		flex-direction: column;
	}

	.ec-course-card h3,
	.ec-course-card h2 {
		word-wrap: break-word;
		font-size: 1.5rem;
	}

	.ec-grid-2,
	.ec-grid-3 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ec-card-header h4 {
		word-wrap: break-word;
	}

	.ec-hero p {
		font-size: 1.1rem;
	}

	.ec-btn {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}

	.ec-section-title h2 {
		font-size: 2rem;
	}

	.ec-offer-price {
		font-size: 3rem;
	}
}

.ec-policy-page {
	padding: 120px 0 80px;
	background: #f8f9fa;
	min-height: 100vh;
}

.ec-policy-header {
	text-align: center;
	margin-bottom: 4rem;
	background: #ffffff;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ec-policy-title {
	font-size: 3rem;
	font-family: 'Impact', sans-serif;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.ec-policy-date {
	font-size: 1.1rem;
	color: #dc3545;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ec-policy-content {
	max-width: 1000px;
	margin: 0 auto;
}

.ec-policy-section {
	background: #ffffff;
	margin-bottom: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
}

.ec-policy-section:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.ec-policy-section h2 {
	background: linear-gradient(45deg, #dc3545, #ffc107);
	color: #ffffff;
	padding: 2rem;
	margin: 0;
	font-size: 1.8rem;
	font-family: 'Impact', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ec-policy-section p {
	padding: 2rem;
	color: #333;
	line-height: 1.8;
	font-size: 1.1rem;
	margin: 0;
}

.ec-policy-section ul {
	padding: 0 2rem 2rem;
	color: #333;
	line-height: 1.8;
}

.ec-policy-section li {
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
	position: relative;
	padding-left: 1.5rem;
}

.ec-policy-section li::before {
	content: '●';
	color: #dc3545;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.ec-policy-contact {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	padding: 3rem;
	border-radius: 20px;
	margin-top: 3rem;
	text-align: center;
}

.ec-policy-contact-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ec-policy-contact-info {
	background: #ffffff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	display: inline-block;
	text-align: left;
}

.ec-policy-contact-info p {
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
	color: #333;
	line-height: 1.6;
}

.ec-policy-contact-info a {
	color: #dc3545;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.ec-policy-contact-info a:hover {
	color: #ffc107;
	text-decoration: underline;
}

/* ===== RESPONSIVE POLICY PAGES ===== */
@media (max-width: 768px) {
	.ec-policy-page {
		padding: 100px 0 60px;
	}

	.ec-policy-title {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.ec-policy-header {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.ec-policy-section h2 {
		font-size: 1.5rem;
		padding: 1.5rem;
	}

	.ec-policy-section p,
	.ec-policy-section ul {
		padding: 1.5rem;
	}

	.ec-policy-contact {
		padding: 2rem;
		margin-top: 2rem;
	}

	.ec-policy-contact-info {
		padding: 1.5rem;
	}
}
