:root {
	--tm-primary-blue: #0078ff;
	--tm-primary-pink: #ff4081;
	--tm-accent-green: #00c853;
	--tm-text-dark: #212121;
	--tm-text-light: #616161;
	--tm-bg-main: #f9fafb;
	--tm-bg-white: #ffffff;
	--tm-bg-footer: #f1f3f4;
	--tm-border-light: #e0e0e0;
	--tm-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
	--tm-shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.12);
	--tm-shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.15);
	--tm-transition: all 0.3s ease;
	--tm-border-radius: 8px;
	--tm-glow-blue: 0 0 20px rgba(0, 120, 255, 0.3);
	--tm-glow-pink: 0 0 20px rgba(255, 64, 129, 0.3);
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: var(--tm-text-dark);
	background-color: var(--tm-bg-main);
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: var(--tm-text-dark);
}

h1 {
	font-size: 3rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: var(--tm-text-light);
}

a {
	color: var(--tm-primary-blue);
	text-decoration: none;
	transition: var(--tm-transition);
}

a:hover {
	color: var(--tm-primary-pink);
}

/* Container and Layout */
.tm-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tm-section {
	padding: 80px 0;
}

.tm-section-alt {
	padding: 80px 0;
	background-color: var(--tm-bg-white);
}

/* Grid System */
.tm-grid {
	display: grid;
	gap: 2rem;
}

.tm-grid-2 {
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.tm-grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.tm-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Header Styles */
.tm-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--tm-shadow-light);
	padding: 1rem 0;
	transition: var(--tm-transition);
}

.tm-header.tm-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--tm-shadow-medium);
}

.tm-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tm-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--tm-text-dark);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.tm-logo span {
	color: var(--tm-primary-blue);
}

.tm-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.tm-nav-link {
	font-weight: 500;
	color: var(--tm-text-dark);
	padding: 0.5rem 1rem;
	border-radius: var(--tm-border-radius);
	transition: var(--tm-transition);
	position: relative;
}

.tm-nav-link:hover,
.tm-nav-link.tm-active {
	background: var(--tm-primary-blue);
	color: white;
	box-shadow: var(--tm-glow-blue);
}

/* Mobile Menu */
.tm-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0.5rem;
	border-radius: var(--tm-border-radius);
}

.tm-mobile-toggle span {
	width: 25px;
	height: 3px;
	background-color: var(--tm-text-dark);
	margin: 3px 0;
	transition: var(--tm-transition);
}

.tm-mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: var(--tm-bg-white);
	z-index: 9999;
	transition: var(--tm-transition);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-mobile-nav.tm-active {
	right: 0;
}

.tm-mobile-nav-content {
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.tm-mobile-close {
	align-self: flex-end;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: var(--tm-text-dark);
	margin-bottom: 2rem;
	padding: 0.5rem;
}

.tm-mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tm-mobile-nav-link {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--tm-text-dark);
	padding: 1rem;
	border-radius: var(--tm-border-radius);
	transition: var(--tm-transition);
}

.tm-mobile-nav-link:hover,
.tm-mobile-nav-link.tm-active {
	background: var(--tm-primary-blue);
	color: white;
}

/* Hero Section */
.tm-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
		135deg,
		rgba(0, 120, 255, 0.1) 0%,
		rgba(255, 64, 129, 0.1) 100%
	);
	background-image: url('assets/tm-hero.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	margin-top: 70px;
}

.tm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 120, 255, 0.8) 0%,
		rgba(255, 64, 129, 0.7) 100%
	);
}

.tm-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 800px;
	margin: 0 auto;
}

.tm-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tm-hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.tm-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--tm-border-radius);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--tm-transition);
	text-decoration: none;
}

.tm-btn-primary {
	background: var(--tm-primary-blue);
	color: white;
	box-shadow: var(--tm-shadow-medium);
}

.tm-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--tm-glow-blue);
}

.tm-btn-secondary {
	background: var(--tm-primary-pink);
	color: white;
	box-shadow: var(--tm-shadow-medium);
}

.tm-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: var(--tm-glow-pink);
}

.tm-btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.tm-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
}

.tm-btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.1rem;
}

/* Section Titles */
.tm-section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--tm-text-dark);
	text-align: center;
}

.tm-section-title i {
	color: var(--tm-primary-blue);
	font-size: 2.25rem;
}

.tm-section-subtitle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: var(--tm-text-dark);
}

.tm-section-subtitle i {
	color: var(--tm-primary-blue);
}

/* Card Components */
.tm-card {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	padding: 2rem;
	box-shadow: var(--tm-shadow-light);
	transition: var(--tm-transition);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.tm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink),
		var(--tm-accent-green)
	);
}

.tm-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-card-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
	font-size: 1.75rem;
}

.tm-card h3 {
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.tm-card p {
	color: var(--tm-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.tm-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--tm-primary-blue);
	font-weight: 600;
	transition: var(--tm-transition);
}

.tm-card-link:hover {
	color: var(--tm-primary-pink);
	transform: translateX(5px);
}

/* News Cards */
.tm-news-card {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	overflow: hidden;
	box-shadow: var(--tm-shadow-light);
	transition: var(--tm-transition);
}

.tm-news-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-news-image {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.tm-news-content {
	padding: 1.5rem;
}

.tm-news-date {
	color: var(--tm-primary-blue);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.tm-news-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
}

.tm-news-excerpt {
	color: var(--tm-text-light);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.tm-news-link {
	color: var(--tm-primary-blue);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--tm-transition);
}

.tm-news-link:hover {
	color: var(--tm-primary-pink);
}

/* Gadget Cards */
.tm-gadget-card {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	overflow: hidden;
	box-shadow: var(--tm-shadow-light);
	transition: var(--tm-transition);
}

.tm-gadget-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-gadget-image {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.tm-gadget-rating {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
}

.tm-gadget-content {
	padding: 1.5rem;
}

.tm-gadget-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	margin-bottom: 0.5rem;
}

.tm-gadget-brand {
	color: var(--tm-primary-blue);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.tm-gadget-features {
	list-style: none;
	margin-bottom: 1rem;
}

.tm-gadget-features li {
	color: var(--tm-text-light);
	padding: 0.25rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tm-gadget-features i {
	color: var(--tm-accent-green);
	font-size: 0.8rem;
}

/* Two Column Layout */
.tm-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.tm-two-column-left {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
}

.tm-two-column-right {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
}

/* Tips List */
.tm-tips-list {
	list-style: none;
}

.tm-tips-list li {
	padding: 1rem;
	margin-bottom: 0.5rem;
	background: var(--tm-bg-main);
	border-radius: var(--tm-border-radius);
	border-left: 4px solid var(--tm-primary-blue);
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.tm-tips-list i {
	color: var(--tm-primary-blue);
	margin-top: 0.2rem;
}

/* Testimonials */
.tm-testimonial {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
	text-align: center;
	position: relative;
}

.tm-testimonial::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 4rem;
	color: var(--tm-primary-blue);
	opacity: 0.3;
}

.tm-testimonial-text {
	font-style: italic;
	color: var(--tm-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.tm-testimonial-author {
	font-weight: 600;
	color: var(--tm-text-dark);
	margin-bottom: 0.5rem;
}

.tm-testimonial-location {
	color: var(--tm-primary-blue);
	font-size: 0.9rem;
}

/* Contact Form */
.tm-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.tm-contact-form-section {
	background: var(--tm-bg-white);
	padding: 2.5rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
}

.tm-form {
	width: 100%;
}

.tm-form-group {
	margin-bottom: 1.5rem;
}

.tm-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	font-size: 1rem;
}

.tm-form-input,
.tm-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--tm-border-light);
	border-radius: var(--tm-border-radius);
	font-size: 1rem;
	transition: var(--tm-transition);
	background: var(--tm-bg-white);
	font-family: inherit;
}

.tm-form-input:focus,
.tm-form-textarea:focus {
	outline: none;
	border-color: var(--tm-primary-blue);
	box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.tm-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.tm-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.tm-form-group.error .tm-form-input,
.tm-form-group.error .tm-form-textarea {
	border-color: #ef4444;
}

.tm-form-group.error .tm-form-error {
	display: block;
}

/* Map Section */
.tm-contact-map-section {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 2rem;
}

/* Map Section */
.tm-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.tm-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tm-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.tm-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 Component */
.tm-tabs {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
	overflow: hidden;
}

.tm-tab-buttons {
	display: flex;
	flex-wrap: wrap;
	background: var(--tm-bg-main);
}

.tm-tab-button {
	flex: 1;
	padding: 1rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 500;
	color: var(--tm-text-light);
	transition: var(--tm-transition);
}

.tm-tab-button.active {
	background: var(--tm-bg-white);
	color: var(--tm-text-dark);
	box-shadow: var(--tm-shadow-light);
}

.tm-tab-content {
	padding: 2rem;
	display: none;
}

.tm-tab-content.active {
	display: block;
}

/* Comparison Table */
.tm-comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	overflow-x: auto;
	box-shadow: var(--tm-shadow-light);
	margin: 2rem 0;
}

.tm-comparison-table th,
.tm-comparison-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--tm-border-light);
}

.tm-comparison-table th {
	background: var(--tm-bg-main);
	font-weight: 600;
	color: var(--tm-text-dark);
}

.tm-comparison-table td {
	color: var(--tm-text-light);
}

.tm-comparison-table tr:hover {
	background: var(--tm-bg-main);
}

/* Chart Container */
.tm-chart-container {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
	margin: 2rem 0;
	height: 100%;
}

.tm-chart-container canvas {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	min-height: 500px !important;
}

.tm-chart-title {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--tm-text-dark);
	font-size: 1.5rem;
	font-weight: 600;
}

/* Team Member Cards */
.tm-team-member {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	padding: 2rem;
	box-shadow: var(--tm-shadow-light);
	text-align: center;
	transition: var(--tm-transition);
}

.tm-team-member:hover {
	transform: translateY(-5px);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background-size: cover;
	background-position: center;
	border: 4px solid var(--tm-primary-blue);
}

.tm-team-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	margin-bottom: 0.5rem;
}

.tm-team-role {
	color: var(--tm-primary-blue);
	font-weight: 500;
	margin-bottom: 1rem;
}

.tm-team-bio {
	color: var(--tm-text-light);
	line-height: 1.6;
}

/* Footer */
.tm-footer {
	background: var(--tm-bg-footer);
	padding: 3rem 0 1rem;
}

.tm-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 2rem;
}

.tm-footer-section h4 {
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.tm-footer-section p {
	color: var(--tm-text-light);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.tm-footer-nav {
	list-style: none;
}

.tm-footer-nav li {
	margin-bottom: 0.5rem;
}

.tm-footer-nav a {
	color: var(--tm-text-light);
	transition: var(--tm-transition);
}

.tm-footer-nav a:hover {
	color: var(--tm-primary-blue);
}

.tm-footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: var(--tm-text-light);
	font-size: 0.95rem;
}

.tm-footer-contact i {
	color: var(--tm-primary-blue);
	width: 18px;
	text-align: center;
}

.tm-footer-bottom {
	border-top: 1px solid var(--tm-border-light);
	padding-top: 1rem;
	text-align: center;
}

.tm-footer-bottom p {
	color: var(--tm-text-light);
	margin: 0;
	font-size: 0.9rem;
}

/* Cookie Popup */
.tm-cookie-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-heavy);
	padding: 1.5rem;
	max-width: 400px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: var(--tm-transition);
}

.tm-cookie-popup.tm-show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.tm-cookie-content p {
	margin-bottom: 1rem;
	color: var(--tm-text-light);
	font-size: 0.9rem;
}

.tm-cookie-accept {
	background: var(--tm-primary-blue);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: var(--tm-border-radius);
	cursor: pointer;
	font-weight: 600;
	transition: var(--tm-transition);
}

.tm-cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: var(--tm-glow-blue);
}

/* Legal Pages Styles */
.tm-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 140px 20px 80px;
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
	margin-top: 20px;
	margin-bottom: 40px;
}

.tm-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--tm-border-light);
}

.tm-legal-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
}

.tm-legal-title i {
	color: var(--tm-primary-blue);
	font-size: 2.25rem;
}

.tm-legal-date {
	color: var(--tm-text-light);
	font-size: 1rem;
	font-weight: 500;
}

.tm-legal-section {
	margin-bottom: 3rem;
	padding: 2rem;
	background: var(--tm-bg-main);
	border-radius: var(--tm-border-radius);
	border-left: 4px solid var(--tm-primary-blue);
}

.tm-legal-section-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	margin-bottom: 1.5rem;
}

.tm-legal-section-title i {
	color: var(--tm-primary-blue);
	font-size: 1.25rem;
}

.tm-legal-section-content {
	line-height: 1.8;
}

.tm-legal-section-content p {
	margin-bottom: 1.5rem;
	color: var(--tm-text-light);
	text-align: justify;
}

.tm-legal-section-content ul {
	margin: 1rem 0;
	padding-left: 2rem;
	color: var(--tm-text-light);
}

.tm-legal-section-content li {
	margin-bottom: 0.5rem;
	line-height: 1.7;
}

.tm-legal-contact {
	background: linear-gradient(
		135deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink)
	);
	color: white;
	padding: 2.5rem;
	border-radius: var(--tm-border-radius);
	text-align: center;
	margin-top: 3rem;
}

.tm-legal-contact-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: white;
}

.tm-legal-contact-info p {
	margin-bottom: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.tm-legal-contact-info strong {
	color: white;
	font-weight: 700;
}

.tm-legal-contact-info a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
	transition: var(--tm-transition);
}

.tm-legal-contact-info a:hover {
	color: white;
}

/* Animations */
@keyframes tm-fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tm-slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tm-animate-fadeIn {
	animation: tm-fadeIn 0.8s ease-out;
}

.tm-animate-slideUp {
	animation: tm-slideUp 0.8s ease-out;
}

.tm-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.tm-contact-form-section {
	background: var(--tm-bg-white);
	padding: 2.5rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
}

.tm-contact-form-description {
	color: var(--tm-text-light);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.tm-form {
	width: 100%;
}

.tm-form-group {
	margin-bottom: 1.5rem;
}

.tm-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	font-size: 1rem;
}

.tm-form-input,
.tm-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--tm-border-light);
	border-radius: var(--tm-border-radius);
	font-size: 1rem;
	transition: var(--tm-transition);
	background: var(--tm-bg-white);
	font-family: inherit;
}

.tm-form-input:focus,
.tm-form-textarea:focus {
	outline: none;
	border-color: var(--tm-primary-blue);
	box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.tm-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.tm-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.tm-form-group.error .tm-form-input,
.tm-form-group.error .tm-form-textarea {
	border-color: #ef4444;
}

.tm-form-group.error .tm-form-error {
	display: block;
}

/* Contact Info Grid */
.tm-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

.tm-contact-info-card {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
	text-align: center;
	transition: var(--tm-transition);
	position: relative;
	overflow: hidden;
}

.tm-contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink),
		var(--tm-accent-green)
	);
}

.tm-contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 1.75rem;
}

.tm-contact-info-card h3 {
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.tm-contact-info-card p {
	color: var(--tm-text-light);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.tm-contact-hours {
	color: var(--tm-primary-blue);
	font-size: 0.9rem;
	font-weight: 500;
}

/* Map Section */
.tm-contact-map-section {
	background: var(--tm-bg-white);
	padding: 2rem;
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
}

.tm-map-info h4 {
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.tm-map-info p {
	color: var(--tm-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.tm-map-details p {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--tm-text-light);
	font-size: 0.95rem;
}

.tm-map-details i {
	color: var(--tm-primary-blue);
	width: 18px;
	text-align: center;
}

/* Technology Areas Grid */
.tm-technology-areas-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.tm-technology-area-card {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	padding: 2rem;
	box-shadow: var(--tm-shadow-light);
	transition: var(--tm-transition);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.tm-technology-area-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink),
		var(--tm-accent-green)
	);
}

.tm-technology-area-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tm-shadow-heavy);
}

.tm-technology-area-card h3 {
	font-size: 1.5rem;
	word-wrap: break-word;
}

/* FAQ Section */
.tm-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.tm-faq-item {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	margin-bottom: 1rem;
	box-shadow: var(--tm-shadow-light);
	overflow: hidden;
	transition: var(--tm-transition);
}

.tm-faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--tm-transition);
}

.tm-faq-question:hover {
	background: var(--tm-bg-main);
}

.tm-faq-question i {
	color: var(--tm-primary-blue);
	transition: var(--tm-transition);
}

.tm-faq-question.active i {
	transform: rotate(180deg);
}

.tm-faq-answer {
	padding: 0 2rem 1.5rem;
	color: var(--tm-text-light);
	line-height: 1.7;
	display: none;
}

.tm-faq-answer.active {
	display: block;
}

.tm-faq-answer p {
	margin: 0;
}

/* Responsive Design */

@media (max-width: 840px) {
	.tm-nav {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.tm-nav {
		display: none;
	}

	.tm-mobile-toggle {
		display: flex;
	}

	.tm-hero h1 {
		font-size: 2.5rem;
	}

	.tm-hero p {
		font-size: 1.1rem;
	}

	.tm-section-title {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.tm-grid-2,
	.tm-grid-3,
	.tm-grid-4 {
		grid-template-columns: 1fr;
	}

	.tm-two-column {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tm-contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tm-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tm-contact-info-grid,
	.tm-technology-areas-grid {
		grid-template-columns: 1fr;
	}

	.tm-legal-container {
		padding: 120px 15px 60px;
		margin-top: 10px;
	}

	.tm-legal-title {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.tm-legal-section {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.tm-legal-section-title {
		font-size: 1.25rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.tm-legal-contact {
		padding: 2rem 1.5rem;
	}

	.tm-cookie-popup {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}
}

@media (max-width: 480px) {
	.tm-hero h1 {
		font-size: 2rem;
	}

	.tm-grid-2,
	.tm-grid-3,
	.tm-grid-4,
	.tm-two-column,
	.tm-contact-wrapper {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.tm-section-subtitle {
		font-size: 1.2rem;
	}

	.tm-hero p {
		font-size: 1rem;
	}

	.tm-btn {
		padding: 0.875rem 1.75rem;
		font-size: 0.9rem;
	}

	.tm-legal-container {
		padding: 100px 10px 40px;
	}

	.tm-legal-title {
		font-size: 1.75rem;
	}

	.tm-legal-section {
		padding: 1rem;
	}

	.tm-legal-contact {
		padding: 1.5rem 1rem;
	}

	.tm-tab-content h3 {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.tm-tab-content {
		padding: 1rem;
	}
	.tm-section-title {
		font-size: 1.5rem;
	}

	.tm-revealed h2 {
		font-size: 1.5rem !important;
	}

	h4 {
		font-size: 1.1rem;
		word-wrap: break-word;
	}
}

.tm-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 100px 20px 60px;
	background: var(--tm-bg-main);
	min-height: 100vh;
}

.tm-legal-header {
	text-align: center;
	margin-bottom: 4rem;
	padding: 2rem;
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	box-shadow: var(--tm-shadow-light);
}

.tm-legal-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--tm-text-dark);
	margin-bottom: 1rem;
	font-family: 'Montserrat', sans-serif;
}

.tm-legal-title i {
	color: var(--tm-primary-blue);
	font-size: 2.25rem;
}

.tm-legal-date {
	color: var(--tm-text-light);
	font-size: 1rem;
	font-style: italic;
	margin: 0;
}

.tm-legal-section {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	margin-bottom: 2rem;
	overflow: hidden;
	box-shadow: var(--tm-shadow-light);
	transition: var(--tm-transition);
	position: relative;
}

.tm-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink),
		var(--tm-accent-green)
	);
}

.tm-legal-section:hover {
	box-shadow: var(--tm-shadow-medium);
}

.tm-legal-section-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	margin: 0;
	padding: 1.5rem 2rem;
	background: linear-gradient(
		135deg,
		rgba(0, 120, 255, 0.05),
		rgba(255, 64, 129, 0.05)
	);
	border-bottom: 1px solid var(--tm-border-light);
	font-family: 'Montserrat', sans-serif;
}

.tm-legal-section-title i {
	color: var(--tm-primary-blue);
	font-size: 1.25rem;
	min-width: 20px;
}

.tm-legal-section-content {
	padding: 2rem;
}

.tm-legal-section-content p {
	color: var(--tm-text-light);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: justify;
	font-size: 1rem;
}

.tm-legal-section-content p:last-child {
	margin-bottom: 0;
}

.tm-legal-section-content a {
	color: var(--tm-primary-blue);
	text-decoration: underline;
	transition: var(--tm-transition);
}

.tm-legal-section-content a:hover {
	color: var(--tm-primary-pink);
}

.tm-legal-contact {
	background: var(--tm-bg-white);
	border-radius: var(--tm-border-radius);
	padding: 2rem;
	box-shadow: var(--tm-shadow-light);
	position: relative;
	overflow: hidden;
	margin-top: 3rem;
}

.tm-legal-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tm-primary-blue),
		var(--tm-primary-pink),
		var(--tm-accent-green)
	);
}

.tm-legal-contact-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tm-text-dark);
	margin-bottom: 1.5rem;
	font-family: 'Montserrat', sans-serif;
}

.tm-legal-contact-title i {
	color: var(--tm-primary-blue);
	font-size: 1.25rem;
}

.tm-legal-contact-info p {
	color: var(--tm-text-light);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.tm-legal-contact-info p:first-child {
	margin-bottom: 1.5rem;
}

.tm-legal-contact-info strong {
	color: var(--tm-text-dark);
	font-weight: 600;
}

.tm-legal-contact-info a {
	color: var(--tm-primary-blue);
	text-decoration: none;
	transition: var(--tm-transition);
}

.tm-legal-contact-info a:hover {
	color: var(--tm-primary-pink);
	text-decoration: underline;
}

/* Legal Pages Responsive Design */
@media (max-width: 768px) {
	.tm-legal-header {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.tm-legal-title {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.tm-legal-title i {
		font-size: 2rem;
	}

	.tm-legal-section-title {
		font-size: 1.25rem;
		padding: 1.25rem 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.tm-legal-section-content {
		padding: 1.5rem;
	}

	.tm-legal-section-content p {
		text-align: left;
		font-size: 0.95rem;
	}

	.tm-legal-contact {
		padding: 1.5rem;
		margin-top: 2rem;
	}

	.tm-legal-contact-title {
		font-size: 1.25rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}

@media (max-width: 480px) {
	.tm-legal-title {
		font-size: 1.3rem;
	}

	.tm-legal-section-title {
		font-size: 1.1rem;
		padding: 1rem;
	}

	.tm-legal-section-content {
		padding: 1rem;
	}

	.tm-legal-contact {
		padding: 1rem;
	}

	.tm-legal-contact-title {
		font-size: 1.1rem;
	}
}
