* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #212121;
	background-color: #f9fafb;
}

/* Typography */
.gq-title-primary {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #0288d1;
	margin-bottom: 1rem;
}

.gq-title-secondary {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #212121;
	margin-bottom: 0.8rem;
}

.gq-text-large {
	font-size: 1.2rem;
	line-height: 1.7;
	color: #212121;
}

.gq-text-base {
	font-size: 1rem;
	line-height: 1.6;
	color: #212121;
}

.gq-text-accent {
	color: #0288d1;
	font-weight: 500;
}

/* Container and Layout */
.gq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.gq-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.gq-section {
	padding: 80px 0;
}

.gq-section-small {
	padding: 60px 0;
}

/* Grid System */
.gq-grid {
	display: grid;
	gap: 30px;
}

.gq-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.gq-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.gq-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gq-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Header Styles */
.gq-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(2, 136, 209, 0.1);
	z-index: 1000;
	padding: 15px 30px;
	width: 90%;
	max-width: 1200px;
	transition: all 0.3s ease;
}

.gq-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gq-logo {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #0288d1;
	text-decoration: none;
	transition: all 0.3s ease;
}

.gq-logo:hover {
	color: #43a047;
	text-shadow: 0 0 10px rgba(67, 160, 71, 0.3);
}

.gq-nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.gq-nav-link {
	text-decoration: none;
	color: #212121;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 0;
}

.gq-nav-link:hover {
	color: #43a047;
}

.gq-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #43a047, #0288d1);
	transition: width 0.3s ease;
}

.gq-nav-link:hover::after {
	width: 100%;
}

.gq-nav-link.active {
	color: #0288d1;
}

.gq-nav-link.active::after {
	width: 100%;
}

/* Mobile Menu */
.gq-burger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 3px;
}

.gq-burger-line {
	width: 25px;
	height: 3px;
	background: #212121;
	transition: all 0.3s ease;
}

.gq-mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #ffffff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 2000;
	padding: 80px 30px 30px;
}

.gq-mobile-nav.active {
	right: 0;
}

.gq-mobile-menu {
	list-style: none;
	margin-top: 50px;
}

.gq-mobile-menu li {
	margin-bottom: 20px;
}

.gq-mobile-link {
	text-decoration: none;
	color: #212121;
	font-size: 1.1rem;
	font-weight: 500;
	display: block;
	padding: 15px 0;
	border-bottom: 1px solid #f9fafb;
	transition: color 0.3s ease;
}

.gq-mobile-link:hover {
	color: #43a047;
}

.gq-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1500;
}

.gq-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Hero Section */
.gq-hero {
	background: linear-gradient(135deg, #f9fafb 0%, #e3f2fd 100%);
	padding: 150px 0 100px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.gq-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/gq-hero.webp') center/cover;
	opacity: 0.3;
	pointer-events: none;
}

.gq-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

.gq-hero-title {
	font-size: 3.5rem;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #0288d1;
	margin-bottom: 20px;
	line-height: 1.2;
}

.gq-hero-subtitle {
	font-size: 1.3rem;
	color: #212121;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.gq-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.gq-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	text-align: center;
	min-width: 180px;
}

.gq-btn-primary {
	background: linear-gradient(135deg, #0288d1, #0277bd);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}

.gq-btn-primary:hover {
	background: linear-gradient(135deg, #0277bd, #01579b);
	box-shadow: 0 6px 20px rgba(2, 136, 209, 0.4);
	transform: translateY(-2px);
}

.gq-btn-secondary {
	background: #ffffff;
	color: #0288d1;
	border: 2px solid #0288d1;
	box-shadow: 0 4px 15px rgba(2, 136, 209, 0.1);
}

.gq-btn-secondary:hover {
	background: #0288d1;
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(2, 136, 209, 0.3);
	transform: translateY(-2px);
}

.gq-btn-success {
	background: linear-gradient(135deg, #43a047, #388e3c);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
}

.gq-btn-success:hover {
	background: linear-gradient(135deg, #388e3c, #2e7d32);
	box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4);
	transform: translateY(-2px);
}

/* Cards */
.gq-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(2, 136, 209, 0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gq-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(2, 136, 209, 0.15);
}

.gq-card-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
	border-radius: 15px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0288d1;
	font-size: 3rem;
}

.gq-card-image img {
	width: 100%;
	border-radius: 15px;
	height: 100%;
	object-fit: cover;
}

.gq-card-title {
	font-size: 1.3rem;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #0288d1;
	margin-bottom: 15px;
}

.gq-card-description {
	color: #212121;
	line-height: 1.6;
	margin-bottom: 20px;
}

.gq-card-link {
	color: #43a047;
	text-decoration: none;
	font-weight: 500;
	margin-top: auto;
	transition: color 0.3s ease;
}

.gq-card-link:hover {
	color: #388e3c;
}

/* Content Sections */
.gq-content-section {
	background: #ffffff;
	margin: 60px 0;
	border-radius: 25px;
	padding: 60px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gq-section-title {
	font-size: 2.5rem;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #0288d1;
	text-align: center;
	margin-bottom: 20px;
}

.gq-section-subtitle {
	font-size: 1.2rem;
	color: #212121;
	text-align: center;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Features Grid */
.gq-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gq-feature-item {
	text-align: center;
	padding: 30px 20px;
}

.gq-feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #0288d1, #43a047);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: #ffffff;
	font-size: 2rem;
}

.gq-feature-title {
	font-size: 1.3rem;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #212121;
	margin-bottom: 15px;
}

.gq-feature-description {
	color: #212121;
	line-height: 1.6;
}

/* Testimonials */
.gq-testimonials {
	background: linear-gradient(135deg, #e3f2fd, #f9fafb);
	padding: 80px 0;
}

.gq-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.gq-testimonial {
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease;
}

.gq-testimonial:hover {
	transform: translateY(-5px);
}

.gq-testimonial-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ff7043, #ff5722);
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 2rem;
	font-weight: 600;
}

.gq-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.gq-testimonial-text {
	font-style: italic;
	color: #212121;
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 1.1rem;
}

.gq-testimonial-author {
	font-weight: 600;
	color: #0288d1;
	font-size: 1.1rem;
}

/* Forms */
.gq-form-section {
	background: #ffffff;
	border-radius: 25px;
	padding: 60px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gq-form {
	max-width: 600px;
	margin: 0 auto;
}

.gq-form-group {
	margin-bottom: 25px;
}

.gq-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #212121;
}

.gq-form-input,
.gq-form-textarea {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #fafafa;
}

.gq-form-input:focus,
.gq-form-textarea:focus {
	outline: none;
	border-color: #0288d1;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.1);
}

.gq-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.gq-form-error {
	color: #f44336;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.gq-form-success {
	background: #e8f5e8;
	border: 1px solid #43a047;
	color: #2e7d32;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 20px;
	display: none;
}

/* Map Container */
.gq-map-container {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gq-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.gq-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.gq-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.gq-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;
}

/* Cookie Popup */
.gq-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	padding: 25px;
	z-index: 3000;
	transition: bottom 0.3s ease;
}

.gq-cookie-popup.show {
	bottom: 0;
}

.gq-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.gq-cookie-text {
	flex: 1;
	color: #212121;
}

.gq-cookie-text a {
	color: #0288d1;
	text-decoration: none;
}

.gq-cookie-text a:hover {
	text-decoration: underline;
}

.gq-cookie-buttons {
	display: flex;
	gap: 15px;
}

.gq-btn-cookie {
	padding: 10px 20px;
	border-radius: 25px;
	border: none;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.gq-btn-accept {
	background: #43a047;
	color: #ffffff;
}

.gq-btn-accept:hover {
	background: #388e3c;
}

/* Footer */
.gq-footer {
	background: #f9fafb;
	padding: 60px 0 30px;
	border-top: 1px solid #e0e0e0;
}

.gq-footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 50px;
	margin-bottom: 40px;
}

.gq-footer-brand h3 {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #0288d1;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.gq-footer-brand p {
	color: #212121;
	line-height: 1.6;
}

.gq-footer-menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.gq-footer-menu h4 {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.gq-footer-menu ul {
	list-style: none;
}

.gq-footer-menu li {
	margin-bottom: 12px;
}

.gq-footer-menu a {
	color: #212121;
	text-decoration: none;
	transition: color 0.3s ease;
}

.gq-footer-menu a:hover {
	color: #43a047;
}

.gq-footer-contact h4 {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #212121;
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.gq-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	gap: 10px;
}

.gq-contact-item i {
	color: #0288d1;
	width: 20px;
	margin-top: 2px;
}

.gq-contact-item span {
	color: #212121;
	line-height: 1.5;
}

.gq-footer-bottom {
	border-top: 1px solid #e0e0e0;
	padding-top: 30px;
	text-align: center;
	color: #212121;
}

/* Animations */
@keyframes gq-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gq-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes gq-slideInLeft {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

.gq-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.gq-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Tabs */
.gq-tabs {
	margin: 40px 0;
}

.gq-tab-nav {
	display: flex;
	border-bottom: 2px solid #e0e0e0;
	margin-bottom: 30px;
	gap: 10px;
}

.gq-tab-button {
	padding: 15px 25px;
	background: none;
	border: none;
	font-size: 1rem;
	font-weight: 500;
	color: #212121;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	transition: all 0.3s ease;
	position: relative;
}

.gq-tab-button:hover {
	color: #0288d1;
	background: #f5f5f5;
}

.gq-tab-button.active {
	color: #0288d1;
	background: #e3f2fd;
}

.gq-tab-button.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #0288d1;
}

.gq-tab-content {
	display: none;
	animation: gq-fadeIn 0.3s ease;
}

.gq-tab-content.active {
	display: block;
}

/* Accordion */
.gq-accordion {
	margin: 30px 0;
}

.gq-accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 15px;
	margin-bottom: 15px;
	overflow: hidden;
}

.gq-accordion-header {
	background: #f9fafb;
	padding: 20px 25px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.gq-accordion-header:hover {
	background: #f0f0f0;
}

.gq-accordion-header.active {
	background: #e3f2fd;
}

.gq-accordion-title {
	font-weight: 500;
	color: #212121;
	font-size: 1.1rem;
}

.gq-accordion-icon {
	color: #0288d1;
	transition: transform 0.3s ease;
}

.gq-accordion-header.active .gq-accordion-icon {
	transform: rotate(180deg);
}

.gq-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.gq-accordion-content.active {
	max-height: 2000px;
}

.gq-accordion-body {
	padding: 25px;
	background: #ffffff;
	line-height: 1.6;
	color: #212121;
}

/* Carousel */
.gq-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	margin: 40px 0;
}

.gq-carousel-container {
	display: flex;
	transition: transform 0.5s ease;
}

.gq-carousel-slide {
	min-width: 100%;
	position: relative;
}

.gq-carousel-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.gq-carousel-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: #ffffff;
	padding: 40px;
}

.gq-carousel-title {
	font-size: 2rem;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	margin-bottom: 10px;
}

.gq-carousel-description {
	font-size: 1.1rem;
	line-height: 1.5;
}

.gq-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #0288d1;
	transition: all 0.3s ease;
}

.gq-carousel-nav:hover {
	background: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gq-carousel-prev {
	left: 20px;
}

.gq-carousel-next {
	right: 20px;
}

.gq-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.gq-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e0e0e0;
	cursor: pointer;
	transition: background 0.3s ease;
}

.gq-carousel-dot.active {
	background: #0288d1;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.gq-hero-title {
		font-size: 3rem;
	}

	.gq-section-title {
		font-size: 2.2rem;
	}

	.gq-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.gq-footer-content {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.gq-container {
		padding: 0 15px;
	}

	.gq-header {
		width: 95%;
		padding: 12px 20px;
	}

	.gq-nav-menu {
		display: none;
	}

	.gq-burger-menu {
		display: flex;
	}

	.gq-hero {
		padding: 120px 0 80px;
	}

	.gq-hero-title {
		font-size: 2.5rem;
	}

	.gq-hero-subtitle {
		font-size: 1.1rem;
	}

	.gq-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.gq-section {
		padding: 60px 0;
	}

	.gq-section-title {
		font-size: 2rem;
	}

	.gq-grid-2,
	.gq-grid-3,
	.gq-grid-4 {
		grid-template-columns: 1fr;
	}

	.gq-content-section {
		padding: 40px 30px;
		margin: 40px 0;
	}

	.gq-form-section {
		padding: 40px 30px;
	}

	.gq-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.gq-footer-menu {
		grid-template-columns: 1fr;
	}

	.gq-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.gq-tab-nav {
		flex-wrap: wrap;
	}

	.gq-tab-button {
		flex: 1;
		min-width: 120px;
	}

	.gq-carousel-content {
		padding: 20px;
	}

	.gq-carousel-title {
		font-size: 1.5rem;
	}

	.gq-carousel-description {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.gq-hero-title {
		font-size: 1.5rem;
	}

	.gq-hero-subtitle {
		font-size: 1rem;
	}

	.gq-btn {
		min-width: 150px;
		padding: 12px 25px;
	}

	.gq-section-title {
		font-size: 1.5rem;
	}

	.gq-card {
		padding: 20px;
	}

	.gq-testimonial-grid,
	.gq-features-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.gq-tab-nav {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.gq-content-section {
		padding: 30px 20px;
	}

	.gq-grid-2,
	.gq-grid-3,
	.gq-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gq-form-section {
		padding: 30px 20px;
	}

	.gq-testimonial {
		padding: 30px 20px;
	}
}

.gq-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	min-height: 100vh;
}

.gq-legal-content {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

/* Заголовок страницы */
.gq-legal-header {
	background: linear-gradient(135deg, #0288d1 0%, #43a047 100%);
	color: white;
	padding: 3rem 2rem;
	text-align: center;
}

.gq-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gq-legal-meta {
	opacity: 0.95;
}

.gq-legal-company {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.gq-legal-date {
	font-size: 1rem;
	opacity: 0.9;
}

/* Вводный текст */
.gq-legal-intro {
	padding: 2rem;
	background: #f8fafc;
	border-left: 4px solid #0288d1;
	margin: 2rem;
	border-radius: 8px;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Секции */
.gq-legal-section {
	padding: 2rem;
	border-bottom: 1px solid #e5e7eb;
	transition: background-color 0.3s ease;
}

.gq-legal-section:hover {
	background-color: #fafbfc;
}

.gq-legal-section:last-child {
	border-bottom: none;
}

.gq-legal-section-title {
	color: #0288d1;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e3f2fd;
	position: relative;
}

.gq-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 50px;
	height: 2px;
	background: #43a047;
	transition: width 0.3s ease;
}

.gq-legal-section:hover .gq-legal-section-title::before {
	width: 100px;
}

.gq-legal-section-content {
	color: #374151;
	line-height: 1.7;
}

.gq-legal-section-content p {
	margin-bottom: 1rem;
}

.gq-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* Подсекции */
.gq-legal-subsection {
	margin: 1.5rem 0;
	padding: 1.5rem;
	background: #f9fafb;
	border-radius: 8px;
	border-left: 3px solid #43a047;
}

.gq-legal-subsection-title {
	color: #43a047;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Списки */
.gq-legal-list {
	margin: 1rem 0 1rem 1.5rem;
	padding: 0;
}

.gq-legal-list li {
	margin-bottom: 0.8rem;
	line-height: 1.6;
	position: relative;
}

.gq-legal-list li::marker {
	color: #0288d1;
}

.gq-legal-list li strong {
	color: #1f2937;
	font-weight: 600;
}

/* Ссылки */
.gq-legal-link {
	color: #0288d1;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

.gq-legal-link:hover {
	color: #43a047;
	border-bottom-color: #43a047;
}

.gq-legal-link:focus {
	outline: 2px solid #0288d1;
	outline-offset: 2px;
	border-radius: 2px;
}

/* Контактная информация */
.gq-legal-contact {
	background: #f0f9ff;
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid #e0f2fe;
	margin: 1rem 0;
}

.gq-legal-contact p {
	margin-bottom: 0.5rem;
}

.gq-legal-contact p:last-child {
	margin-bottom: 0;
}

/* Таблица cookies */
.gq-legal-table {
	overflow-x: auto;
	margin: 1.5rem 0;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
}

.gq-legal-cookies-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
}

.gq-legal-cookies-table th,
.gq-legal-cookies-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #f3f4f6;
}

.gq-legal-cookies-table th {
	background: #0288d1;
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.gq-legal-cookies-table td {
	font-size: 0.9rem;
	vertical-align: top;
}

.gq-legal-cookies-table tr:nth-child(even) {
	background-color: #f9fafb;
}

.gq-legal-cookies-table tr:hover {
	background-color: #f0f9ff;
}

/* Кнопки управления cookies */
.gq-legal-cookie-control {
	margin: 1.5rem 0;
	text-align: center;
}

.gq-legal-cookie-btn {
	background: #43a047;
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(67, 160, 71, 0.2);
}

.gq-legal-cookie-btn:hover {
	background: #388e3c;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(67, 160, 71, 0.3);
}

.gq-legal-cookie-btn:focus {
	outline: 2px solid #43a047;
	outline-offset: 2px;
}

.gq-legal-cookie-btn:active {
	transform: translateY(0);
}

/* Ресурсы */
.gq-legal-resources {
	background: #fff7ed;
	padding: 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #ff7043;
	margin: 1.5rem 0;
}

.gq-legal-resources h4 {
	color: #ff7043;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

/* Подвал */
.gq-legal-footer {
	background: #f8fafc;
	padding: 2rem;
	border-top: 1px solid #e5e7eb;
	text-align: center;
	color: #6b7280;
}

.gq-legal-footer p {
	margin-bottom: 1rem;
}

.gq-legal-footer p:last-child {
	margin-bottom: 0;
}

.gq-legal-update {
	font-size: 0.9rem;
	font-style: italic;
	color: #9ca3af;
	border-top: 1px solid #e5e7eb;
	padding-top: 1rem;
	margin-top: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
	.gq-legal-header {
		padding: 2rem 1rem;
	}

	.gq-legal-title {
		font-size: 2rem;
	}

	.gq-legal-section {
		padding: 1.5rem 1rem;
	}

	.gq-legal-intro {
		margin: 1rem;
		padding: 1.5rem;
	}

	.gq-legal-section-title {
		font-size: 1.3rem;
	}

	.gq-legal-subsection {
		padding: 1rem;
	}

	.gq-legal-cookies-table {
		font-size: 0.8rem;
	}

	.gq-legal-cookies-table th,
	.gq-legal-cookies-table td {
		padding: 0.5rem;
	}
}

@media (max-width: 480px) {
	.gq-legal-title {
		font-size: 1.3rem;
	}

	.gq-legal-section-title {
		font-size: 1.2rem;
	}

	.gq-legal-list {
		margin-left: 1rem;
	}

	.gq-legal-table {
		font-size: 0.75rem;
	}

	.gq-legal-cookie-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}
}
