@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1b1b1b;
	background-color: #fafafa;
	overflow-x: hidden;
}

/* Typography */
.gt-heading-primary {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1.2;
	color: #1565c0;
	margin-bottom: 1.5rem;
}

.gt-heading-secondary {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.3;
	color: #1565c0;
	margin-bottom: 1.2rem;
}

.gt-heading-tertiary {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.4;
	color: #1565c0;
	margin-bottom: 1rem;
}

.gt-text-large {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #1b1b1b;
	margin-bottom: 1.5rem;
}

.gt-text-regular {
	font-size: 1rem;
	line-height: 1.6;
	color: #1b1b1b;
	margin-bottom: 1rem;
}

.gt-text-small {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #666;
}

/* Container & Layout */
.gt-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gt-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gt-container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gt-section {
	padding: 5rem 0;
}

.gt-section-small {
	padding: 3rem 0;
}

/* Grid Systems */
.gt-grid {
	display: grid;
	gap: 2rem;
}

.gt-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gt-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gt-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gt-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Header Styles */
.gt-header-top {
	background-color: #f5f5f5;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.gt-header-top-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2rem;
}

.gt-contact-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #666;
}

.gt-contact-info i {
	color: #1565c0;
}

.gt-header {
	background-color: #ffffff;
	border-bottom: 3px solid #1565c0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gt-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.gt-logo {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 700;
	color: #1565c0;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.gt-logo-accent {
	color: #f57c00;
}

.gt-nav {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.gt-nav-link {
	color: #1b1b1b;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.gt-nav-link:hover {
	color: #1565c0;
}

.gt-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #f57c00;
	transition: width 0.3s ease;
}

.gt-nav-link:hover::after {
	width: 100%;
}

.gt-nav-link.gt-active {
	color: #1565c0;
}

.gt-nav-link.gt-active::after {
	width: 100%;
}

/* Mobile Menu */
.gt-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #1565c0;
	cursor: pointer;
}

.gt-mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	background-color: #ffffff;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	transition: left 0.3s ease;
	z-index: 1001;
	padding: 2rem;
}

.gt-mobile-menu.gt-active {
	left: 0;
}

.gt-mobile-nav {
	list-style: none;
	margin-top: 2rem;
}

.gt-mobile-nav li {
	margin-bottom: 1rem;
}

.gt-mobile-nav a {
	color: #1b1b1b;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
}

.gt-mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.gt-mobile-overlay.gt-active {
	display: block;
}

/* Hero Section */
.gt-hero {
	background: linear-gradient(
		135deg,
		rgba(21, 101, 192, 0.05) 0%,
		rgba(245, 124, 0, 0.05) 100%
	);
	padding: 6rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.gt-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/gt-hero.webp') center/cover;
	opacity: 0.3;
}

.gt-hero-content {
	position: relative;
	z-index: 1;
}

.gt-hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
}

.gt-hero-subtitle {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.gt-hero-buttons {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.gt-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gt-btn-primary {
	background-color: #1565c0;
	color: #ffffff;
}

.gt-btn-primary:hover {
	background-color: #0d47a1;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.gt-btn-secondary {
	background-color: #f57c00;
	color: #ffffff;
}

.gt-btn-secondary:hover {
	background-color: #e65100;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
}

.gt-btn-outline {
	background-color: transparent;
	color: #1565c0;
	border: 2px solid #1565c0;
}

.gt-btn-outline:hover {
	background-color: #1565c0;
	color: #ffffff;
	transform: translateY(-2px);
}

.gt-btn-accent {
	background-color: #2e7d32;
	color: #ffffff;
}

.gt-btn-accent:hover {
	background-color: #1b5e20;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

/* Cards */
.gt-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gt-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gt-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1565c0 0%, #f57c00 100%);
}

.gt-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #1565c0 0%, #f57c00 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: #ffffff;
	font-size: 1.5rem;
}

.gt-card-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1565c0;
	margin-bottom: 1rem;
}

.gt-card-text {
	color: #666;
	line-height: 1.6;
}

/* Resource Cards */
.gt-resource-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.gt-resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gt-resource-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #1565c0;
}
.gt-resource-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gt-resource-content {
	padding: 1.5rem;
}

.gt-resource-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #1565c0;
	margin-bottom: 0.8rem;
}

.gt-resource-description {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.gt-resource-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	font-size: 0.875rem;
	color: #999;
}

/* Testimonial Cards */
.gt-testimonial-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	position: relative;
}

.gt-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1565c0 0%, #f57c00 100%);
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2rem;
}

.gt-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.gt-testimonial-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #1565c0;
	margin-bottom: 0.5rem;
}

.gt-testimonial-role {
	color: #f57c00;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.gt-testimonial-text {
	color: #666;
	font-style: italic;
	line-height: 1.6;
}

.gt-testimonial-quotes {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	color: #e0e0e0;
}

/* Forms */
.gt-form {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.gt-form button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.gt-form-group {
	margin-bottom: 1.5rem;
}

.gt-form-label {
	display: block;
	font-weight: 600;
	color: #1b1b1b;
	margin-bottom: 0.5rem;
}

.gt-form-input,
.gt-form-textarea,
.gt-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	background-color: #fafafa;
	transition: all 0.3s ease;
}

.gt-form-input:focus,
.gt-form-textarea:focus,
.gt-form-select:focus {
	outline: none;
	border-color: #1565c0;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.gt-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.gt-form-error {
	color: #d32f2f;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: block;
}

.gt-form-success {
	color: #2e7d32;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: block;
}

/* Map */
.gt-map-container {
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Map Section */
.gt-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.gt-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.gt-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.gt-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 */
.gt-footer {
	background-color: #f1f1f1;
	padding: 3rem 0 1rem;
}

.gt-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.gt-footer-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	color: #1565c0;
	margin-bottom: 1rem;
}

.gt-footer-section p,
.gt-footer-section li {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.gt-footer-links {
	list-style: none;
}

.gt-footer-links a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.gt-footer-links a:hover {
	color: #1565c0;
}

.gt-footer-contact-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.gt-footer-contact-item i {
	color: #1565c0;
	width: 20px;
}

.gt-footer-bottom {
	border-top: 1px solid #e0e0e0;
	padding-top: 1rem;
	text-align: center;
	color: #999;
	font-size: 0.875rem;
}

/* Cookie Banner */
.gt-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1565c0;
	color: #ffffff;
	padding: 1rem 0;
	z-index: 1005;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.gt-cookie-banner.gt-show {
	transform: translateY(0);
}

.gt-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.gt-cookie-text {
	flex: 1;
	min-width: 250px;
}

.gt-cookie-text a {
	color: #f57c00;
	text-decoration: underline;
}

.gt-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.gt-cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.gt-cookie-accept {
	background-color: #f57c00;
	color: #ffffff;
}

.gt-cookie-accept:hover {
	background-color: #e65100;
}

.gt-cookie-decline {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.gt-cookie-decline:hover {
	background-color: #ffffff;
	color: #1565c0;
}

/* Animations */
.gt-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.gt-fade-in.gt-visible {
	opacity: 1;
	transform: translateY(0);
}

.gt-slide-up {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.gt-slide-up.gt-visible {
	opacity: 1;
	transform: translateY(0);
}

.gt-scale-in {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.5s ease;
}

.gt-scale-in.gt-visible {
	opacity: 1;
	transform: scale(1);
}

/* Tabs */
.gt-tabs {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gt-tab-nav {
	display: flex;
	background-color: #f5f5f5;
	border-bottom: 1px solid #e0e0e0;
}

.gt-tab-button {
	flex: 1;
	padding: 1rem;
	background: none;
	border: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.gt-tab-button.gt-active {
	color: #1565c0;
	background-color: #ffffff;
}

.gt-tab-button.gt-active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #f57c00;
}

.gt-tab-content {
	padding: 2rem;
	display: none;
}

.gt-tab-content.gt-active {
	display: block;
}

/* Accordion */
.gt-accordion {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gt-accordion-item {
	border-bottom: 1px solid #e0e0e0;
}

.gt-accordion-item:last-child {
	border-bottom: none;
}

.gt-accordion-header {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #1565c0;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gt-accordion-header:hover {
	background-color: #f5f5f5;
}

.gt-accordion-icon {
	transition: transform 0.3s ease;
}

.gt-accordion-header.gt-active .gt-accordion-icon {
	transform: rotate(180deg);
}

.gt-accordion-content {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.gt-accordion-content.gt-active {
	padding: 1rem 1.5rem 1.5rem;
	max-height: 1500px;
}

/* Stats Section */
.gt-stats {
	background: linear-gradient(135deg, #1565c0 0%, #f57c00 100%);
	color: #ffffff;
	padding: 4rem 0;
	text-align: center;
}

.gt-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.gt-stat-item {
	padding: 1rem;
}

.gt-stat-number {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
}

.gt-stat-label {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* CTA Section */
.gt-cta {
	background: linear-gradient(
		135deg,
		rgba(21, 101, 192, 0.05) 0%,
		rgba(245, 124, 0, 0.05) 100%
	);
	padding: 4rem 0;
	text-align: center;
}

.gt-cta-content {
	max-width: 600px;
	margin: 0 auto;
}

/* Breadcrumbs */
.gt-breadcrumbs {
	padding: 1rem 0;
	background-color: #f5f5f5;
}

.gt-breadcrumb-list {
	display: flex;
	list-style: none;
	gap: 0.5rem;
	align-items: center;
}

.gt-breadcrumb-item a {
	color: #1565c0;
	text-decoration: none;
}

.gt-breadcrumb-item:not(:last-child)::after {
	content: '/';
	margin-left: 0.5rem;
	color: #999;
}

.gt-breadcrumb-current {
	color: #666;
}

/* Progress Bar */
.gt-progress {
	height: 4px;
	background-color: #e0e0e0;
	border-radius: 2px;
	overflow: hidden;
}

.gt-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #1565c0 0%, #f57c00 100%);
	border-radius: 2px;
	transition: width 0.3s ease;
}

/* Loading Spinner */
.gt-loading {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid #e0e0e0;
	border-top: 4px solid #1565c0;
	border-radius: 50%;
	animation: gt-spin 1s linear infinite;
}

@keyframes gt-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Badge */
.gt-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 20px;
	background-color: #1565c0;
	color: #ffffff;
}

.gt-badge-secondary {
	background-color: #f57c00;
}

.gt-badge-success {
	background-color: #2e7d32;
}

.gt-badge-outline {
	background-color: transparent;
	border: 1px solid #1565c0;
	color: #1565c0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.gt-container {
		padding: 0 1.5rem;
	}

	.gt-hero-title {
		font-size: 3rem;
	}

	.gt-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.gt-footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.gt-container {
		padding: 0 1rem;
	}

	.gt-nav {
		display: none;
	}

	.gt-mobile-toggle {
		display: block;
	}

	.gt-mobile-menu {
		display: block;
	}

	.gt-hero-title {
		font-size: 2.5rem;
	}

	.gt-hero-subtitle {
		font-size: 1.2rem;
	}

	.gt-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.gt-grid-2,
	.gt-grid-3,
	.gt-grid-4 {
		grid-template-columns: 1fr;
	}

	.gt-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gt-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.gt-tab-nav {
		flex-direction: column;
	}

	.gt-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gt-header-top {
		display: none;
	}
}

@media (max-width: 480px) {
	.gt-hero-title {
		font-size: 2rem;
	}

	.gt-section {
		padding: 3rem 0;
	}

	.gt-card {
		padding: 1.5rem;
	}

	.gt-stats-grid {
		grid-template-columns: 1fr;
	}

	.gt-heading-secondary,
	.gt-heading-tertiary {
		font-size: 1.4rem;
		word-wrap: break-word;
	}

	.gt-stat-number {
		font-size: 2.5rem;
	}
}

:root {
	--gt-legal-bg-primary: #fafafa;
	--gt-legal-bg-secondary: #ffffff;
	--gt-legal-accent-blue: #1565c0;
	--gt-legal-accent-orange: #f57c00;
	--gt-legal-accent-green: #2e7d32;
	--gt-legal-text-primary: #1b1b1b;
	--gt-legal-text-secondary: #555555;
	--gt-legal-border-light: #e0e0e0;
	--gt-legal-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
	--gt-legal-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
	--gt-legal-radius-small: 4px;
	--gt-legal-radius-medium: 8px;
	--gt-legal-radius-large: 12px;
}

/* Контейнер страницы */
.gt-legal-container {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 120px 20px;
	background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.gt-legal-content {
	max-width: 900px;
	width: 100%;
	background: var(--gt-legal-bg-secondary);
	border-radius: var(--gt-legal-radius-large);
	box-shadow: var(--gt-legal-shadow-medium);
	overflow: hidden;
	border: 1px solid var(--gt-legal-border-light);
}

/* Заголовок документа */
.gt-legal-header {
	background: linear-gradient(
		135deg,
		var(--gt-legal-accent-blue) 0%,
		#1976d2 100%
	);
	color: white;
	padding: 3rem 2.5rem 2rem;
	position: relative;
	overflow: hidden;
}

.gt-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v20h40V20H20z'/%3E%3C/g%3E%3C/svg%3E")
		repeat;
	opacity: 0.1;
}

.gt-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
	position: relative;
	z-index: 1;
}

.gt-legal-meta {
	position: relative;
	z-index: 1;
	opacity: 0.9;
	font-size: 0.95rem;
}

.gt-legal-meta p {
	margin-bottom: 0.25rem;
	font-weight: 500;
}

/* Введение */
.gt-legal-intro {
	padding: 2.5rem 2.5rem 1.5rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-bottom: 3px solid var(--gt-legal-accent-orange);
	position: relative;
}

.gt-legal-intro::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 2.5rem;
	width: 60px;
	height: 3px;
	background: var(--gt-legal-accent-green);
	border-radius: 2px;
}

.gt-legal-intro p {
	font-size: 1.1rem;
	color: var(--gt-legal-text-secondary);
	font-weight: 500;
	line-height: 1.6;
	margin: 0;
}

/* Секции документа */
.gt-legal-section {
	padding: 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

.gt-legal-section:last-child {
	border-bottom: none;
}

.gt-legal-section:hover {
	background-color: #fafbfc;
}

/* Заголовки секций */
.gt-legal-section-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--gt-legal-accent-blue);
	margin: 0 0 1.5rem 0;
	padding: 2rem 2.5rem 0;
	line-height: 1.3;
	position: relative;
}

.gt-legal-section-title::before {
	content: '';
	position: absolute;
	left: 2.5rem;
	top: 1.5rem;
	width: 4px;
	height: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--gt-legal-accent-orange),
		var(--gt-legal-accent-green)
	);
	border-radius: 2px;
	margin-right: 1rem;
}

.gt-legal-section-title {
	padding-left: calc(2.5rem + 1.5rem);
}

/* Содержимое секций */
.gt-legal-section-content {
	padding: 0 2.5rem 2rem;
	color: var(--gt-legal-text-primary);
}

.gt-legal-section-content p {
	margin-bottom: 1.2rem;
	line-height: 1.7;
	font-size: 1rem;
}

.gt-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* Списки */
.gt-legal-list {
	margin: 1.5rem 0;
	padding-left: 0;
	list-style: none;
}

.gt-legal-list li {
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
	line-height: 1.6;
}

.gt-legal-list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--gt-legal-accent-orange);
	font-weight: bold;
	font-size: 1.1rem;
}

.gt-legal-list li strong {
	color: var(--gt-legal-accent-blue);
	font-weight: 600;
}

/* Вложенные списки */
.gt-legal-list .gt-legal-list {
	margin-top: 0.8rem;
	margin-bottom: 0;
}

.gt-legal-list .gt-legal-list li::before {
	content: '•';
	color: var(--gt-legal-accent-green);
	font-size: 1rem;
}

/* Ссылки */
.gt-legal-link {
	color: var(--gt-legal-accent-blue);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.gt-legal-link:hover {
	color: var(--gt-legal-accent-orange);
	border-bottom-color: var(--gt-legal-accent-orange);
	text-decoration: none;
}

.gt-legal-link:focus {
	outline: 2px solid var(--gt-legal-accent-blue);
	outline-offset: 2px;
	border-radius: var(--gt-legal-radius-small);
}

/* Контактная информация */
.gt-legal-contact {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 2px solid var(--gt-legal-border-light);
	border-radius: var(--gt-legal-radius-medium);
	padding: 1.5rem;
	margin: 1.5rem 0;
	position: relative;
}

.gt-legal-contact::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		135deg,
		var(--gt-legal-accent-blue),
		var(--gt-legal-accent-orange),
		var(--gt-legal-accent-green)
	);
	border-radius: var(--gt-legal-radius-medium);
	z-index: -1;
	opacity: 0.1;
}

.gt-legal-contact p {
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
}

.gt-legal-contact strong {
	color: var(--gt-legal-accent-blue);
	font-size: 1.05rem;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
	.gt-legal-content {
		border-radius: var(--gt-legal-radius-medium);
		margin: 0;
	}

	.gt-legal-header {
		padding: 2rem 1.5rem 1.5rem;
	}

	.gt-legal-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.gt-legal-intro {
		padding: 1.5rem 1.5rem 1rem;
	}

	.gt-legal-intro::after {
		left: 1.5rem;
	}

	.gt-legal-section-title {
		font-size: 1.2rem;
		padding: 1.5rem 1.5rem 0;
		padding-left: calc(1.5rem + 1.5rem);
	}

	.gt-legal-section-title::before {
		left: 1.5rem;
		top: 1rem;
	}

	.gt-legal-section-content {
		padding: 0 1.5rem 1.5rem;
	}

	.gt-legal-list li {
		padding-left: 1.5rem;
	}

	.gt-legal-contact {
		padding: 1rem;
		margin: 1rem 0;
	}
}

@media (max-width: 480px) {
	.gt-legal-content {
		border-radius: var(--gt-legal-radius-small);
	}

	.gt-legal-header {
		padding: 1.5rem 1rem 1rem;
	}

	.gt-legal-title {
		font-size: 1.3rem;
		margin-bottom: 0.8rem;
	}

	.gt-legal-meta {
		font-size: 0.9rem;
	}

	.gt-legal-intro {
		padding: 1rem 1rem 0.8rem;
	}

	.gt-legal-intro::after {
		left: 1rem;
		width: 40px;
	}

	.gt-legal-intro p {
		font-size: 1rem;
	}

	.gt-legal-section-title {
		font-size: 1.1rem;
		padding: 1.2rem 1rem 0;
		padding-left: calc(1rem + 1.2rem);
		line-height: 1.4;
	}

	.gt-legal-section-title::before {
		left: 1rem;
		top: 0.8rem;
		width: 3px;
		height: 1.2rem;
	}

	.gt-legal-section-content {
		padding: 0 1rem 1.2rem;
		font-size: 0.95rem;
	}

	.gt-legal-section-content p {
		margin-bottom: 1rem;
	}

	.gt-legal-list {
		margin: 1rem 0;
	}

	.gt-legal-list li {
		margin-bottom: 0.8rem;
		padding-left: 1.2rem;
		font-size: 0.95rem;
	}

	.gt-legal-contact {
		padding: 0.8rem;
		margin: 0.8rem 0;
		font-size: 0.9rem;
	}
}
