* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #f0f0f0;
	background-color: #0d1b2a;
	overflow-x: hidden;
	min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #f0f0f0;
}

h1 {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #00bfff, #39ff14);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #00bfff;
}

h3 {
	font-size: 1.8rem;
	color: #39ff14;
}

h4 {
	font-size: 1.4rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: #f0f0f0;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
}

/* Container and Layout */
.su-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.su-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.su-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

/* Glassmorphism Effect */
.su-glass {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.su-glass-dark {
	background: rgba(13, 27, 42, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 191, 255, 0.2);
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 191, 255, 0.1);
}

/* Header Styles */
.su-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(13, 27, 42, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.su-header.su-scrolled {
	background: rgba(13, 27, 42, 0.98);
	box-shadow: 0 5px 30px rgba(0, 191, 255, 0.1);
}

.su-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.su-logo {
	font-size: 2rem;
	font-weight: 900;
	color: #00bfff;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.su-logo:hover {
	transform: scale(1.05);
	text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.su-logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #00bfff, #39ff14);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d1b2a;
	font-size: 1.2rem;
	animation: su-logo-pulse 2s ease-in-out infinite;
}

@keyframes su-logo-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
	}
	50% {
		box-shadow: 0 0 0 20px rgba(0, 191, 255, 0);
	}
}

.su-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.su-nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
}

.su-nav-link {
	font-weight: 600;
	color: #f0f0f0;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.su-nav-link i {
	font-size: 1rem;
	color: #00bfff;
}

.su-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 191, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.su-nav-link:hover::before {
	left: 100%;
}

.su-nav-link:hover {
	color: #00bfff;
	background: rgba(0, 191, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

/* Button Styles */
.su-btn {
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 1rem;
}

.su-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transition: all 0.5s ease;
	transform: translate(-50%, -50%);
}

.su-btn:hover::before {
	width: 300px;
	height: 300px;
}

.su-btn-primary {
	background: linear-gradient(135deg, #00bfff, #0099cc);
	color: #f0f0f0;
	box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.su-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
	background: linear-gradient(135deg, #0099cc, #00bfff);
}

.su-btn-secondary {
	background: linear-gradient(135deg, #39ff14, #2ecc40);
	color: #0d1b2a;
	box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.su-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

.su-btn-outline {
	background: transparent;
	color: #39ff14;
	border: 2px solid #39ff14;
}

.su-btn-outline:hover {
	background: #39ff14;
	color: #0d1b2a;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

/* Mobile Menu */
.su-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 10px;
	border: none;
	background: none;
}

.su-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #f0f0f0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.su-mobile-toggle.su-active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.su-mobile-toggle.su-active span:nth-child(2) {
	opacity: 0;
}

.su-mobile-toggle.su-active span:nth-child(3) {
	transform: rotate(-45deg) translate(2px, -2px);
}

.su-mobile-menu {
	position: fixed;
	top: 100%;
	right: -100%;
	width: 300px;
	height: calc(100vh - 80px);
	background: rgba(13, 27, 42, 0.95);
	backdrop-filter: blur(20px);
	border-left: 1px solid rgba(0, 191, 255, 0.2);
	transition: right 0.3s ease;
	z-index: 999;
	padding: 2rem;
}

.su-mobile-menu.su-active {
	right: 0;
}

.su-mobile-nav {
	list-style: none;
	margin-bottom: 2rem;
}

.su-mobile-nav li {
	margin-bottom: 1rem;
}

.su-mobile-nav a {
	color: #f0f0f0;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 1rem 0;
	display: block;
	border-bottom: 1px solid rgba(0, 191, 255, 0.1);
	transition: all 0.3s ease;
}

.su-mobile-nav a:hover {
	color: #00bfff;
	transform: translateX(10px);
}

.su-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.su-overlay.su-active {
	opacity: 1;
	visibility: visible;
}

/* Hero Section */
.su-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
			135deg,
			rgba(0, 191, 255, 0.1),
			rgba(57, 255, 20, 0.05)
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(0, 191, 255, 0.1) 0%,
			transparent 50%
		);
	position: relative;
	overflow: hidden;
}

.su-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/su-hero.jpg') center/cover;
	opacity: 0.1;
}

.su-hero-content {
	position: relative;
	z-index: 10;
	animation: su-fade-up 1s ease-out;
}

@keyframes su-fade-up {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.su-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.su-hero-text {
	text-align: center;
}

.su-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	animation: su-title-glow 3s ease-in-out infinite alternate;
}

@keyframes su-title-glow {
	from {
		filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
	}
	to {
		filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.8));
	}
}

.su-hero h2 {
	font-size: 1.5rem;
	color: #f0f0f0;
	margin-bottom: 3rem;
	font-weight: 400;
}

.su-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.su-hero-buttons .su-btn {
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
	animation: su-float 3s ease-in-out infinite;
}

.su-hero-buttons .su-btn:nth-child(2) {
	animation-delay: 0.5s;
}

@keyframes su-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Section Styles */
.su-section-title {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.su-section-title h2 {
	position: relative;
	display: inline-block;
}

.su-section-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
	border-radius: 2px;
}

/* Grid Layouts */
.su-grid {
	display: grid;
	gap: 2rem;
}

.su-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.su-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.su-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Card Styles */
.su-card {
	padding: 2rem;
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.su-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
}

.su-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.su-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #00bfff, #39ff14);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d1b2a;
	font-size: 2rem;
	position: relative;
	overflow: hidden;
}

.su-card-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.su-card:hover .su-card-icon::before {
	transform: translateX(100%);
}

.su-card h3 {
	text-align: center;
	margin-bottom: 1rem;
}

.su-card p {
	text-align: center;
	line-height: 1.6;
}

/* Form Styles */
.su-form {
	max-width: 600px;
	margin: 0 auto;
}

.su-form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.su-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #f0f0f0;
	font-weight: 600;
}

.su-form-input,
.su-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(0, 191, 255, 0.3);
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.05);
	color: #f0f0f0;
	backdrop-filter: blur(8px);
}

.su-form-input::placeholder,
.su-form-textarea::placeholder {
	color: rgba(240, 240, 240, 0.6);
}

.su-form-input:focus,
.su-form-textarea:focus {
	outline: none;
	border-color: #00bfff;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
	transform: translateY(-2px);
}

.su-form-input.su-valid {
	border-color: #39ff14;
}

.su-form-input.su-invalid {
	border-color: #ff6b6b;
}

.su-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.su-form-submit {
	width: 100%;
	margin-top: 1rem;
}

.su-form-submit:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Table Styles */
.su-table-container {
	overflow-x: auto;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

.su-table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(13, 27, 42, 0.8);
	backdrop-filter: blur(8px);
}

.su-table th {
	background: linear-gradient(135deg, #00bfff, #0099cc);
	color: #f0f0f0;
	padding: 1.5rem 1rem;
	text-align: left;
	font-weight: 600;
	font-size: 1.1rem;
}

.su-table td {
	padding: 1.5rem 1rem;
	border-bottom: 1px solid rgba(0, 191, 255, 0.1);
	transition: all 0.3s ease;
}

.su-table tr:hover td {
	background: rgba(0, 191, 255, 0.05);
}

/* Slider/Carousel */
.su-slider {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.su-slider-container {
	display: flex;
	transition: transform 0.5s ease;
}

.su-slider-slide {
	min-width: 100%;
	padding: 2rem;
}

.su-slider-nav {
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
}

.su-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(240, 240, 240, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.su-slider-dot.su-active {
	background: #00bfff;
	transform: scale(1.2);
}

/* Video Styles */
.su-video-container {
	position: relative;
	width: 100%;
	height: 100%;

	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.su-video-container iframe,
.su-video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Image Styles */
.su-image {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
	transition: all 0.3s ease;
	width: 100%;
	object-fit: cover;
	height: 100%;
	transform: scale(1.05);
}

.su-image:hover {
	box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
}

/* Footer */
.su-footer {
	background: linear-gradient(135deg, #0d1b2a, #162b42);
	color: #f0f0f0;
	padding: 4rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.su-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
}

.su-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.su-footer-section h3 {
	color: #39ff14;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.su-footer-links {
	list-style: none;
}

.su-footer-links li {
	margin-bottom: 0.8rem;
}

.su-footer-links a {
	color: #f0f0f0;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.su-footer-links a:hover {
	color: #00bfff;
	transform: translateX(5px);
}

.su-footer-links i {
	color: #00bfff;
	width: 16px;
}

.su-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 191, 255, 0.2);
	color: rgba(240, 240, 240, 0.7);
}

/* Cookie Popup */
.su-cookie-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	max-width: 400px;
	padding: 1.5rem;
	border-radius: 15px;
	z-index: 2000;
	transform: translateX(500px);
	transition: transform 0.5s ease;
}

.su-cookie-popup.su-show {
	transform: translateX(0);
}

.su-cookie-popup h4 {
	color: #39ff14;
	margin-bottom: 1rem;
}

.su-cookie-popup p {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.su-cookie-popup a {
	color: #00bfff;
}

.su-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.su-cookie-buttons .su-btn {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

/* Animations */
.su-animate-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.su-animate-fade.su-visible {
	opacity: 1;
	transform: translateY(0);
}

.su-animate-scale {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.6s ease;
}

.su-animate-scale.su-visible {
	opacity: 1;
	transform: scale(1);
}

.su-animate-slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.6s ease;
}

.su-animate-slide-left.su-visible {
	opacity: 1;
	transform: translateX(0);
}

.su-animate-slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.6s ease;
}

.su-animate-slide-right.su-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Content Sections */
.su-content-section {
	padding: 3rem 0;
}

.su-content-section h2 {
	border-bottom: 2px solid rgba(0, 191, 255, 0.3);
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.su-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	/* align-items: start; */
}

.su-content-grids {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
.su-content-text {
	font-size: 1.1rem;
	line-height: 1.8;
}

.su-content-media {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.su-media-item {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
	width: 100%;
	height: 100%;
	/* max-height: 414px; */
}

.su-media-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 321px;
}

.su-media-caption {
	padding: 1rem;
	background: rgba(13, 27, 42, 0.8);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 191, 255, 0.2);
	border-top: none;
	font-size: 0.9rem;
	color: rgba(240, 240, 240, 0.8);
}

/* List Styles */
.su-list {
	list-style: none;
	padding-left: 0;
}

.su-list li {
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(0, 191, 255, 0.1);
	position: relative;
	padding-left: 2rem;
}

.su-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #39ff14;
	border-radius: 50%;
}

.su-list li:hover {
	background: rgba(0, 191, 255, 0.05);
	padding-left: 2.5rem;
}

/* Map Styles */
.su-map-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
	height: 100%;
}

/* Map Section */
.su-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
	filter: invert(90%) hue-rotate(180deg);
}

@media (max-width: 768px) {
	.su-map {
		height: 400px;
		min-width: auto;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.su-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.su-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;
}

/* Стили для ошибок */

.su-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Contact Info */
.su-contact-info {
	padding: 2rem;
	border-radius: 15px;
	/* margin-bottom: 2rem; */
}

.su-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	border-radius: 10px;
	background: rgba(0, 191, 255, 0.05);
	transition: all 0.3s ease;
}

.su-contact-item:hover {
	background: rgba(0, 191, 255, 0.1);
	transform: translateX(5px);
}

.su-contact-item i {
	color: #00bfff;
	font-size: 1.5rem;
	width: 30px;
	text-align: center;
}

.su-contact-item div h4 {
	color: #39ff14;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.su-contact-item div p {
	margin: 0;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.su-nav-links {
		display: none;
	}

	.su-mobile-toggle {
		display: flex;
	}

	.su-container {
		padding: 0 1rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.su-hero h1 {
		font-size: 3rem;
	}

	.su-hero h2 {
		font-size: 1.2rem;
	}

	.su-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.su-grid-2,
	.su-grid-3,
	.su-grid-4 {
		grid-template-columns: 1fr;
	}

	.su-content-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.su-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.su-cookie-popup.su-show {
		left: 20px;
	}

	.su-video-container {
		height: 400px;
	}

	.su-cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.su-section {
		padding: 60px 0;
	}

	.su-section-title h2 {
		font-size: 1.5rem;
	}

	.su-list-item {
		text-align: center;
	}

	.su-card-icon {
		margin-bottom: 25px !important;
		margin-right: auto !important;
	}

	.su-hero h1 {
		font-size: 2.5rem;
	}

	.su-hero h2 {
		font-size: 1rem;
	}

	.su-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.su-card {
		padding: 1.5rem;
	}

	.su-card-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

/* Utility Classes */
.su-text-center {
	text-align: center;
}
.su-text-left {
	text-align: left;
}
.su-text-right {
	text-align: right;
}

.su-mt-1 {
	margin-top: 0.5rem;
}
.su-mt-2 {
	margin-top: 1rem;
}
.su-mt-3 {
	margin-top: 1.5rem;
}
.su-mt-4 {
	margin-top: 2rem;
}

.su-mb-1 {
	margin-bottom: 0.5rem;
}
.su-mb-2 {
	margin-bottom: 1rem;
}
.su-mb-3 {
	margin-bottom: 1.5rem;
}
.su-mb-4 {
	margin-bottom: 2rem;
}

.su-p-1 {
	padding: 0.5rem;
}
.su-p-2 {
	padding: 1rem;
}
.su-p-3 {
	padding: 1.5rem;
}
.su-p-4 {
	padding: 2rem;
}

.su-hidden {
	display: none;
}
.su-visible {
	opacity: 1;
}

/* Loading Animations */
.su-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(240, 240, 240, 0.3);
	border-top: 3px solid #00bfff;
	border-radius: 50%;
	animation: su-spin 1s linear infinite;
}

@keyframes su-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Success/Error States */
.su-success {
	background: linear-gradient(135deg, #39ff14, #2ecc40);
	color: #0d1b2a;
	padding: 1rem;
	border-radius: 10px;
	text-align: center;
	margin: 1rem 0;
	font-weight: 600;
}

.su-error {
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	color: #f0f0f0;
	padding: 1rem;
	border-radius: 10px;
	text-align: center;
	margin: 1rem 0;
	font-weight: 600;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #0d1b2a;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #00bfff, #39ff14);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #0099cc, #2ecc40);
}

/* Print Styles */
@media print {
	.su-header,
	.su-footer,
	.su-cookie-popup,
	.su-btn {
		display: none !important;
	}

	body {
		background: white !important;
		color: black !important;
	}

	.su-section {
		padding: 20px 0 !important;
	}
}

.su-page-header {
	padding: 120px 0 60px;
	text-align: center;
	background: linear-gradient(
		135deg,
		rgba(0, 191, 255, 0.1),
		rgba(57, 255, 20, 0.05)
	);
	position: relative;
	overflow: hidden;
}

.su-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2300BFFF" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
	animation: su-grid-float 15s ease-in-out infinite;
}

.su-page-header h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 10;
}

.su-page-header p {
	font-size: 1.3rem;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.su-contact-section {
	padding: 80px 0;
	background: linear-gradient(
		135deg,
		rgba(13, 27, 42, 0.95),
		rgba(26, 44, 63, 0.98)
	);
}

.su-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	height: 100%;
	margin-bottom: 4rem;
}

.su-contact-form-container {
	padding: 3rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.su-contact-form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
}

.su-contact-form-container h2 {
	color: #00bfff;
	margin-bottom: 1rem;
	font-size: 2rem;
}

.su-contact-form-container p {
	margin-bottom: 2rem;
	color: rgba(240, 240, 240, 0.8);
}

.su-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.su-form-group {
	position: relative;
}

.su-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #f0f0f0;
	font-weight: 600;
	font-size: 0.95rem;
}

.su-form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300BFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1rem;
	padding-right: 3rem;
}

.su-contact-info-container {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 2rem;
}

.su-contact-info {
	padding: 2.5rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.su-contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #39ff14, #00bfff);
}

.su-contact-info h2 {
	color: #39ff14;
	margin-bottom: 2rem;
	font-size: 1.8rem;
}

.su-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: rgba(0, 191, 255, 0.05);
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 191, 255, 0.1);
}

.su-contact-item:hover {
	background: rgba(0, 191, 255, 0.1);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.su-contact-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.5rem;
	font-size: 1.5rem;
	color: #0d1b2a;
	box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
	flex-shrink: 0;
}

.su-contact-details h4 {
	color: #39ff14;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.su-contact-details p {
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.su-contact-details a {
	color: #00bfff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.su-contact-details a:hover {
	color: #39ff14;
	text-decoration: underline;
}

.su-contact-details small {
	color: rgba(240, 240, 240, 0.6);
	font-size: 0.85rem;
}

.su-social-media {
	padding: 2rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.su-social-media::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #39ff14, #00bfff);
}

.su-social-media h3 {
	color: #00bfff;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.su-social-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.su-social-link {
	display: flex;
	align-items: center;
	padding: 1rem;
	background: rgba(57, 255, 20, 0.05);
	border: 1px solid rgba(57, 255, 20, 0.2);
	border-radius: 10px;
	color: #f0f0f0;
	text-decoration: none;
	transition: all 0.3s ease;
}

.su-social-link:hover {
	background: rgba(57, 255, 20, 0.1);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
}

.su-social-link i {
	font-size: 1.5rem;
	margin-right: 0.8rem;
	color: #39ff14;
}

.su-social-link span {
	font-weight: 600;
}

.su-map-section {
	margin-top: 4rem;
	text-align: center;
}

.su-map-section h2 {
	color: #00bfff;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.su-map-description {
	max-width: 600px;
	margin: 0 auto;
	color: rgba(240, 240, 240, 0.8);
	line-height: 1.6;
	font-size: 1.1rem;
}

.su-faq-section {
	padding: 80px 0;
	background: linear-gradient(
		135deg,
		rgba(57, 255, 20, 0.05),
		rgba(0, 191, 255, 0.05)
	);
}

.su-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.su-faq-item {
	padding: 2rem;
	transition: all 0.3s ease;
}

.su-faq-item:hover {
	transform: translateY(-5px);
}

.su-faq-item h3 {
	color: #00bfff;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.su-faq-item p {
	line-height: 1.6;
	color: rgba(240, 240, 240, 0.9);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
	.su-page-header h1 {
		font-size: 2.5rem;
	}

	.su-page-header p {
		font-size: 1.1rem;
	}

	.su-contact-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 2rem;
	}

	.su-logo {
		font-size: 1.5rem;
	}

	.su-contact-form-container,
	.su-contact-info {
		padding: 2rem;
	}

	.su-contact-icon {
		margin-right: 0;
		margin-bottom: 1rem;
	}

	.su-social-links {
		grid-template-columns: 1fr;
	}

	.su-faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.su-page-header {
		padding: 100px 0 40px;
	}

	.su-page-header h1 {
		font-size: 2rem;
	}

	h1 {
		font-size: 1.8rem;
	}

	.su-contact-form-container,
	.su-contact-info,
	.su-social-media {
		padding: 1.5rem;
	}

	.su-faq-item {
		padding: 1.5rem;
	}
}

.su-policy-page {
	padding: 120px 0 60px;
	background: linear-gradient(
		135deg,
		rgba(13, 27, 42, 0.95),
		rgba(26, 44, 63, 0.98)
	);
	min-height: 100vh;
}

.su-policy-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.su-policy-header::before {
	content: '';
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 5px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
	border-radius: 3px;
}

.su-policy-header h1 {
	font-size: 3rem;
	color: #00bfff;
	margin-bottom: 1rem;
	font-weight: 800;
	text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.su-policy-date {
	color: rgba(240, 240, 240, 0.7);
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 0;
}

.su-policy-content {
	background: rgba(13, 27, 42, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 191, 255, 0.2);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 15px 40px rgba(0, 191, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.su-policy-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
}

.su-policy-section {
	margin-bottom: 3rem;
	position: relative;
}

.su-policy-section:last-child {
	margin-bottom: 0;
}

.su-policy-section h2 {
	color: #39ff14;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	position: relative;
	padding-left: 2rem;
}

.su-policy-section h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #00bfff;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.su-policy-section h2::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #39ff14, transparent);
	border-radius: 1px;
}

.su-policy-section p {
	color: #f0f0f0;
	line-height: 1.7;
	margin-bottom: 1.2rem;
	font-size: 1rem;
	text-align: justify;
}

.su-policy-section ul {
	list-style: none;
	padding-left: 0;
	margin: 1.5rem 0;
}

.su-policy-section li {
	position: relative;
	padding: 0.8rem 0 0.8rem 2rem;
	color: #f0f0f0;
	line-height: 1.6;
	border-bottom: 1px solid rgba(0, 191, 255, 0.1);
	transition: all 0.3s ease;
}

.su-policy-section li:last-child {
	border-bottom: none;
}

.su-policy-section li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: #00bfff;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.su-policy-section li:hover {
	background: rgba(0, 191, 255, 0.05);
	padding-left: 2.5rem;
	border-radius: 5px;
}

.su-policy-section li:hover::before {
	background: #39ff14;
	transform: translateY(-50%) scale(1.2);
	box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.su-policy-section strong {
	color: #00bfff;
	font-weight: 600;
}

.su-contact-block {
	background: rgba(0, 191, 255, 0.1);
	border: 1px solid rgba(0, 191, 255, 0.3);
	border-radius: 15px;
	padding: 2rem;
	margin: 2rem 0;
	position: relative;
	overflow: hidden;
}

.su-contact-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #00bfff, #39ff14);
}

.su-contact-block p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.su-contact-block i {
	color: #39ff14;
	width: 20px;
	text-align: center;
	font-size: 1.1rem;
}

.su-contact-block a {
	color: #00bfff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.su-contact-block a:hover {
	color: #39ff14;
	text-decoration: underline;
}

.su-contact-block strong {
	color: #39ff14;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	display: block;
}

/* Policy Pages Mobile Responsiveness */
@media (max-width: 768px) {
	.su-policy-page {
		padding: 100px 0 40px;
	}

	.su-policy-header h1 {
		font-size: 2.5rem;
	}

	.su-policy-content {
		padding: 2rem;
	}

	.su-policy-section h2 {
		font-size: 1.5rem;
		padding-left: 1.5rem;
	}

	.su-policy-section p {
		text-align: left;
		font-size: 0.95rem;
	}

	.su-policy-section li {
		padding-left: 1.5rem;
	}

	.su-contact-block {
		padding: 1.5rem;
		margin: 1.5rem 0;
	}

	.su-contact-block p {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.3rem;
	}

	.su-contact-block i {
		margin-right: 0.5rem;
	}
}

@media (max-width: 480px) {
	.su-policy-header h1 {
		font-size: 1.5rem;
	}

	.su-policy-date {
		font-size: 1rem;
	}

	.su-policy-content {
		padding: 1.5rem;
	}

	.su-policy-section {
		margin-bottom: 2rem;
	}

	.su-policy-section h2 {
		font-size: 1.3rem;
		padding-left: 1rem;
	}

	.su-policy-section li {
		padding: 0.6rem 0 0.6rem 1rem;
	}

	.su-contact-block {
		padding: 1rem;
	}
}

/* Policy Pages Print Styles */
@media print {
	.su-policy-page {
		background: white !important;
		color: black !important;
	}

	.su-policy-content {
		background: white !important;
		border: none !important;
		box-shadow: none !important;
	}

	.su-policy-header h1,
	.su-policy-section h2,
	.su-policy-section strong {
		color: black !important;
	}

	.su-policy-section p,
	.su-policy-section li {
		color: black !important;
	}

	.su-contact-block {
		background: #f5f5f5 !important;
		border: 1px solid #ccc !important;
	}

	.su-header,
	.su-footer,
	.su-cookie-popup {
		display: none !important;
	}
}
