@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
	--ts-bg-main: #f9fafb;
	--ts-bg-white: #ffffff;
	--ts-accent-blue: #1976d2;
	--ts-accent-green: #43a047;
	--ts-accent-orange: #ff7043;
	--ts-text-dark: #212121;
	--ts-text-gray: #666666;
	--ts-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
	--ts-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
	--ts-border-light: #e0e0e0;
	--ts-footer-bg: #f1f3f4;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--ts-bg-main);
	color: var(--ts-text-dark);
	line-height: 1.6;
	font-size: 16px;
}

.ts-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ts-section {
	padding: 60px 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

.ts-heading-xl {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.ts-heading-lg {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.3;
}

.ts-heading-md {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
}

.ts-heading-sm {
	font-size: 1.5rem;
	font-weight: 600;
}

.ts-text-lg {
	font-size: 1.2rem;
	line-height: 1.7;
}

.ts-text-muted {
	color: var(--ts-text-gray);
}

/* Header Styles */
.ts-header {
	background: var(--ts-bg-white);
	box-shadow: var(--ts-shadow-light);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.ts-header.scrolled {
	box-shadow: var(--ts-shadow-medium);
}

.ts-nav {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 15px 0;
	gap: 2rem;
}

.ts-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--ts-accent-blue);
	text-decoration: none;
	transition: color 0.3s ease;
}

.ts-logo:hover {
	color: var(--ts-accent-green);
}

.ts-nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	justify-content: center;
}

.ts-nav-link {
	color: var(--ts-text-dark);
	text-decoration: none;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.ts-nav-link:hover,
.ts-nav-link.active {
	color: var(--ts-accent-blue);
	background: rgba(25, 118, 210, 0.1);
}

.ts-social-links {
	display: flex;
	gap: 1rem;
}

.ts-social-link {
	color: var(--ts-text-gray);
	font-size: 1.2rem;
	transition: all 0.3s ease;
	padding: 8px;
	border-radius: 50%;
}

.ts-social-link:hover {
	color: var(--ts-accent-blue);
	background: rgba(25, 118, 210, 0.1);
	transform: translateY(-2px);
}

/* Mobile Menu */
.ts-burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.ts-burger-line {
	width: 25px;
	height: 3px;
	background: var(--ts-text-dark);
	transition: all 0.3s ease;
}

.ts-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--ts-bg-white);
	box-shadow: var(--ts-shadow-medium);
	padding: 20px;
}

.ts-mobile-menu.active {
	display: block;
	animation: ts-slideDown 0.3s ease;
}

.ts-mobile-menu ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
	list-style: none;
	align-items: center;
}

/* Hero Section */
.ts-hero {
	padding: 120px 0 80px;
	background: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.8) 0%,
			rgba(255, 255, 255, 0.8) 100%
		),
		url('assets/ts-hero.webp') center/cover;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
}

.ts-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	min-height: 500px;
}

.ts-hero-content {
	animation: ts-fadeInLeft 1s ease;
}

.ts-hero-title {
	font-size: 3.2rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--ts-accent-blue) 0%,
		var(--ts-accent-green) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ts-hero-subtitle {
	font-size: 1.3rem;
	color: var(--ts-text-gray);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.ts-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.ts-hero-image {
	height: 100%;
	text-align: center;
	animation: ts-fadeInRight 1s ease;
}

.ts-hero-image img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: var(--ts-shadow-medium);
}

/* Buttons */
.ts-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	gap: 8px;
}

.ts-btn-primary {
	background: var(--ts-accent-blue);
	color: var(--ts-bg-white);
}

.ts-btn-primary:hover {
	background: var(--ts-accent-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(67, 160, 71, 0.3);
}

.ts-btn-outline {
	background: transparent;
	color: var(--ts-accent-blue);
	border: 2px solid var(--ts-accent-blue);
}

.ts-btn-outline:hover {
	background: var(--ts-accent-blue);
	color: var(--ts-bg-white);
	transform: translateY(-2px);
}

/* Cards */
.ts-card {
	background: var(--ts-bg-white);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--ts-shadow-light);
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.ts-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ts-shadow-medium);
}

.ts-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.ts-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--ts-accent-blue),
		var(--ts-accent-green)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
	font-size: 1.5rem;
}

.ts-card-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--ts-text-dark);
}

.ts-card-text {
	color: var(--ts-text-gray);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.ts-card-link {
	color: var(--ts-accent-blue);
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.ts-card-link:hover {
	color: var(--ts-accent-green);
}

/* Reviews Grid */
.ts-reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.ts-review-card {
	background: var(--ts-bg-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--ts-shadow-light);
	transition: all 0.3s ease;
}

.ts-review-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ts-shadow-medium);
}

.ts-review-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ts-text-gray);
	font-size: 3rem;
}

.ts-review-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.ts-review-content {
	padding: 1.5rem;
}

.ts-review-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--ts-text-dark);
}

.ts-review-meta {
	color: var(--ts-text-gray);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.ts-review-excerpt {
	color: var(--ts-text-gray);
	line-height: 1.6;
}

/* News Section */
.ts-news-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.ts-news-main {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ts-news-item {
	background: var(--ts-bg-white);
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: var(--ts-shadow-light);
	border-left: 4px solid var(--ts-accent-blue);
	transition: all 0.3s ease;
}

.ts-news-item:hover {
	transform: translateX(4px);
	box-shadow: var(--ts-shadow-medium);
}

.ts-news-date {
	color: var(--ts-accent-blue);
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.ts-news-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.ts-news-sidebar {
	background: var(--ts-bg-white);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--ts-shadow-light);
	height: fit-content;
	position: sticky;
	top: 120px;
}

.ts-trending-list {
	list-style: none;
}

.ts-trending-item {
	padding: 1rem 0;
	border-bottom: 1px solid var(--ts-border-light);
}

.ts-trending-item:last-child {
	border-bottom: none;
}

.ts-trending-link {
	color: var(--ts-text-dark);
	text-decoration: none;
	font-weight: 500;
	display: block;
	transition: color 0.3s ease;
}

.ts-trending-link:hover {
	color: var(--ts-accent-blue);
}

/* Testimonials */
.ts-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.ts-testimonial-card {
	background: var(--ts-bg-white);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--ts-shadow-light);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: all 0.3s ease;
}

.ts-testimonial-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ts-shadow-medium);
}

.ts-testimonial-quote {
	font-size: 3rem;
	color: var(--ts-accent-blue);
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	opacity: 0.3;
}

.ts-testimonial-text {
	font-style: italic;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.ts-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.ts-testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--ts-accent-blue),
		var(--ts-accent-green)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.ts-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.ts-testimonial-info h4 {
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.ts-testimonial-info p {
	color: var(--ts-text-gray);
	font-size: 0.9rem;
}

/* Forms */
.ts-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.ts-form-container {
	background: var(--ts-bg-white);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--ts-shadow-light);
}

.ts-form-group {
	margin-bottom: 1.5rem;
}

.ts-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--ts-text-dark);
}

.ts-form-input,
.ts-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--ts-border-light);
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.ts-form-input:focus,
.ts-form-textarea:focus {
	outline: none;
	border-color: var(--ts-accent-blue);
	box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.ts-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.ts-form-error {
	color: #f44336;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ts-form-error.show {
	display: block;
}

.ts-map-container {
	background: #f0f0f0;
	border-radius: 12px;
	height: 100%;

	color: var(--ts-text-gray);
	font-size: 1.1rem;
}

.ts-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ts-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ts-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ts-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Footer */
.ts-footer {
	background: var(--ts-footer-bg);
	padding: 3rem 0 2rem;
}

.ts-footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.ts-footer-section h4 {
	margin-bottom: 1rem;
	color: var(--ts-text-dark);
	font-size: 1.1rem;
}

.ts-footer-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ts-accent-blue);
	margin-bottom: 0.5rem;
}

.ts-footer-tagline {
	color: var(--ts-text-gray);
	font-size: 0.9rem;
	line-height: 1.6;
}

.ts-footer-menu {
	list-style: none;
}

.ts-footer-menu li {
	margin-bottom: 0.5rem;
}

.ts-footer-menu a {
	color: var(--ts-text-gray);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.ts-footer-menu a:hover {
	color: var(--ts-accent-blue);
}

.ts-contact-info {
	color: var(--ts-text-gray);
	font-size: 0.9rem;
	line-height: 1.6;
}

.ts-contact-info strong {
	color: var(--ts-text-dark);
}

.ts-footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.ts-footer-social a {
	color: var(--ts-text-gray);
	font-size: 1.3rem;
	transition: all 0.3s ease;
	padding: 8px;
	border-radius: 50%;
}

.ts-footer-social a:hover {
	color: var(--ts-accent-blue);
	background: rgba(25, 118, 210, 0.1);
}

.ts-footer-bottom {
	border-top: 1px solid var(--ts-border-light);
	padding-top: 2rem;
	text-align: center;
	color: var(--ts-text-gray);
	font-size: 0.9rem;
}

/* Cookie Banner */
.ts-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--ts-bg-white);
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.ts-cookie-banner.show {
	transform: translateY(0);
}

.ts-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.ts-cookie-text {
	color: var(--ts-text-gray);
	font-size: 0.9rem;
}

.ts-cookie-text a {
	color: var(--ts-accent-blue);
	text-decoration: none;
}

.ts-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.ts-btn-cookie {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.ts-btn-cookie.accept {
	background: var(--ts-accent-blue);
	color: white;
}

.ts-btn-cookie.accept:hover {
	background: var(--ts-accent-green);
}

/* Animations */
@keyframes ts-fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ts-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ts-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ts-slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ts-fade-in {
	animation: ts-fadeIn 0.6s ease forwards;
}

.ts-fade-in-left {
	animation: ts-fadeInLeft 0.6s ease forwards;
}

.ts-fade-in-right {
	animation: ts-fadeInRight 0.6s ease forwards;
}

/* Utility Classes */
.ts-hidden {
	opacity: 0;
	transform: translateY(30px);
}

.ts-text-center {
	text-align: center;
}

.ts-mb-2 {
	margin-bottom: 2rem;
}

.ts-mt-2 {
	margin-top: 2rem;
}

.ts-accent-color {
	color: var(--ts-accent-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.ts-hero-grid,
	.ts-form-grid,
	.ts-news-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ts-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.ts-nav {
		gap: 0;
	}
}

@media (max-width: 820px) {
	.ts-nav-menu {
		display: none;
	}

	.ts-burger {
		display: flex;
	}
	.ts-nav .ts-social-links {
		display: none;
	}

	.ts-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.ts-hero-title {
		font-size: 2.5rem;
	}

	.ts-hero-content {
		text-align: center;
	}

	.ts-hero-subtitle {
		font-size: 1.1rem;
	}

	.ts-section {
		padding: 40px 0;
	}

	.ts-hero {
		padding: 100px 0 60px;
	}

	.ts-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ts-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ts-hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.ts-container {
		padding: 0 15px;
	}

	.ts-heading-xl {
		font-size: 2rem;
	}

	.ts-hero-title {
		font-size: 1.5rem;
	}

	.ts-heading-lg {
		font-size: 1.5rem;
	}

	.ts-card-grid,
	.ts-reviews-grid,
	.ts-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.ts-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

.ts-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 20px;
	background-color: #ffffff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	margin-top: 40px;
	margin-bottom: 40px;
}

/* Typography */
.ts-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1976d2;
	margin-bottom: 1rem;
	text-align: center;
	position: relative;
}

.ts-legal-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #1976d2, #43a047);
	margin: 20px auto;
	border-radius: 2px;
}

.ts-legal-subtitle {
	font-size: 1.2rem;
	color: #666;
	text-align: center;
	margin-bottom: 2rem;
	font-weight: 400;
}

.ts-legal-company-info {
	background: linear-gradient(135deg, #f5f7fa, #e3f2fd);
	padding: 24px;
	border-radius: 10px;
	margin-bottom: 2.5rem;
	border-left: 4px solid #1976d2;
}

.ts-legal-company-name {
	font-size: 1.4rem;
	font-weight: 600;
	color: #1976d2;
	margin-bottom: 0.5rem;
}

.ts-legal-company-details {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.8;
}

.ts-legal-company-details strong {
	color: #333;
	font-weight: 600;
}

.ts-legal-last-updated {
	text-align: center;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 2rem;
	padding: 12px;
	background-color: #f5f7fa;
	border-radius: 6px;
	border: 1px solid #e0e5e9;
}

/* Section Styles */
.ts-legal-section {
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #e0e5e9;
}

.ts-legal-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ts-legal-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
	padding-left: 20px;
	position: relative;
}

.ts-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 24px;
	background: linear-gradient(180deg, #1976d2, #43a047);
	border-radius: 2px;
}

.ts-legal-section-content {
	margin-left: 20px;
	color: #444;
	line-height: 1.7;
}

.ts-legal-section-content p {
	margin-bottom: 1rem;
}

.ts-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* Lists */
.ts-legal-list {
	list-style: none;
	margin: 1rem 0;
	padding-left: 0;
}

.ts-legal-list li {
	position: relative;
	padding: 8px 0 8px 30px;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.ts-legal-list li::before {
	content: '•';
	color: #ff7043;
	font-weight: bold;
	font-size: 1.2rem;
	position: absolute;
	left: 12px;
	top: 8px;
}

.ts-legal-sublist {
	margin-top: 0.5rem;
	margin-left: 20px;
}

.ts-legal-sublist li::before {
	content: '◦';
	color: #43a047;
	font-size: 1rem;
	left: 0;
}

/* Links */
.ts-legal-link {
	color: #1976d2;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease, border-bottom 0.3s ease;
	border-bottom: 1px solid transparent;
}

.ts-legal-link:hover {
	color: #43a047;
	border-bottom: 1px solid #43a047;
}

/* Highlight Boxes */
.ts-legal-highlight {
	background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
	border: 1px solid #43a047;
	border-radius: 8px;
	padding: 20px;
	margin: 1.5rem 0;
	position: relative;
}

.ts-legal-highlight::before {
	content: '!';
	position: absolute;
	top: -12px;
	left: 20px;
	background: #43a047;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
}

.ts-legal-warning {
	background: linear-gradient(135deg, #fff3e0, #fff8e1);
	border: 1px solid #ff7043;
	border-radius: 8px;
	padding: 20px;
	margin: 1.5rem 0;
	position: relative;
}

.ts-legal-warning::before {
	content: '⚠';
	position: absolute;
	top: -12px;
	left: 20px;
	background: #ff7043;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 12px;
}

/* Contact Section */
.ts-legal-contact {
	background: linear-gradient(135deg, #e3f2fd, #f0f4ff);
	border-radius: 10px;
	padding: 24px;
	margin-top: 2rem;
	border: 1px solid #1976d2;
}

.ts-legal-contact-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #1976d2;
	margin-bottom: 1rem;
	text-align: center;
}

.ts-legal-contact-info {
	text-align: center;
	color: #444;
	line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
	.ts-legal-title {
		font-size: 2rem;
	}

	.ts-legal-section-title {
		font-size: 1.3rem;
		padding-left: 15px;
	}

	.ts-legal-section-content {
		margin-left: 15px;
	}

	.ts-legal-list li {
		padding-left: 25px;
	}

	.ts-legal-list li::before {
		left: 8px;
	}
}

@media (max-width: 480px) {
	.ts-legal-title {
		font-size: 1.3rem;
	}

	.ts-legal-subtitle {
		font-size: 1rem;
	}

	.ts-legal-company-info {
		padding: 16px;
	}
}
