:root {
	--ta-bg-primary: #121212;
	--ta-bg-secondary: #1e1e1e;
	--ta-bg-dark: #0d0d0d;
	--ta-accent-turquoise: #00bfa5;
	--ta-accent-pink: #ff4081;
	--ta-accent-yellow: #ffd600;
	--ta-text-primary: #e0e0e0;
	--ta-text-secondary: #b0b0b0;
	--ta-border: #333333;
	--ta-shadow: 0 8px 32px rgba(0, 191, 165, 0.1);
	--ta-shadow-hover: 0 12px 48px rgba(255, 64, 129, 0.2);
	--ta-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--ta-font-primary: 'Roboto', sans-serif;
	--ta-font-heading: 'Montserrat', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--ta-font-primary);
	background-color: var(--ta-bg-primary);
	color: var(--ta-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.ta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ta-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ta-font-heading);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.ta-heading-xl {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--ta-accent-turquoise);
	text-shadow: 0 0 20px rgba(0, 191, 165, 0.3);
}

.ta-heading-lg {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--ta-accent-turquoise);
}

.ta-heading-md {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--ta-text-primary);
}

.ta-heading-sm {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	color: var(--ta-text-primary);
}

.ta-text-accent {
	color: var(--ta-accent-pink);
}

.ta-text-highlight {
	color: var(--ta-accent-yellow);
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: var(--ta-text-primary);
}

/* ============================================
   HEADER STYLES
   ============================================ */

.ta-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 2px solid var(--ta-accent-turquoise);
	z-index: 1000;
	transition: var(--ta-transition);
}

.ta-header-content {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 1rem 0;
}

.ta-logo {
	font-family: var(--ta-font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--ta-accent-turquoise);
	text-decoration: none;
	transition: var(--ta-transition);
}

.ta-logo:hover {
	text-shadow: 0 0 20px rgba(0, 191, 165, 0.6);
	transform: scale(1.05);
}

.ta-logo .ta-accent {
	color: var(--ta-accent-pink);
}

.ta-nav {
	justify-self: center;
}

.ta-nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.ta-nav-link {
	color: var(--ta-text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--ta-transition);
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.ta-nav-link:hover,
.ta-nav-link.ta-active {
	color: var(--ta-accent-turquoise);
	background: rgba(0, 191, 165, 0.1);
	box-shadow: 0 0 15px rgba(0, 191, 165, 0.2);
}

.ta-cta-header {
	background: linear-gradient(
		135deg,
		var(--ta-accent-pink),
		var(--ta-accent-turquoise)
	);
	color: white;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--ta-transition);
	box-shadow: var(--ta-shadow);
}

.ta-cta-header:hover {
	transform: translateY(-2px);
	box-shadow: var(--ta-shadow-hover);
}

/* Mobile Menu */
.ta-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--ta-text-primary);
	font-size: 1.5rem;
	cursor: pointer;
}

.ta-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--ta-bg-secondary);
	border-top: 1px solid var(--ta-border);
	padding: 2rem 0;
}

.ta-mobile-nav.ta-active {
	display: block;
	animation: ta-slideDown 0.3s ease-out;
}

.ta-mobile-nav-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	gap: 1rem;
	text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.ta-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
			135deg,
			rgba(18, 18, 18, 0.9),
			rgba(30, 30, 30, 0.8)
		),
		url('assets/ta-hero.webp') center/cover;
	position: relative;
	overflow: hidden;
}

.ta-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(0, 191, 165, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 64, 129, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(255, 214, 0, 0.05) 0%,
			transparent 50%
		);
	z-index: -1;
}

.ta-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 8rem 0 4rem;
}

.ta-hero-text {
	animation: ta-fadeInUp 1s ease-out;
}

.ta-hero-title {
	margin-bottom: 1.5rem;
	font-size: 3rem;
}

.ta-hero-subtitle {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	color: var(--ta-text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.4;
}

.ta-hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.ta-btn-primary {
	background: linear-gradient(
		135deg,
		var(--ta-accent-turquoise),
		var(--ta-accent-pink)
	);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--ta-transition);
	box-shadow: var(--ta-shadow);
	font-size: 1.1rem;
}

.ta-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--ta-shadow-hover);
}

.ta-btn-secondary {
	background: transparent;
	color: var(--ta-accent-turquoise);
	padding: 1rem 2rem;
	border: 2px solid var(--ta-accent-turquoise);
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--ta-transition);
	font-size: 1.1rem;
}

.ta-btn-secondary:hover {
	background: var(--ta-accent-turquoise);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(0, 191, 165, 0.3);
}

.ta-hero-visual {
	position: relative;
	animation: ta-fadeInRight 1s ease-out 0.3s both;
}

.ta-hero-image {
	width: 100%;
	height: 400px;
	background: var(--ta-bg-secondary);
	border-radius: 20px;
	border: 1px solid var(--ta-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ta-text-secondary);
	font-size: 1.1rem;
}

.ta-hero-image img {
	width: 100%;
	border-radius: 20px;
	height: 100%;
	object-fit: cover;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.ta-section {
	padding: 6rem 0;
	position: relative;
}

.ta-section-dark {
	background: var(--ta-bg-secondary);
}

.ta-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.ta-section-title {
	margin-bottom: 1rem;
}

.ta-section-subtitle {
	font-size: 1.2rem;
	color: var(--ta-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.ta-grid {
	display: grid;
	gap: 2rem;
}

.ta-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.ta-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.ta-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ============================================
   CARD STYLES
   ============================================ */

.ta-card {
	background: var(--ta-bg-secondary);
	border-radius: 15px;
	padding: 2.5rem;
	border: 1px solid var(--ta-border);
	transition: var(--ta-transition);
	position: relative;
	overflow: hidden;
}

.ta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--ta-accent-turquoise),
		var(--ta-accent-pink)
	);
	transform: scaleX(0);
	transition: var(--ta-transition);
}

.ta-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ta-shadow-hover);
	border-color: var(--ta-accent-turquoise);
}

.ta-card:hover::before {
	transform: scaleX(1);
}

.ta-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--ta-accent-turquoise),
		var(--ta-accent-pink)
	);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.ta-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--ta-text-primary);
}

.ta-card-text {
	color: var(--ta-text-secondary);
	line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.ta-testimonial {
	background: var(--ta-bg-secondary);
	border-radius: 15px;
	padding: 2rem;
	border-left: 4px solid var(--ta-accent-turquoise);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ta-testimonial-quote {
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 1.5rem;
	color: var(--ta-text-primary);
}

.ta-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.ta-testimonial-avatar {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--ta-accent-turquoise),
		var(--ta-accent-pink)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
}

.ta-testimonial-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ta-testimonial-info h4 {
	margin: 0;
	color: var(--ta-text-primary);
}

.ta-testimonial-info p {
	margin: 0;
	color: var(--ta-text-secondary);
	font-size: 0.9rem;
}

/* ============================================
   FORMS
   ============================================ */

.ta-form {
	background: var(--ta-bg-secondary);
	border-radius: 15px;
	padding: 2.5rem;
	border: 1px solid var(--ta-border);
}

.ta-form-group {
	margin-bottom: 1.5rem;
}

.ta-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--ta-text-primary);
	font-weight: 500;
}

.ta-input,
.ta-textarea {
	width: 100%;
	padding: 1rem;
	background: var(--ta-bg-primary);
	border: 2px solid var(--ta-border);
	border-radius: 10px;
	color: var(--ta-text-primary);
	font-size: 1rem;
	transition: var(--ta-transition);
}

.ta-input:focus,
.ta-textarea:focus {
	outline: none;
	border-color: var(--ta-accent-turquoise);
	box-shadow: 0 0 20px rgba(0, 191, 165, 0.2);
}

.ta-textarea {
	min-height: 120px;
	resize: vertical;
}

.ta-form-error {
	color: var(--ta-accent-pink);
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ta-form-error.ta-show {
	display: block;
}

/* ============================================
   CHARTS & DATA VISUALIZATION
   ============================================ */

.ta-chart-container {
	background: var(--ta-bg-secondary);
	border-radius: 15px;
	padding: 2rem;
	border: 1px solid var(--ta-border);
	height: 400px;
}

.ta-chart-container canvas {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.ta-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ta-stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--ta-bg-secondary);
	border-radius: 15px;
	border: 1px solid var(--ta-border);
}

.ta-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--ta-accent-turquoise);
	margin-bottom: 0.5rem;
}

.ta-stat-label {
	color: var(--ta-text-secondary);
	font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.ta-footer {
	background: var(--ta-bg-dark);
	padding: 4rem 0 2rem;
	border-top: 2px solid var(--ta-accent-turquoise);
}

.ta-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.ta-footer-section h3 {
	color: var(--ta-accent-turquoise);
	margin-bottom: 1.5rem;
}

.ta-footer-logo {
	font-family: var(--ta-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ta-accent-turquoise);
	margin-bottom: 1rem;
}

.ta-footer-slogan {
	color: var(--ta-text-secondary);
	font-style: italic;
	margin-bottom: 1.5rem;
}

.ta-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ta-footer-links li {
	margin-bottom: 0.8rem;
}

.ta-footer-links a {
	color: var(--ta-text-secondary);
	text-decoration: none;
	transition: var(--ta-transition);
}

.ta-footer-links a:hover {
	color: var(--ta-accent-turquoise);
}

.ta-contact-info {
	color: var(--ta-text-secondary);
	line-height: 1.8;
}

.ta-contact-info p a {
	color: var(--ta-accent-pink);
	text-decoration: none;
}

.ta-contact-info strong {
	color: var(--ta-text-primary);
}

.ta-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--ta-border);
	color: var(--ta-text-secondary);
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.ta-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--ta-bg-secondary);
	border-top: 2px solid var(--ta-accent-turquoise);
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: var(--ta-transition);
}

.ta-cookie-popup.ta-show {
	transform: translateY(0);
}

.ta-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.ta-cookie-text {
	flex: 1;
	color: var(--ta-text-primary);
}

.ta-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.ta-btn-cookie {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--ta-transition);
}

.ta-btn-accept {
	background: var(--ta-accent-turquoise);
	color: white;
}

.ta-btn-accept:hover {
	background: var(--ta-accent-pink);
}

.ta-btn-learn-more {
	background: transparent;
	color: var(--ta-accent-turquoise);
	border: 1px solid var(--ta-accent-turquoise);
	text-decoration: none;
}

.ta-btn-learn-more:hover {
	background: var(--ta-accent-turquoise);
	color: white;
}

/* ============================================
   MAP STYLES
   ============================================ */

.ta-map-container {
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid var(--ta-border);
}

/* Map Section */
.ta-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ta-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ta-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ta-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;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes ta-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ta-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ta-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ta-slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ta-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.ta-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.ta-animate-on-scroll.ta-in-view {
	opacity: 1;
	transform: translateY(0);
}

.ta-flex {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
	.ta-nav-list {
		gap: 0;
	}
}

@media (max-width: 830px) {
	.ta-nav {
		display: none;
	}

	.ta-mobile-menu-toggle {
		display: block;
	}

	.ta-cta-header {
		display: none;
	}

	.ta-header-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.ta-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.ta-hero-title {
		font-size: 2rem;
	}

	.ta-grid-2,
	.ta-grid-3,
	.ta-grid-4 {
		grid-template-columns: 1fr;
	}

	.ta-hero-buttons {
		justify-content: center;
	}

	.ta-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ta-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ta-container,
	.ta-container-wide {
		padding: 0 15px;
	}

	.ta-hero-title {
		font-size: 1.5rem;
	}

	.ta-section {
		padding: 4rem 0;
	}

	.ta-card,
	.ta-form {
		padding: 1.5rem;
	}

	.ta-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ta-btn-primary,
	.ta-btn-secondary {
		width: 100%;
		max-width: 300px;
	}
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.ta-text-center {
	text-align: center;
}
.ta-text-left {
	text-align: left;
}
.ta-text-right {
	text-align: right;
}

.ta-mb-0 {
	margin-bottom: 0;
}
.ta-mb-1 {
	margin-bottom: 1rem;
}
.ta-mb-2 {
	margin-bottom: 2rem;
}
.ta-mb-3 {
	margin-bottom: 3rem;
}
.ta-mb-4 {
	margin-bottom: 4rem;
}

.ta-mt-0 {
	margin-top: 0;
}
.ta-mt-1 {
	margin-top: 1rem;
}
.ta-mt-2 {
	margin-top: 2rem;
}
.ta-mt-3 {
	margin-top: 3rem;
}
.ta-mt-4 {
	margin-top: 4rem;
}

.ta-hidden {
	display: none;
}
.ta-visible {
	display: block;
}

.ta-relative {
	position: relative;
}
.ta-absolute {
	position: absolute;
}

.ta-overflow-hidden {
	overflow: hidden;
}

.ta-pointer {
	cursor: pointer;
}

.ta-transition {
	transition: var(--ta-transition);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
	.ta-header,
	.ta-footer,
	.ta-cookie-popup,
	.ta-mobile-menu-toggle {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	.ta-card,
	.ta-form {
		border: 1px solid #ccc;
		background: white;
	}
}

.ta-legal-container {
	max-width: 1200px;
	margin: 120px auto;
	padding: 0 20px;
	min-height: 100vh;
	position: relative;
}

.ta-legal-container::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			ellipse at center top,
			rgba(0, 191, 165, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at center bottom,
			rgba(255, 64, 129, 0.08) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: -1;
}

.ta-legal-content {
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.ta-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #00bfa5, transparent);
}

/* Nagłówek */
.ta-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid rgba(0, 191, 165, 0.2);
	position: relative;
}

.ta-legal-title {
	font-size: 3rem;
	font-weight: 700;
	background: linear-gradient(135deg, #00bfa5, #ff4081);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px rgba(0, 191, 165, 0.3);
}

.ta-legal-subtitle {
	font-size: 1.3rem;
	color: #b0bec5;
	margin-bottom: 1rem;
	font-weight: 300;
}

.ta-legal-date {
	display: inline-block;
	background: linear-gradient(
		135deg,
		rgba(255, 214, 0, 0.2),
		rgba(255, 64, 129, 0.2)
	);
	color: #ffd600;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid rgba(255, 214, 0, 0.3);
}

/* Wprowadzenie */
.ta-legal-intro {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 3rem;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		rgba(0, 191, 165, 0.1),
		rgba(255, 64, 129, 0.1)
	);
	border-radius: 15px;
	border-left: 4px solid #00bfa5;
	color: #f0f0f0;
}

/* Sekcje */
.ta-legal-section {
	margin-bottom: 3rem;
	background: rgba(25, 25, 25, 0.6);
	border-radius: 15px;
	padding: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ta-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #00bfa5, #ff4081);
	transition: left 0.5s ease;
}

.ta-legal-section:hover::before {
	left: 0;
}

.ta-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 191, 165, 0.2);
	border-color: rgba(0, 191, 165, 0.3);
}

.ta-legal-section-title {
	font-size: 1.8rem;
	color: #00bfa5;
	margin-bottom: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-left: 1rem;
}

.ta-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 100%;
	background: linear-gradient(to bottom, #ff4081, #ffd600);
	border-radius: 2px;
}

/* Tekst w sekcjach */
.ta-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #e0e0e0;
}

.ta-legal-text p {
	margin-bottom: 1.5rem;
	word-break: break-all;
}

.ta-legal-text p:last-child {
	margin-bottom: 0;
}

/* Listy */
.ta-legal-text ul {
	list-style: none;
	padding-left: 0;
	margin: 1.5rem 0;
}

.ta-legal-text li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.ta-legal-text li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #00bfa5;
	font-size: 0.8rem;
	top: 0.2rem;
}

.ta-legal-text strong {
	color: #ff4081;
	font-weight: 600;
}

/* Lista kontaktowa */
.ta-legal-contact-list {
	background: rgba(0, 191, 165, 0.1);
	border-radius: 10px;
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-left: 3px solid #00bfa5;
}

.ta-legal-contact-list li::before {
	content: '📍';
	color: #ffd600;
}

.ta-legal-contact-list li:nth-child(2)::before {
	content: '📞';
}

.ta-legal-contact-list li:nth-child(3)::before {
	content: '✉️';
}

/* Finalne informacje kontaktowe */
.ta-legal-contact-final {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.8),
		rgba(40, 40, 40, 0.8)
	);
	border-radius: 15px;
	padding: 2rem;
	margin-top: 2rem;
	text-align: center;
	border: 2px solid rgba(0, 191, 165, 0.3);
}

.ta-legal-contact-final strong {
	color: #00bfa5;
	font-size: 1.2rem;
}

/* Linki */
.ta-legal-link {
	color: #00bfa5;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
}

.ta-legal-link:hover {
	color: #ff4081;
	text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

.ta-legal-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff4081, #ffd600);
	transition: width 0.3s ease;
}

.ta-legal-link:hover::after {
	width: 100%;
}

/* Responsywność */
@media (max-width: 768px) {
	.ta-legal-content {
		padding: 2rem;
		border-radius: 15px;
	}

	.ta-legal-title {
		font-size: 2.2rem;
	}

	.ta-legal-section {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.ta-legal-section-title {
		font-size: 1.5rem;
	}

	.ta-legal-intro {
		font-size: 1.1rem;
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.ta-legal-title {
		font-size: 1.3rem;
	}

	.ta-legal-content {
		padding: 1rem;
	}

	.ta-legal-section {
		padding: 1rem;
	}

	.ta-legal-section-title {
		font-size: 1.1rem;
	}

	.ta-cookie-buttons {
		flex-direction: column;
	}

	.ta-legal-text {
		font-size: 0.95rem;
	}
}
