:root {
	--primary: #094a10c4;
	--secondary: #648475;
	--accent: #f858bd;
	--background: #e2f4e4;
	--text: #071209;
	--muted: #9ba79c;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Bitter', serif;
	font-weight: 400;
	line-height: 1.6;
}

header {
	background: #094a10c4;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 100;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 2rem;
	align-items: center;
}

.logo-section {
	display: flex;
	flex-direction: column;
}

.logo {
	font-size: 2rem;
	font-weight: 900;
	color: white;
	letter-spacing: 1px;
	cursor: pointer;
}

.nav {
	justify-self: center;
}

.nav-list {
	display: flex;
	justify-content: center;
	gap: 2rem;
	list-style: none;
}

.nav-link {
	color: white;
	text-decoration: none;

	padding: 0.5rem 1rem;
	border-radius: 20px;
	transition: all 0.5s ease;
}

.nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.contact-btn {
	background: #f858bd;
	color: #071209;
}

.contact-btn:hover {
	background: #9ba79c;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.phone-number {
	color: white;
}

.nav-toggle {
	display: none;
}

.nav a {
	text-decoration: none;

	transition: all 0.5s ease;
}

.nav a:hover {
	color: var(--primary);
}

.header-content a {
	text-decoration: none;
}

@media (max-width: 874px) {
	.nav-toggle {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		padding: 10px;
	}

	.hamburger {
		display: block;
		position: relative;
		width: 30px;
		height: 3px;
		background: white;
		transition: all 0.5s ease;
	}

	.hamburger::before,
	.hamburger::after {
		content: '';
		position: absolute;
		width: 30px;
		height: 3px;
		background: white;
		transition: all 0.5s ease;
	}

	.hamburger::before {
		transform: translateY(-10px) translateX(-15px);
	}

	.hamburger::after {
		transform: translateY(10px) translateX(-15px);
	}

	.nav-toggle.active .hamburger {
		background: transparent;
		transform: translateX(-15px);
	}

	.nav-toggle.active .hamburger::before {
		transform: rotate(45deg);
	}

	.nav-toggle.active .hamburger::after {
		transform: rotate(-45deg);
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #094a10c4;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		max-height: 0;
		width: 100%;
		overflow: hidden;
		transition: all 0.5s ease;
	}

	.hidden {
		display: none;
	}

	.nav.active {
		max-height: 300px;
	}

	.nav-list {
		flex-direction: column;
		padding: 20px;
	}

	.nav-list li {
		margin: 10px 0;
	}
}

footer {
	background: #094a10c4;
	color: white;
	padding: 4rem 2rem 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	max-width: 1400px;
	margin: 0 auto;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-section h4 {
	color: #f858bd;
	font-size: 1.2rem;
	font-weight: 900;
	margin-bottom: 1rem;
	position: relative;
}

.quick-links ul {
	list-style: none;
	padding: 0;
}

.quick-links a {
	color: #f1f0fb;
	text-decoration: none;
	padding: 0.5rem 0;
	display: block;
	transition: all 0.5s ease;
}

.quick-links a:hover {
	color: #f858bd;
}

.contact-details p {
	margin: 0.5rem 0;
}

.working-hours {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(142, 145, 150, 0.2);
}

.working-hours h5 {
	color: #f858bd;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	max-width: 1400px;
	margin: 3rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid rgba(142, 145, 150, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-badges {
	display: flex;
	gap: 1rem;
}

.badge {
	padding: 0.5rem 1rem;
	background: rgba(214, 188, 250, 0.1);
	border-radius: 20px;
	font-size: 0.9rem;
}

@media (max-width: 425px) {
	.phone-number {
		display: none;
	}
}

@media (max-width: 768px) {
	.header-container {
		grid-template-rows: 1fr;
		gap: 1rem;
		text-align: center;
	}

	.logo-section {
		align-items: center;
	}

	.nav-list {
		flex-direction: column;
		gap: 1rem;
	}

	.header-contact {
		justify-content: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

main {
	margin-top: 60px;
}

section {
	padding: 4rem 5%;
}

.section-light {
	background: #fff;
}

.section-dark {
	background: #f5f5f5;
}

.hero {
	background: linear-gradient(#094a10c4, #071209);
	color: #f1f0fb;
	text-align: center;
	padding: 14rem 1rem;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	background: #f858bd;
	font-size: 20px;
	color: #071209;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.5s ease;
}

.cta-button:hover {
	background: #e2f4e4;
}

.courses-section {
	background: #648475;
	padding: 6rem 2rem;
}

.courses-section h2 {
	text-align: center;
	font-weight: 900;
	margin-bottom: 30px;
	font-size: 40px;
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.course-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease;

	overflow: hidden;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-details {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
}

.course-details li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f858bd;
	border-right: 1px solid #f858bd;
	color: #666;
}

.course-stats {
	display: flex;
	justify-content: space-between;
	margin-top: 1.5rem;
	font-weight: 900;
	color: #f858bd;
}

.about-section {
	color: #071209;
	padding: 6rem 2rem;
}

.features-grid {
	display: grid;
	grid-template-rows: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	text-align: center;
	width: 50%;
	margin: 0 auto;
}

.feature {
	background: #648475;
	padding: 2.5rem;
	border: 2px solid #094a10c4;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.5s ease;
}

.feature:hover {
	transform: translateY(-5px);
}

.about-section h2 {
	text-align: center;
	font-weight: 900;
	margin-bottom: 30px;
	font-size: 40px;
}

.feature-list {
	list-style: none;
	padding: 0;
	text-align: center;
	margin: 1.5rem 0;
}

.feature-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.reviews-section {
	padding: 6rem 2rem;
}

.reviews-section h2 {
	text-align: center;
	font-weight: 900;
	margin-bottom: 30px;
	font-size: 40px;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.review-card {
	background: #648475;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	color: white;
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.reviewer-info h4 {
	margin: 0;
	color: white;
}

.reviewer-info p {
	margin: 0;
	color: white;
	font-size: 0.9rem;
}

.review-rating {
	color: #f858bd;
	margin-bottom: 1rem;
}

.review-text {
	color: white;
	font-style: italic;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.courses-grid,
	.features-grid,
	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.course-card,
	.feature,
	.review-card {
		padding: 1.5rem;
	}
}

.contact-section {
	background-color: #648475;
}

.contact-section h2 {
	text-align: center;
	font-weight: 900;
	margin-bottom: 30px;
	font-size: 40px;
}

.contact-container {
	margin-top: 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form input,
.contact-form select {
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.contact-form button {
	background: #094a10c4;

	color: white;
	padding: 1rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.5s ease;
}

.contact-form button:hover {
	background: #f858bd;
}

@media (max-width: 768px) {
	nav ul {
		display: none;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 2rem;
	}
}

.map {
	height: 100%;
}

#loom-companion-mv3 {
	display: none;
}

@media (max-width: 768px) {
	.map {
		height: 400px;
	}

	.features-grid {
		width: auto !important;
		margin: 0;
	}
}

.contact-map {
	position: relative;
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}
.iti input[type='tel'] {
	width: 100%;
}

.privacy-policy,
.terms-of-use {
	padding: 2rem 0;
}

.policy-content,
.terms-content {
	max-width: 800px;
	margin: 0 auto;
}

.policy-content h2,
.terms-content h2 {
	color: var(--primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.policy-content p,
.terms-content p {
	margin-bottom: 1rem;
}

.terms-content p a {
	color: var(--primary-color);
}

.policy-content ul,
.terms-content ul {
	list-style-type: disc;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.policy-content li,
.terms-content li {
	margin-bottom: 0.5rem;
}
.page-header {
	padding: 5rem 0 0;
	text-align: center;
}

.page-header h1 {
	font-size: 2.5rem;
}

.page-hero {
	background-color: var(--primary-color);
	color: var(--primary);
	text-align: center;
	padding: 10px;
	margin-top: 115px;
}

.page-hero h1 {
	font-size: 3rem;

	margin-bottom: 1rem;
}

.page-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 24px;
	}
}

.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background-color: var(--text);
	color: white;
	padding: 1rem;
	border-radius: 20px;
	text-align: center;
	z-index: 1000;
	display: none;
}

.cookie-popup a {
	color: #2db3a3;
}

.cookie-popup.show {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-popup p {
	margin: 0;
	padding-right: 20px;
}

@media (max-width: 768px) {
	.cookie-popup.show {
		gap: 8px;
		flex-direction: column;
	}
}

.btn {
	padding: 15px;
	background-color: #094a10c4;
	border: none;
	border-radius: 10px;
	color: white;
	transition: all 0.5s ease;
}

.btn:hover {
	background-color: #f858bd;
}

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