* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
	overflow-x: hidden;
}

.ll-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

ul,
ol {
	padding-left: 1.2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	color: #4a90e2;
}

h2 {
	font-size: 2.5rem;
	color: #333333;
}

h3 {
	font-size: 1.8rem;
	color: #4a90e2;
}

p {
	margin-bottom: 1rem;
	color: #333333;
}

a {
	color: #4a90e2;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #ff6f61;
}

/* Buttons */
.ll-btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	text-decoration: none;
	font-size: 1rem;
}

.ll-btn-primary {
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	color: white;
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.ll-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
	color: white;
}

.ll-btn-secondary {
	background: transparent;
	color: #4a90e2;
	border: 2px solid #4a90e2;
}

.ll-btn-secondary:hover {
	background: #4a90e2;
	color: white;
	transform: translateY(-2px);
}

/* Header Styles */
.ll-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1200px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 15px 30px;
	transition: all 0.3s ease;
}

.ll-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ll-logo {
	font-family: 'Roboto Slab', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #4a90e2;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ll-logo i {
	color: #ff6f61;
}

.ll-nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.ll-nav-menu a {
	font-weight: 500;
	color: #333333;
	transition: color 0.3s ease;
	position: relative;
}

.ll-nav-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: #ff6f61;
	transition: width 0.3s ease;
}

.ll-nav-menu a:hover::after,
.ll-nav-menu a.ll-active::after {
	width: 100%;
}

.ll-nav-menu a:hover,
.ll-nav-menu a.ll-active {
	color: #ff6f61;
}

.ll-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.ll-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #4a90e2;
	transition: all 0.3s ease;
}

.ll-mobile-menu {
	display: none;
	position: fixed;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 500px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 20px;
	z-index: 999;
}

.ll-mobile-menu a {
	display: block;
	padding: 15px 0;
	border-bottom: 1px solid #f5f7fa;
	font-weight: 500;
	color: #333333;
}

.ll-mobile-menu.ll-active {
	display: block;
}

/* Hero Section */
.ll-hero {
	background: linear-gradient(135deg, #4a90e2 0%, #ffffff 100%);
	padding: 150px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ll-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/ll-hero.webp') center/cover;
	opacity: 0.2;
}

.ll-hero-content {
	position: relative;
	z-index: 2;
}

.ll-hero h1 {
	font-size: 3.5rem;
	color: white;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.ll-hero p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.ll-hero-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

/* Sections */
.ll-section {
	padding: 80px 0;
	position: relative;
}

.ll-section-alt {
	background: #f5f7fa;
}

.ll-section-title {
	text-align: center;
	margin-bottom: 1rem;
	position: relative;
}

.ll-section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666666;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Grid Systems */
.ll-grid {
	display: grid;
	gap: 30px;
	margin-bottom: 3rem;
}

.ll-grid-1 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.ll-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ll-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ll-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.ll-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #f5f7fa;
}

.ll-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
}

.ll-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.ll-card-icon img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.ll-card-icon i {
	font-size: 1.5rem;
	color: white;
}

.ll-card h3 {
	margin-bottom: 1rem;
	color: #333333;
}

.ll-card p {
	color: #666666;
	line-height: 1.6;
}

/* Language Cards */
.ll-language-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
	border: 2px solid transparent;

	display: flex;
	flex-direction: column;
	height: 100%;
}

.ll-language-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ll-language-link a {
	margin-top: auto;
}

.ll-language-card:hover {
	transform: translateY(-5px);
	border-color: #4a90e2;
	box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
}

.ll-language-flag {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	color: white;
}

.ll-language-card h3 {
	margin-bottom: 0.5rem;
	color: #333333;
}

.ll-language-level {
	color: #7ed321;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Method Cards */
.ll-method-card {
	background: white;
	border-radius: 15px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ll-method-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4a90e2, #ff6f61, #7ed321);
}

.ll-method-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
}

.ll-method-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.ll-method-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	border-radius: 10px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	margin-right: 1rem;
}

.ll-method-icon i {
	color: white;
	font-size: 1.2rem;
}

.ll-method-card h3 {
	margin: 0;
	word-break: break-all;
	color: #333333;
}

.ll-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 1.5rem;
}

.ll-pros,
.ll-cons {
	padding: 1rem;
	border-radius: 10px;
}

.ll-pros {
	background: rgba(126, 211, 33, 0.1);
	border-left: 4px solid #7ed321;
}

.ll-cons {
	background: rgba(255, 111, 97, 0.1);
	border-left: 4px solid #ff6f61;
}

.ll-pros h4,
.ll-cons h4 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.ll-pros ul,
.ll-cons ul {
	list-style: none;
	padding: 0;
}

.ll-pros li,
.ll-cons li {
	padding: 0.25rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.ll-pros li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #7ed321;
	font-weight: bold;
}

.ll-cons li::before {
	content: '×';
	position: absolute;
	left: 0;
	color: #ff6f61;
	font-weight: bold;
}

/* Testimonials */
.ll-testimonials {
	padding: 60px 0;
	background: #f5f7fa;
}

.ll-testimonial-slider {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	padding: 20px 0;
	scroll-snap-type: x mandatory;
}

.ll-testimonial {
	min-width: 350px;
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	scroll-snap-align: start;
	position: relative;
	display: flex;
	flex-direction: column;
}

.ll-testimonial::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: #4a90e2;
	opacity: 0.3;
	font-family: serif;
}

.ll-testimonial-content {
	margin-bottom: 1.5rem;
	color: #666666;
	font-style: italic;
	line-height: 1.6;
}

.ll-testimonial-author {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-grow: 1;
	gap: 15px;
	text-align: center;
}

.ll-testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	margin-top: auto;
}

.ll-testimonial-info h4 {
	margin: 0;
	color: #333333;
	font-size: 1rem;
}

.ll-testimonial-info p {
	margin: 0;
	color: #7ed321;
	font-size: 0.9rem;
	font-weight: 600;
}

/* Forms */
.ll-form {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ll-form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.ll-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #333333;
	font-weight: 500;
}

.ll-form-group input,
.ll-form-group textarea,
.ll-form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #f5f7fa;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: white;
	color: #333333;
}

.ll-form-group input:focus,
.ll-form-group textarea:focus,
.ll-form-group select:focus {
	outline: none;
	border-color: #4a90e2;
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.ll-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.ll-form-error {
	color: #ff6f61;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ll-form-error.ll-show {
	display: block;
}

.ll-form-group.ll-error input,
.ll-form-group.ll-error textarea,
.ll-form-group.ll-error select {
	border-color: #ff6f61;
}

.ll-form-group.ll-success input,
.ll-form-group.ll-success textarea,
.ll-form-group.ll-success select {
	border-color: #7ed321;
}

.ll-form-success {
	background: rgba(126, 211, 33, 0.1);
	border: 1px solid #7ed321;
	border-radius: 8px;
	padding: 1rem;
	margin-top: 1rem;
	text-align: center;
}

.ll-form-success h3 {
	color: #7ed321;
	margin-bottom: 0.5rem;
}

.ll-form-success p {
	color: #333333;
	margin: 0;
}

/* Contact Section */
.ll-contact-section {
	padding: 80px 0;
	background: #f5f7fa;
}

.ll-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.ll-contact-info {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ll-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #f5f7fa;
	border-radius: 10px;
}

.ll-contact-item i {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-right: 1rem;
}

.ll-contact-item div h4 {
	margin: 0 0 0.25rem 0;
	color: #333333;
}

.ll-contact-item div p {
	margin: 0;
	color: #666666;
}

/* Map Section */
.ll-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ll-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ll-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ll-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;
}

/* Progress Bar */
.ll-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: rgba(74, 144, 226, 0.2);
	z-index: 9999;
}

.ll-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #4a90e2, #ff6f61);
	width: 0%;
	transition: width 0.1s ease;
}

/* Footer */
.ll-footer {
	background: #f5f7fa;
	padding: 60px 0 30px;
	border-top: 1px solid rgba(74, 144, 226, 0.1);
}

.ll-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.ll-footer-section h4 {
	color: #333333;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.ll-footer-logo {
	font-family: 'Roboto Slab', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #4a90e2;
	margin-bottom: 1rem;
}

.ll-footer-section p {
	color: #666666;
	line-height: 1.6;
}

.ll-footer-menu {
	list-style: none;
	padding-left: 0;
}

.ll-footer-menu li {
	margin-bottom: 0.5rem;
}

.ll-footer-menu a {
	color: #666666;
	transition: color 0.3s ease;
}

.ll-footer-menu a:hover {
	color: #4a90e2;
}

.ll-footer-contacts p {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	color: #666666;
}

.ll-footer-contacts i {
	width: 20px;
	margin-right: 10px;
	color: #4a90e2;
}

.ll-footer-bottom {
	border-top: 1px solid rgba(74, 144, 226, 0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.ll-copyright {
	color: #666666;
	margin: 0;
}

.ll-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.ll-footer-links a {
	color: #666666;
	font-size: 0.9rem;
}

.ll-footer-links a:hover {
	color: #4a90e2;
}

/* Cookie Popup */
.ll-cookie-popup {
	position: fixed;
	display: none;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 500px;
	margin: 0 auto;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.ll-cookie-popup.ll-show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.ll-cookie-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.ll-cookie-text {
	flex: 1;
	color: #666666;
	font-size: 0.9rem;
	line-height: 1.5;
}

.ll-cookie-text a {
	color: #4a90e2;
	text-decoration: underline;
}

.ll-cookie-btn {
	padding: 10px 20px;
	background: #4a90e2;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.3s ease;
}

.ll-cookie-btn:hover {
	background: #ff6f61;
}

/* Animations */
@keyframes ll-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.ll-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.ll-animate-on-scroll.ll-in-view {
	opacity: 1;
	transform: translateY(0);
}

.ll-fade-in {
	animation: ll-fadeIn 1s ease-out;
}

@keyframes ll-fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Loading States */
.ll-loading {
	position: relative;
	overflow: hidden;
}

.ll-loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(74, 144, 226, 0.1),
		transparent
	);
	animation: ll-loading 1.5s infinite;
}

@keyframes ll-loading {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.ll-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: ll-spin 1s ease-in-out infinite;
	margin-right: 10px;
}

@keyframes ll-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Utility Classes */
.ll-text-center {
	text-align: center;
}
.ll-text-left {
	text-align: left;
}
.ll-text-right {
	text-align: right;
}

.ll-mb-1 {
	margin-bottom: 1rem;
}
.ll-mb-2 {
	margin-bottom: 2rem;
}
.ll-mb-3 {
	margin-bottom: 3rem;
}

.ll-mt-1 {
	margin-top: 1rem;
}
.ll-mt-2 {
	margin-top: 2rem;
}
.ll-mt-3 {
	margin-top: 3rem;
}

.ll-hidden {
	display: none;
}
.ll-visible {
	display: block;
}

.ll-full-width {
	width: 100%;
}
.ll-max-width {
	max-width: 100%;
}

/* Hover Effects */
.ll-hover-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ll-hover-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
}

.ll-hover-scale {
	transition: transform 0.3s ease;
}

.ll-hover-scale:hover {
	transform: scale(1.05);
}

/* Special Effects */
.ll-gradient-text {
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ll-border-gradient {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
		linear-gradient(135deg, #4a90e2, #ff6f61) border-box;
}

/* Responsive Design */
@media (max-width: 768px) {
	.ll-container {
		padding: 0 15px;
	}

	.ll-header {
		width: calc(100% - 20px);
		top: 10px;
		padding: 12px 20px;
	}

	.ll-nav-menu {
		display: none;
	}

	.ll-mobile-toggle {
		display: flex;
	}

	.ll-hero {
		padding: 120px 0 80px;
	}

	.ll-hero h1 {
		font-size: 2.5rem;
	}

	.ll-hero p {
		font-size: 1.1rem;
	}

	.ll-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ll-section {
		padding: 60px 0;
	}
	.ll-grid-1,
	.ll-grid-2,
	.ll-grid-3,
	.ll-grid-4 {
		grid-template-columns: 1fr;
	}

	.ll-contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.ll-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.ll-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.ll-testimonial-slider {
		gap: 20px;
	}

	.ll-testimonial {
		min-width: 280px;
	}

	.ll-pros-cons {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.ll-cookie-popup {
		left: 10px;
		right: 10px;
	}

	.ll-cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ll-hero h1 {
		font-size: 2rem;
	}

	.ll-grid-1,
	.ll-grid-2,
	.ll-grid-3,
	.ll-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.ll-section-title {
		font-size: 2rem;
	}

	.ll-method-card .ll-grid-2 {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.ll-method-card {
		padding: 2rem;
	}

	.ll-method-card h3 {
		font-size: 1.3rem;
		word-wrap: break-word;
	}

	.ll-card,
	.ll-form,
	.ll-contact-info {
		padding: 1.5rem;
	}

	.ll-footer-links {
		flex-wrap: nowrap;
		flex-direction: column;
	}

	.ll-testimonial {
		min-width: 250px;
		padding: 1.5rem;
	}
}

.ll-contact-hero {
	background: linear-gradient(135deg, #4a90e2 0%, #ff6f61 50%, #7ed321 100%);
	position: relative;
}

.ll-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23FFFFFF" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>')
		repeat;
	animation: ll-float 15s ease-in-out infinite;
}

.ll-contact-info-section {
	padding: 80px 0;
	background: white;
}

.ll-contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.ll-contact-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.ll-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4a90e2, #ff6f61, #7ed321);
}

.ll-contact-card:hover {
	transform: translateY(-5px);
	border-color: #4a90e2;
	box-shadow: 0 10px 40px rgba(74, 144, 226, 0.15);
}

.ll-contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.ll-contact-icon i {
	font-size: 1.5rem;
	color: white;
}

.ll-contact-card h3 {
	margin-bottom: 1rem;
	color: #333333;
	font-size: 1.3rem;
}

.ll-contact-card p {
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

/* Contact Form and Map Section */
.ll-contact-section {
	padding: 80px 0;
	background: #f5f7fa;
}

.ll-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.ll-contact-form-wrapper {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: relative;
}

.ll-contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #4a90e2, #ff6f61, #7ed321);
	border-radius: 20px 20px 0 0;
}

.ll-contact-form-wrapper .ll-section-title {
	text-align: left;
	margin-bottom: 0.5rem;
	color: #333333;
}

.ll-contact-form-wrapper .ll-section-subtitle {
	text-align: left;
	margin-bottom: 2rem;
	max-width: none;
}

.ll-form-success {
	background: rgba(126, 211, 33, 0.1);
	border: 2px solid #7ed321;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	margin-top: 2rem;
}

.ll-form-success h3 {
	color: #7ed321;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.ll-form-success i {
	font-size: 1.2rem;
}

.ll-form-success p {
	color: #333333;
	margin: 0;
	font-size: 1.1rem;
}

/* FAQ Section */
.ll-contact-faq {
	padding: 80px 0;
	background: white;
}

.ll-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.ll-faq-item {
	background: #f5f7fa;
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.ll-faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
	border-left-color: #4a90e2;
}

.ll-faq-item h3 {
	color: #333333;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.2rem;
}

.ll-faq-item h3 i {
	color: #4a90e2;
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.ll-faq-item p {
	color: #666666;
	line-height: 1.7;
	margin: 0;
}

.ll-legal-hero {
	background: linear-gradient(135deg, #4a90e2 0%, #ff6f61 50%, #7ed321 100%);
	padding: 150px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ll-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23FFFFFF" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>')
		repeat;
	animation: ll-float 20s ease-in-out infinite;
}

.ll-legal-hero-content {
	position: relative;
	z-index: 2;
}

.ll-legal-title {
	font-size: 3.5rem;
	color: white;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.ll-legal-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.ll-legal-meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.ll-legal-meta span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ll-legal-meta i {
	font-size: 0.9rem;
}

.ll-legal-content {
	padding: 80px 0;
	background: white;
}

.ll-legal-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.ll-legal-intro {
	background: #f5f7fa;
	border-radius: 15px;
	padding: 2.5rem;
	margin-bottom: 3rem;
	border-left: 5px solid #4a90e2;
}

.ll-legal-intro p {
	color: #333333;
	line-height: 1.7;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.ll-legal-intro strong {
	color: #4a90e2;
	font-weight: 600;
}

.ll-legal-items {
	margin-bottom: 4rem;
}

.ll-legal-item {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid #f5f7fa;
	position: relative;
	overflow: hidden;
}

.ll-legal-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4a90e2, #ff6f61, #7ed321);
}

.ll-legal-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
}

.ll-legal-number {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4a90e2, #ff6f61);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.ll-legal-content-item {
	margin-left: 80px;
}

.ll-legal-content-item h3 {
	color: #333333;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.ll-legal-content-item p {
	color: #666666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.ll-legal-content-item ul {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
	margin-bottom: 1.5rem;
}

.ll-legal-content-item li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.8rem;
	color: #666666;
	line-height: 1.6;
}

.ll-legal-content-item li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	color: #4a90e2;
	font-weight: bold;
	font-size: 1.2rem;
}

.ll-legal-content-item strong {
	color: #4a90e2;
	font-weight: 600;
}

.ll-legal-contact {
	background: #f5f7fa;
	border-radius: 20px;
	padding: 3rem;
	border: 2px solid #4a90e2;
	position: relative;
	overflow: hidden;
}

.ll-legal-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #4a90e2, #ff6f61, #7ed321);
}

.ll-legal-contact h3 {
	color: #4a90e2;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	text-align: center;
}

.ll-legal-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.ll-legal-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.ll-legal-contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.ll-legal-contact-item i {
	font-size: 1.5rem;
	color: #4a90e2;
	margin-top: 0.25rem;
	min-width: 20px;
}

.ll-legal-contact-item h4 {
	color: #4a90e2;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.ll-legal-contact-item p {
	color: #666666;
	line-height: 1.5;
	margin: 0;
	font-size: 0.95rem;
}

.ll-legal-contact-note {
	text-align: center;
	color: #666666;
	font-style: italic;
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Contact Page Responsive Design */
@media (max-width: 968px) {
	.ll-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ll-contact-form-wrapper {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	.ll-contact-cards {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}

	.ll-contact-card {
		padding: 1.5rem;
	}

	.ll-contact-icon {
		width: 60px;
		height: 60px;
	}

	.ll-contact-icon i {
		font-size: 1.3rem;
	}

	.ll-faq-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.ll-faq-item {
		padding: 1.5rem;
	}

	.ll-faq-item h3 {
		font-size: 1.1rem;
	}

	.ll-legal-title {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.ll-contact-cards {
		grid-template-columns: 1fr;
	}

	.ll-contact-form-wrapper {
		padding: 1.5rem;
	}
	.ll-legal-number {
		display: none;
	}

	.ll-legal-contact-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.ll-legal-item,
	.ll-legal-contact {
		padding: 2rem;
	}

	.ll-legal-title {
		font-size: 1.5rem;
	}

	.ll-legal-content-item {
		margin-left: 0;
	}

	.ll-faq-item {
		padding: 1.25rem;
	}

	.ll-faq-item h3 {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}
