* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	color: #111827;
	background-color: #f9fafb;
	scroll-behavior: smooth;
}

.tv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
	font-weight: 600;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.7;
}

a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #ef4444;
}

/* Header Styles */
.tv-header {
	background: #f9fafb;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
}

.tv-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tv-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #3b82f6;
	text-decoration: none;
}

.tv-nav {
	display: flex;
	gap: 2rem;
}

.tv-nav a {
	font-weight: 500;
	color: #111827;
	transition: color 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.tv-nav a:hover {
	color: #3b82f6;
	background-color: rgba(59, 130, 246, 0.1);
}

.tv-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0.5rem;
}

.tv-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #111827;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.tv-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #f9fafb;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	padding: 1rem;
}

.tv-mobile-menu a {
	display: block;
	padding: 1rem;
	color: #111827;
	font-weight: 500;
	border-bottom: 1px solid #e5e7eb;
}

.tv-mobile-menu a:last-child {
	border-bottom: none;
}

/* Hero Section */
.tv-hero {
	background: linear-gradient(
			135deg,
			rgba(59, 130, 246, 0.9),
			rgba(16, 185, 129, 0.8)
		),
		url('assets/tv-hero.webp') center/cover;
	color: white;
	padding: 8rem 0 4rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.tv-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tv-hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.tv-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

/* Buttons */
.tv-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.tv-btn-primary {
	background: #3b82f6;
	color: white;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tv-btn-primary:hover {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.tv-btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.tv-btn-secondary:hover {
	background: white;
	color: #3b82f6;
	transform: translateY(-2px);
}

.tv-btn-outline {
	background: transparent;
	color: #3b82f6;
	border: 2px solid #3b82f6;
}

.tv-btn-outline:hover {
	background: #3b82f6;
	color: white;
}

/* Section Styles */
.tv-section {
	padding: 4rem 0;
}

.tv-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.tv-section-title h2 {
	color: #111827;
	margin-bottom: 1rem;
}

.tv-section-title p {
	color: #6b7280;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Grid Layouts */
.tv-grid {
	display: grid;
	gap: 2rem;
}

.tv-grid-1 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.tv-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tv-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.tv-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Card Styles */
.tv-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid #e5e7eb;
}

.tv-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tv-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.tv-card-content {
	padding: 1.5rem;
}

.tv-card h3 {
	color: #111827;
	margin-bottom: 0.5rem;
}

.tv-card p {
	color: #6b7280;
	margin-bottom: 1rem;
}

.tv-card-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: rgba(59, 130, 246, 0.1);
	color: #3b82f6;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

/* News Cards */
.tv-news-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.tv-news-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tv-news-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tv-news-content {
	padding: 1rem;
	flex: 1;
}

.tv-news-content h4 {
	margin-bottom: 0.5rem;
	color: #111827;
}

.tv-news-content p {
	color: #6b7280;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.tv-news-date {
	color: #9ca3af;
	font-size: 0.8rem;
}

/* Gadget Review Cards */
.tv-gadget-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
	text-align: center;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tv-gadget-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tv-gadget-link a {
	margin-top: auto;
}

.tv-gadget-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tv-gadget-icon {
	font-size: 3rem;
	color: #3b82f6;
	margin-bottom: 1rem;
}

.tv-gadget-card h4 {
	margin-bottom: 1rem;
	color: #111827;
}

.tv-gadget-card p {
	color: #6b7280;
	margin-bottom: 1.5rem;
}

/* Trend Cards */
.tv-trend-card {
	background: linear-gradient(135deg, #3b82f6, #10b981);
	color: white;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.tv-trend-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.tv-trend-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.tv-trend-card h4 {
	margin-bottom: 1rem;
}

.tv-trend-card p {
	opacity: 0.9;
}

/* Tips Cards */
.tv-tips-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.tv-tips-card:nth-child(1) {
	border-left-color: #3b82f6;
}

.tv-tips-card:nth-child(2) {
	border-left-color: #ef4444;
}

.tv-tips-card:nth-child(3) {
	border-left-color: #10b981;
}

.tv-tips-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tv-tips-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.tv-tips-card:nth-child(1) .tv-tips-icon {
	color: #3b82f6;
}

.tv-tips-card:nth-child(2) .tv-tips-icon {
	color: #ef4444;
}

.tv-tips-card:nth-child(3) .tv-tips-icon {
	color: #10b981;
}

/* Contact Form */
.tv-contact-section {
	background: white;
	padding: 4rem 0;
}

.tv-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.tv-form {
	background: #f9fafb;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.tv-form-group {
	margin-bottom: 1.5rem;
}

.tv-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #111827;
}

.tv-form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: white;
}

.tv-form-control:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tv-form-control.error {
	border-color: #ef4444;
}

.tv-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.tv-form-submit {
	background: #3b82f6;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tv-form-submit:hover {
	background: #2563eb;
	transform: translateY(-2px);
}

/* Map Section */
.tv-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.tv-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tv-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.tv-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 */
.tv-footer {
	background: #111827;
	color: white;
	padding: 3rem 0 1rem;
}

.tv-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.tv-footer-section h4 {
	color: #3b82f6;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.tv-footer-section p {
	color: #d1d5db;
	line-height: 1.6;
}

.tv-footer-section ul {
	list-style: none;
}

.tv-footer-section ul li {
	margin-bottom: 0.5rem;
}

.tv-footer-section ul li a {
	color: #d1d5db;
	transition: color 0.3s ease;
}

.tv-footer-section ul li a:hover {
	color: #3b82f6;
}

.tv-footer-contact {
	color: #d1d5db;
}

.tv-footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.tv-footer-contact i {
	color: #3b82f6;
	width: 20px;
}

.tv-footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 1rem;
	text-align: center;
	color: #9ca3af;
}

/* Cookie Popup */
.tv-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(17, 24, 39, 0.95);
	color: white;
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.tv-cookie-popup.show {
	transform: translateY(0);
}

.tv-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.tv-cookie-text {
	flex: 1;
}

.tv-cookie-text h4 {
	margin-bottom: 0.5rem;
	color: #3b82f6;
}

.tv-cookie-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-shrink: 0;
}

.tv-cookie-accept {
	background: #10b981;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.3s ease;
}

.tv-cookie-accept:hover {
	background: #059669;
}

.tv-cookie-learn {
	color: #d1d5db;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.tv-cookie-learn:hover {
	color: white;
}

/* Animations */
.tv-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.tv-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.tv-slide-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s ease;
}

.tv-slide-in-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.tv-slide-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s ease;
}

.tv-slide-in-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* Comparison Table */
.tv-comparison-table {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow-x: auto;
	margin: 2rem 0;
}

.tv-comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.tv-comparison-table th,
.tv-comparison-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}

.tv-comparison-table th {
	background: #f9fafb;
	font-weight: 600;
	color: #111827;
}

.tv-comparison-table td {
	color: #6b7280;
}

.tv-comparison-table tbody tr:hover {
	background: #f9fafb;
}

/* Specification Lists */
.tv-spec-list {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tv-spec-list h4 {
	color: #111827;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #3b82f6;
}

.tv-spec-list ul {
	list-style: none;
}

.tv-spec-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	justify-content: space-between;
}

.tv-spec-list li:last-child {
	border-bottom: none;
}

.tv-spec-list .tv-spec-label {
	font-weight: 500;
	color: #111827;
}

.tv-spec-list .tv-spec-value {
	color: #6b7280;
	word-break: break-all;
}

/* Review Rating */
.tv-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 1rem 0;
}

.tv-stars {
	display: flex;
	gap: 0.25rem;
}

.tv-star {
	color: #fcd34d;
	font-size: 1.25rem;
}

.tv-star.empty {
	color: #e5e7eb;
}

.tv-rating-text {
	color: #6b7280;
	font-size: 0.9rem;
}

/* Timeline */
.tv-timeline {
	position: relative;
	padding: 2rem 0;
}

.tv-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #3b82f6;
	transform: translateX(-50%);
}

.tv-timeline-item {
	position: relative;
	margin: 2rem 0;
	padding: 0 2rem;
}

.tv-timeline-item:nth-child(odd) {
	text-align: right;
	padding-right: calc(50% + 2rem);
}

.tv-timeline-item:nth-child(even) {
	text-align: left;
	padding-left: calc(50% + 2rem);
}

.tv-timeline-item::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 12px;
	height: 12px;
	background: #3b82f6;
	border-radius: 50%;
	transform: translateY(-50%);
}

.tv-timeline-item:nth-child(odd)::before {
	right: calc(50% - 6px);
}

.tv-timeline-item:nth-child(even)::before {
	left: calc(50% - 6px);
}

.tv-timeline-content {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Back to Top Button */
.tv-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: #3b82f6;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
	transition: all 0.3s ease;
	z-index: 999;
}

.tv-back-to-top:hover {
	background: #2563eb;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 830px) {
	.tv-nav {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.tv-nav {
		display: none;
	}

	.tv-mobile-toggle {
		display: flex;
	}

	.tv-mobile-menu.active {
		display: block;
	}

	.tv-hero h1 {
		font-size: 2.5rem;
	}

	.tv-hero p {
		font-size: 1.1rem;
	}

	.tv-hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.tv-grid-1,
	.tv-grid-2,
	.tv-grid-3,
	.tv-grid-4 {
		grid-template-columns: 1fr;
	}

	.tv-contact-grid {
		grid-template-columns: 1fr;
	}

	.tv-news-card {
		grid-template-columns: 1fr;
	}

	.tv-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.tv-cookie-actions {
		justify-content: center;
	}

	.tv-timeline::before {
		left: 1rem;
	}

	.tv-timeline-item {
		padding-left: 3rem;
		padding-right: 0;
		text-align: left;
	}

	.tv-timeline-item:nth-child(odd) {
		padding-left: 3rem;
		padding-right: 0;
		text-align: left;
	}

	.tv-timeline-item::before {
		left: 0.5rem;
	}

	.tv-timeline-item:nth-child(odd)::before {
		left: 10px;
		right: auto;
	}
	.tv-timeline-item:nth-child(even) {
		padding-left: 3rem;
	}
	.tv-timeline-item:nth-child(even)::before {
		left: 10px;
		right: auto;
	}
}

@media (max-width: 480px) {
	.tv-container {
		padding: 0 15px;
	}

	.tv-hero {
		padding: 6rem 0 3rem;
	}

	.tv-hero h1 {
		font-size: 2rem;
	}

	.tv-section {
		padding: 3rem 0;
	}

	.tv-card-content,
	.tv-form,
	.tv-timeline-content {
		padding: 1rem;
	}
}

.tv-contact-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.tv-contact-hero-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.tv-contact-hero h1 {
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
	color: #111827;
	line-height: 1.2;
}

.tv-contact-hero p {
	font-size: 1.1rem;
	color: #6b7280;
	margin-bottom: 0;
}

.tv-contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.tv-contact-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tv-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tv-contact-card-icon {
	width: 60px;
	height: 60px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3b82f6;
	font-size: 1.5rem;
	margin: 0 auto 1.5rem;
}

.tv-contact-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
	color: #111827;
}

.tv-contact-card p {
	color: #111827;
	margin-bottom: 0.5rem;
}

.tv-contact-card a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.tv-contact-card a:hover {
	color: #ef4444;
}

.tv-contact-note {
	font-size: 0.9rem;
	color: #6b7280;
}

.tv-quick-links {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tv-quick-links h3 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #111827;
	padding-bottom: 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.tv-quick-links-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.tv-quick-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: #111827;
	padding: 1rem;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.tv-quick-link:hover {
	background: #f9fafb;
	color: #3b82f6;
}

.tv-quick-link-icon {
	width: 40px;
	height: 40px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #3b82f6;
	flex-shrink: 0;
}

.tv-contact-form-section {
	padding: 100px 0;
	background: white;
}

.tv-form-wrapper {
	background: #f9fafb;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tv-form-header {
	margin-bottom: 2rem;
}

.tv-form-header h2 {
	font-size: 1.8rem;
	margin-bottom: 0.75rem;
	color: #111827;
}

.tv-form-header p {
	color: #6b7280;
}

.tv-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tv-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.tv-form-group {
	margin-bottom: 0;
}

.tv-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #111827;
}

.tv-form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	background: white;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.tv-form-control:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tv-form-control.error {
	border-color: #ef4444;
}

.tv-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.tv-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.tv-form-checkbox input {
	margin-top: 0.25rem;
}

.tv-form-checkbox label {
	font-size: 0.9rem;
	margin-bottom: 0;
	color: #6b7280;
}

.tv-form-checkbox a {
	color: #3b82f6;
	text-decoration: none;
}

.tv-form-checkbox a:hover {
	color: #ef4444;
}

.tv-form-actions {
	margin-top: 1rem;
}

.tv-btn-primary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: #3b82f6;
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Inter', sans-serif;
}

.tv-btn-primary:hover {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.tv-map-wrapper {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tv-map-wrapper h2 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #111827;
	padding: 2rem 2rem 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1100px) {
	.tv-contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.tv-contact-hero h1 {
		font-size: 2.2rem;
	}

	.tv-contact-info {
		grid-template-columns: 1fr;
	}

	.tv-quick-links-grid {
		grid-template-columns: 1fr;
	}

	.tv-form-row {
		grid-template-columns: 1fr;
	}

	.tv-form-wrapper,
	.tv-map-wrapper {
		padding: 1.5rem;
	}

	.tv-map-wrapper h2 {
		padding: 0 0 1.5rem;
	}
}

@media (max-width: 480px) {
	.tv-contact-hero {
		padding: 100px 0 60px;
		text-align: center;
	}

	.tv-contact-hero h1 {
		font-size: 1.8rem;
	}

	.tv-contact-card,
	.tv-quick-links,
	.tv-form-wrapper {
		padding: 1.2rem;
	}

	.tv-quick-link {
		padding: 0.75rem;
	}
}

.tv-legal-page {
	min-height: 100vh;
	background: #f9fafb;
	padding: 6rem 0;
}

.tv-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
	color: white;
	border-radius: 1rem;
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.tv-legal-header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tv-legal-date {
	font-size: 1rem;
	opacity: 0.9;
	font-weight: 400;
}

.tv-legal-content {
	background: white;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.tv-legal-section {
	padding: 2.5rem;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}

.tv-legal-section:last-child {
	border-bottom: none;
}

.tv-legal-section::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
}

.tv-legal-section h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 1rem;
	padding-left: 1rem;
}

.tv-legal-section p {
	font-size: 1rem;
	line-height: 1.7;
	color: #374151;
	margin-bottom: 1.5rem;
	padding-left: 1rem;
}

.tv-legal-section ul {
	list-style: none;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
}

.tv-legal-section li {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4b5563;
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
}

.tv-legal-section li::before {
	content: '•';
	color: #3b82f6;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
}

.tv-legal-section li strong {
	color: #111827;
	font-weight: 600;
}

.tv-contact-info {
	background: #f8fafc;
	border-radius: 0.75rem;
	padding: 1.5rem;
	margin-top: 1.5rem;
	border: 1px solid #e2e8f0;
	margin-left: 1rem;
}

.tv-contact-info h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 1rem;
}

.tv-contact-info p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4b5563;
	margin-bottom: 0.5rem;
	padding-left: 0;
}

.tv-contact-info strong {
	color: #111827;
	font-weight: 600;
}

.tv-contact-info i {
	color: #3b82f6;
	margin-right: 0.5rem;
	width: 1rem;
}

.tv-contact-info a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.tv-contact-info a:hover {
	color: #1e40af;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
	.tv-legal-header {
		margin-bottom: 2rem;
		padding: 1.5rem 1rem;
	}

	.tv-legal-header h1 {
		font-size: 2rem;
	}

	.tv-legal-section {
		padding: 1.5rem 1rem;
	}

	.tv-legal-section h2 {
		font-size: 1.25rem;
		padding-left: 0.5rem;
	}

	.tv-legal-section p,
	.tv-legal-section ul {
		padding-left: 0.5rem;
	}

	.tv-contact-info {
		margin-left: 0.5rem;
		padding: 1rem;
	}
}

@media (max-width: 480px) {
	.tv-legal-header h1 {
		font-size: 1.5rem;
	}

	.tv-legal-section {
		padding: 1rem 0.75rem;
	}

	.tv-legal-section::before {
		width: 3px;
	}

	.tv-legal-section p,
	.tv-legal-section ul {
		padding-left: 0.25rem;
	}

	.tv-contact-info {
		margin-left: 0.25rem;
	}
}
