* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	font-size: 16px;
}

body {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #eaeaea;
	background-color: #0f0f10;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul,
ol {
	padding-left: 1.2rem;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	outline: none;
}

/* ===== TYPOGRAPHY ===== */
.en-title-main {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.2;
	color: #eaeaea;
	margin-bottom: 1rem;
}

.en-title-section {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.3;
	color: #eaeaea;
	margin-bottom: 2rem;
	text-align: center;
}

.en-title-card {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	line-height: 1.4;
	color: #4dd0e1;
	margin-bottom: 1rem;
}

.en-subtitle {
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	color: #eaeaea;
	opacity: 0.9;
	margin-bottom: 2rem;
}

.en-text-body {
	font-size: 1rem;
	line-height: 1.7;
	color: #eaeaea;
	margin-bottom: 1.5rem;
}

.en-text-small {
	font-size: 0.875rem;
	color: #eaeaea;
	opacity: 0.8;
}

/* ===== LAYOUT CONTAINERS ===== */
.en-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.en-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.en-container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.en-section {
	padding: 5rem 0;
}

.en-section-hero {
	padding: 8rem 0 6rem;
	position: relative;
	overflow: hidden;
}

.en-section-alt {
	background-color: #1a1b1e;
	padding: 5rem 0;
}

/* ===== GRID SYSTEMS ===== */
.en-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.en-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.en-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.en-grid-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.en-grid-footer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 3rem;
	padding: 3rem 0;
}

/* ===== HEADER ===== */
.en-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 15, 16, 0);
	backdrop-filter: blur(0px);
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.en-header.scrolled {
	background: rgba(26, 27, 30, 0.95);
	backdrop-filter: blur(20px);
	border-bottom-color: rgba(77, 208, 225, 0.1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.en-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	transition: padding 0.3s ease;
}

.en-header.scrolled .en-header-content {
	padding: 0.75rem 0;
}

.en-logo {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.75rem;
	color: #4dd0e1;
	text-decoration: none;
	transition: all 0.3s ease;
}

.en-logo:hover {
	color: #ffd54f;
	text-shadow: 0 0 20px rgba(77, 208, 225, 0.5);
}

.en-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.en-nav-link {
	color: #eaeaea;
	font-weight: 400;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
}

.en-nav-link:hover,
.en-nav-link.active {
	color: #4dd0e1;
	background: rgba(77, 208, 225, 0.1);
}

.en-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: #4dd0e1;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.en-nav-link:hover::after,
.en-nav-link.active::after {
	width: 100%;
}

.en-burger {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 0.5rem;
	cursor: pointer;
}

.en-burger-line {
	width: 25px;
	height: 2px;
	background: #eaeaea;
	transition: all 0.3s ease;
}

.en-burger.active .en-burger-line:nth-child(1) {
	transform: rotate(45deg) translate(3px, 1px);
}

.en-burger.active .en-burger-line:nth-child(2) {
	opacity: 0;
}

.en-burger.active .en-burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== MOBILE MENU ===== */
.en-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #1a1b1e;
	z-index: 999;
	transition: right 0.3s ease;
	padding: 2rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
}

.en-mobile-menu.active {
	right: 0;
}

.en-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.en-mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ===== BUTTONS ===== */
.en-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.en-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.en-btn:hover::before {
	left: 100%;
}

.en-btn-primary {
	background: #4dd0e1;
	color: #0f0f10;
	font-weight: 600;
}

.en-btn-primary:hover {
	background: #ffd54f;
	color: #0f0f10;
	box-shadow: 0 8px 25px rgba(77, 208, 225, 0.4);
	transform: translateY(-2px);
}

.en-btn-secondary {
	background: transparent;
	color: #4dd0e1;
	border-color: #4dd0e1;
}

.en-btn-secondary:hover {
	background: #4dd0e1;
	color: #0f0f10;
	box-shadow: 0 8px 25px rgba(77, 208, 225, 0.3);
	transform: translateY(-2px);
}

.en-btn-accent {
	background: linear-gradient(135deg, #f06292, #ffd54f);
	color: #0f0f10;
	font-weight: 600;
}

.en-btn-accent:hover {
	background: linear-gradient(135deg, #ffd54f, #f06292);
	box-shadow: 0 8px 25px rgba(240, 98, 146, 0.4);
	transform: translateY(-2px);
}

.en-btn-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
}

/* ===== CARDS ===== */
.en-card {
	background: #1a1b1e;
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(77, 208, 225, 0.1);
	position: relative;
	overflow: hidden;
}

.en-card img {
	object-fit: cover;
}

.en-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #4dd0e1, transparent);
	transition: left 0.5s ease;
}

.en-card:hover::before {
	left: 100%;
}

.en-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: #4dd0e1;
}

.en-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4dd0e1, #f06292);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #0f0f10;
}

.en-card-feature {
	text-align: center;
	padding: 3rem 2rem;
}

.en-card-feature .en-card-icon {
	margin: 0 auto 1.5rem;
}

.en-card-testimonial {
	text-align: center;
	background: linear-gradient(135deg, #1a1b1e, #2a2b2e);
	border: 1px solid rgba(77, 208, 225, 0.2);
}

.en-card-testimonial .en-text-body {
	font-style: italic;
	margin-bottom: 1.5rem;
	position: relative;
}

.en-card-testimonial .en-text-body::before {
	content: '"';
	font-size: 3rem;
	color: #4dd0e1;
	position: absolute;
	top: -1rem;
	left: -1rem;
	font-family: serif;
}

.en-testimonial-author {
	font-weight: 600;
	color: #ffd54f;
	margin-bottom: 0.5rem;
}

.en-testimonial-role {
	color: #eaeaea;
	opacity: 0.8;
	font-size: 0.875rem;
}

/* ===== HERO SECTION ===== */
.en-hero {
	background: linear-gradient(
			135deg,
			rgba(15, 15, 16, 0.9),
			rgba(26, 27, 30, 0.8)
		),
		url('assets/en-hero.webp');
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
}

.en-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(77, 208, 225, 0.1),
			transparent
		),
		radial-gradient(circle at 70% 30%, rgba(240, 98, 146, 0.1), transparent);
	pointer-events: none;
}

.en-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.en-hero-badge {
	display: inline-block;
	background: rgba(77, 208, 225, 0.1);
	color: #4dd0e1;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	border: 1px solid #4dd0e1;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 500;
}

/* ===== FORMS ===== */
.en-form {
	background: #1a1b1e;
	padding: 3rem;
	border-radius: 12px;
	border: 1px solid rgba(77, 208, 225, 0.2);
}

.en-form-group {
	margin-bottom: 1.5rem;
}

.en-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #4dd0e1;
	font-weight: 500;
}

.en-form-input,
.en-form-textarea,
.en-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(77, 208, 225, 0.2);
	border-radius: 8px;
	background: #0f0f10;
	color: #eaeaea;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.en-form-input:focus,
.en-form-textarea:focus,
.en-form-select:focus {
	border-color: #4dd0e1;
	box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

.en-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.en-form-error {
	color: #f06292;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.en-form-group.error .en-form-input,
.en-form-group.error .en-form-textarea {
	border-color: #f06292;
}

.en-form-group.error .en-form-error {
	display: block;
}

/* ===== ANIMATIONS ===== */
.en-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.en-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.en-slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease;
}

.en-slide-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.en-slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease;
}

.en-slide-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.en-scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.8s ease;
}

.en-scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

/* ===== FOOTER ===== */
.en-footer {
	background: #1a1b1e;
	border-top: 1px solid rgba(77, 208, 225, 0.1);
}

.en-footer-brand {
	margin-bottom: 1rem;
}

.en-footer-logo {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #4dd0e1;
	margin-bottom: 0.5rem;
	display: block;
}

.en-footer-slogan {
	color: #eaeaea;
	opacity: 0.8;
	font-style: italic;
}

.en-footer-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #ffd54f;
	margin-bottom: 1rem;
}

.en-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.en-footer-link {
	color: #eaeaea;
	opacity: 0.8;
	transition: all 0.3s ease;
	padding: 0.25rem 0;
}

.en-footer-link:hover {
	color: #4dd0e1;
	opacity: 1;
	transform: translateX(5px);
}

.en-footer-contact {
	line-height: 1.8;
}

.en-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: #eaeaea;
}

.en-footer-contact-icon {
	color: #4dd0e1;
	margin-top: 0.125rem;
	flex-shrink: 0;
}

.en-footer-bottom {
	border-top: 1px solid rgba(77, 208, 225, 0.1);
	padding: 2rem 0;
	margin-top: 3rem;
	text-align: center;
	color: #eaeaea;
	opacity: 0.8;
}

/* ===== COOKIE POPUP ===== */
.en-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: #1a1b1e;
	padding: 1.5rem;
	border-top: 3px solid #4dd0e1;
	z-index: 10000;
	transition: bottom 0.3s ease;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.en-cookie-popup.show {
	bottom: 0;
}

.en-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.en-cookie-text {
	flex: 1;
	color: #eaeaea;
}

.en-cookie-text a {
	color: #4dd0e1;
	text-decoration: underline;
}

.en-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

/* ===== MAP ===== */
.en-map-container {
	border-radius: 1rem;
	overflow: hidden;
	border: 2px solid rgba(77, 208, 225, 0.2);
	height: 100%;
}

.en-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.en-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.en-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.en-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;
}

/* ===== TABS ===== */
.en-tabs {
	margin-bottom: 3rem;
}

.en-tabs-nav {
	display: flex;
	gap: 0;
	margin-bottom: 2rem;
	border-bottom: 2px solid rgba(77, 208, 225, 0.1);
}

.en-tab-button {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	color: #eaeaea;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
	position: relative;
}

.en-tab-button:hover,
.en-tab-button.active {
	color: #4dd0e1;
	border-bottom-color: #4dd0e1;
	background: rgba(77, 208, 225, 0.05);
}

.en-tab-content {
	display: none;
}

.en-tab-content.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== ACCORDION ===== */
.en-accordion {
	border: 1px solid rgba(77, 208, 225, 0.1);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.en-accordion-header {
	background: #1a1b1e;
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(77, 208, 225, 0.1);
}

.en-accordion-header:hover {
	background: rgba(77, 208, 225, 0.05);
}

.en-accordion-title {
	font-weight: 600;
	color: #eaeaea;
	font-size: 1.125rem;
}

.en-accordion-icon {
	color: #4dd0e1;
	transition: transform 0.3s ease;
}

.en-accordion.active .en-accordion-icon {
	transform: rotate(180deg);
}

.en-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #0f0f10;
}

.en-accordion.active .en-accordion-content {
	max-height: 500px;
}

.en-accordion-body {
	padding: 1.5rem;
	color: #eaeaea;
	line-height: 1.7;
}

/* ===== STATS ===== */
.en-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.en-stat-item {
	text-align: center;
	padding: 2rem 1rem;
	background: rgba(77, 208, 225, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(77, 208, 225, 0.2);
}

.en-stat-number {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 2.5rem;
	color: #4dd0e1;
	display: block;
	margin-bottom: 0.5rem;
}

.en-stat-label {
	color: #eaeaea;
	font-weight: 500;
}

/* ===== PROGRESS BAR ===== */
.en-progress-bar {
	background: rgba(77, 208, 225, 0.1);
	height: 8px;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.en-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4dd0e1, #ffd54f);
	border-radius: 4px;
	transition: width 1s ease;
	width: 0;
}

/* ===== BADGES ===== */
.en-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.en-badge-primary {
	background: #4dd0e1;
	color: #0f0f10;
}

.en-badge-secondary {
	background: rgba(77, 208, 225, 0.1);
	color: #4dd0e1;
	border: 1px solid #4dd0e1;
}

.en-badge-accent {
	background: #f06292;
	color: #eaeaea;
}

/* ===== UTILITIES ===== */
.en-text-center {
	text-align: center;
}
.en-text-left {
	text-align: left;
}
.en-text-right {
	text-align: right;
}

.en-mb-1 {
	margin-bottom: 0.5rem;
}
.en-mb-2 {
	margin-bottom: 1rem;
}
.en-mb-3 {
	margin-bottom: 2rem;
}
.en-mb-4 {
	margin-bottom: 3rem;
}

.en-mt-1 {
	margin-top: 0.5rem;
}
.en-mt-2 {
	margin-top: 1rem;
}
.en-mt-3 {
	margin-top: 2rem;
}
.en-mt-4 {
	margin-top: 3rem;
}

.en-hidden {
	display: none;
}
.en-visible {
	display: block;
}

.en-color-primary {
	color: #4dd0e1;
}
.en-color-accent {
	color: #ffd54f;
}
.en-color-highlight {
	color: #f06292;
}

.en-bg-dark {
	background-color: #1a1b1e;
}
.en-bg-darker {
	background-color: #0f0f10;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
	.en-nav {
		display: none;
	}

	.en-burger {
		display: flex;
	}

	.en-container,
	.en-container-wide,
	.en-container-narrow {
		padding: 0 1rem;
	}

	.en-section {
		padding: 3rem 0;
	}

	.en-section-hero {
		padding: 6rem 0 4rem;
	}

	.en-grid-2,
	.en-grid-3,
	.en-grid-4 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.en-grid-form {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.en-grid-footer {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.en-btn-group {
		flex-direction: column;
		align-items: center;
	}

	.en-btn {
		width: 100%;
		max-width: 300px;
	}

	.en-tabs-nav {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.en-tab-button {
		flex: 1;
		min-width: 120px;
		padding: 0.75rem 1rem;
		font-size: 0.875rem;
	}

	.en-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.en-cookie-actions {
		flex-direction: column;
		width: 100%;
	}

	.en-stats {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.en-form {
		padding: 2rem 1rem;
	}

	.en-map-container {
		height: 300px;
	}
}

@media (max-width: 480px) {
	.en-title-main {
		font-size: 2rem;
	}

	.en-title-section {
		font-size: 1.5rem;
	}

	.en-mobile-menu {
		width: 100%;
		right: -100%;
	}

	.en-card {
		padding: 1.5rem;
	}

	.en-card-feature {
		padding: 2rem 1rem;
	}

	.en-stats {
		grid-template-columns: 1fr;
	}
}

.en-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	background: linear-gradient(135deg, #1a1b1e 0%, #0f0f10 100%);
	min-height: 100vh;
}

/* Header Styles */
.en-legal-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px;
	background: #1a1b1e;
	border-radius: 20px;
	border: 1px solid rgba(77, 208, 225, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.en-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #4dd0e1, #ffd54f, #f06292);
	border-radius: 20px 20px 0 0;
}

.en-legal-title {
	font-size: 3em;
	font-weight: 700;
	color: #4dd0e1;
	margin-bottom: 20px;
	text-shadow: 0 0 20px rgba(77, 208, 225, 0.3);
	letter-spacing: -0.5px;
}

.en-legal-company-info {
	font-size: 1.1em;
	color: #cccccc;
	opacity: 0.9;
}

.en-legal-company-info p {
	margin: 5px 0;
}

/* Content Styles */
.en-legal-content {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.en-legal-section {
	background: #1a1b1e;
	padding: 40px;
	border-radius: 16px;
	border: 1px solid rgba(77, 208, 225, 0.08);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.en-legal-section:hover {
	border-color: rgba(77, 208, 225, 0.2);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.en-legal-section-title {
	font-size: 1.8em;
	font-weight: 600;
	color: #4dd0e1;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(77, 208, 225, 0.2);
	position: relative;
}

.en-legal-section-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #4dd0e1, #ffd54f);
	border-radius: 1px;
}

.en-legal-section-content {
	font-size: 1.05em;
	line-height: 1.7;
}

.en-legal-section-content p {
	margin-bottom: 18px;
	color: #eaeaea;
}

.en-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* List Styles */
.en-legal-list {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}

.en-legal-list li {
	margin-bottom: 15px;
	padding-left: 25px;
	position: relative;
	color: #eaeaea;
	line-height: 1.6;
}

.en-legal-list li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #f06292;
	font-size: 0.8em;
	top: 3px;
}

.en-legal-list li strong {
	color: #ffd54f;
	font-weight: 600;
}

/* Contact Info Styles */
.en-legal-contact-info {
	background: rgba(77, 208, 225, 0.05);
	padding: 30px;
	border-radius: 12px;
	border: 1px solid rgba(77, 208, 225, 0.15);
	margin: 25px 0;
	position: relative;
}

.en-legal-contact-info::before {
	content: '📞';
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 1.5em;
	opacity: 0.3;
}

.en-legal-contact-info p {
	margin: 8px 0;
	color: #eaeaea;
}

.en-legal-contact-info strong {
	color: #4dd0e1;
}

/* Link Styles */
.en-legal-link {
	color: #4dd0e1;
	text-decoration: none;
	position: relative;
	transition: all 0.3s ease;
}

.en-legal-link:hover {
	color: #ffd54f;
	text-shadow: 0 0 10px rgba(255, 213, 79, 0.3);
}

.en-legal-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #4dd0e1, #ffd54f);
	transition: width 0.3s ease;
}

.en-legal-link:hover::after {
	width: 100%;
}

/* Cookie Banner Styles */
.en-legal-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1a1b1e 0%, #2a2b2e 100%);
	border-top: 3px solid #4dd0e1;
	padding: 20px;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
	z-index: 1000;
	animation: slideUp 0.5s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.en-legal-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.en-legal-cookie-content p {
	flex: 1;
	margin: 0;
	color: #eaeaea;
	font-size: 1em;
}

.en-legal-cookie-buttons {
	display: flex;
	gap: 15px;
}

.en-legal-cookie-accept,
.en-legal-cookie-decline {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.en-legal-cookie-accept {
	background: linear-gradient(135deg, #4dd0e1, #26a69a);
	color: #0f0f10;
}

.en-legal-cookie-accept:hover {
	background: linear-gradient(135deg, #ffd54f, #ffc107);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 213, 79, 0.3);
}

.en-legal-cookie-decline {
	background: transparent;
	color: #eaeaea;
	border: 2px solid #4dd0e1;
}

.en-legal-cookie-decline:hover {
	background: rgba(77, 208, 225, 0.1);
	color: #4dd0e1;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.en-legal-title {
		font-size: 2.2em;
	}

	.en-legal-section {
		padding: 25px 20px;
	}

	.en-legal-section-title {
		font-size: 1.5em;
	}

	.en-legal-header {
		padding: 30px 20px;
		margin-bottom: 40px;
	}

	.en-legal-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.en-legal-cookie-buttons {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.en-legal-title {
		font-size: 1.3rem;
	}

	.en-legal-section-title {
		font-size: 1.3em;
	}

	.en-legal-section-content {
		font-size: 1em;
	}

	.en-legal-cookie-buttons {
		flex-direction: column;
	}

	.en-legal-cookie-accept,
	.en-legal-cookie-decline {
		width: 100%;
		padding: 15px;
	}
}
