@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Merriweather:wght@300;400;600;700&display=swap');

/* ========== CSS RESET & BASE ========== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #212121;
	background-color: #fdfdfd;
	overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
.sw-heading-primary {
	font-family: 'Merriweather', serif;
	font-weight: 600;
	color: #1976d2;
	margin-bottom: 1rem;
}

.sw-heading-secondary {
	font-family: 'Merriweather', serif;
	font-weight: 600;
	color: #212121;
	margin-bottom: 0.75rem;
}

.sw-text-primary {
	color: #212121;
	line-height: 1.7;
}

.sw-text-accent {
	color: #1976d2;
}

.sw-text-secondary {
	color: #666666;
	font-size: 0.95rem;
}

/* ========== CONTAINER & LAYOUT ========== */
.sw-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.sw-container-fluid {
	width: 100%;
	padding: 0 20px;
}

.sw-section {
	padding: 80px 0;
}

.sw-section-small {
	padding: 60px 0;
}

.sw-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

/* ========== HEADER ========== */
.sw-header {
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 3px solid #1976d2;
}

.sw-header.sw-scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sw-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
	min-height: 70px;
}

.sw-logo {
	font-family: 'Merriweather', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1976d2;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sw-logo:hover {
	color: #ff9800;
	transform: translateY(-2px);
}

.sw-nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.sw-nav-item {
	position: relative;
}

.sw-nav-link {
	text-decoration: none;
	color: #212121;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sw-nav-link:hover,
.sw-nav-link.sw-active {
	color: #ffffff;
	background: linear-gradient(135deg, #1976d2, #ff9800);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.sw-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #1976d2;
	cursor: pointer;
	padding: 5px;
}

/* Mobile Menu */
.sw-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #ffffff;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	padding: 80px 20px 20px;
	transition: right 0.3s ease;
	z-index: 999;
}

.sw-mobile-menu.sw-active {
	right: 0;
}

.sw-mobile-nav {
	list-style: none;
}

.sw-mobile-nav .sw-nav-item {
	margin-bottom: 10px;
}

.sw-mobile-nav .sw-nav-link {
	display: block;
	padding: 15px 20px;
	border-radius: 10px;
	margin-bottom: 5px;
}

.sw-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 998;
}

.sw-overlay.sw-active {
	opacity: 1;
	visibility: visible;
}

/* ========== BUTTONS ========== */
.sw-btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
}

.sw-btn-primary {
	background: linear-gradient(135deg, #1976d2, #42a5f5);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.sw-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(25, 118, 210, 0.4);
}

.sw-btn-secondary {
	background: linear-gradient(135deg, #ff9800, #ffb74d);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.sw-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
}

.sw-btn-outline {
	background: transparent;
	color: #1976d2;
	border: 2px solid #1976d2;
}

.sw-btn-outline:hover {
	background: #1976d2;
	color: #ffffff;
	transform: translateY(-2px);
}

.sw-btn-large {
	padding: 15px 40px;
	font-size: 1.1rem;
}

/* ========== HERO SECTION ========== */
.sw-hero {
	background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 100%);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.sw-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/sw-hero.webp') center/cover;
	opacity: 0.3;
}

.sw-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.sw-hero h1 {
	font-size: 3.2rem;
	margin-bottom: 1.5rem;
	font-family: 'Merriweather', serif;
	font-weight: 700;
	color: #1976d2;
	line-height: 1.2;
}

.sw-hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: #666666;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.sw-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.sw-hero-image {
	margin-top: 3rem;
	text-align: center;
}

.sw-hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ========== CARDS ========== */
.sw-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	height: 100%;
	display: flex !important;
	flex-direction: column;
	height: 100%;
}

.sw-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sw-card-header {
	margin-bottom: 20px;
}

.sw-card-title {
	font-family: 'Merriweather', serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: #1976d2;
	margin-bottom: 10px;
}

.sw-card-subtitle {
	color: #666666;
	font-size: 0.95rem;
	margin-bottom: 15px;
}

.sw-card-body {
	margin-bottom: 20px;
}

.sw-card-text {
	line-height: 1.6;
	color: #555555;
}

.sw-card-footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;

	padding-top: 20px;
	flex-grow: 1;
}

.sw-card-footer a {
	margin-top: auto;
}

.sw-card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 20px;
}

/* Card Grid */
.sw-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.sw-cards-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sw-cards-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== SECTIONS ========== */
.sw-section-bg {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.sw-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.sw-section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-family: 'Merriweather', serif;
	color: #1976d2;
}

.sw-section-title p {
	font-size: 1.1rem;
	color: #666666;
	max-width: 600px;
	margin: 0 auto;
}

.sw-section-content {
	margin-top: 2rem;
}

/* ========== TESTIMONIALS ========== */
.sw-testimonial {
	background: #ffffff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	text-align: center;
	border-left: 4px solid #ff9800;
	transition: all 0.3s ease;
}

.sw-testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sw-testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	border: 4px solid #1976d2;
}

.sw-testimonial-text {
	font-style: italic;
	font-size: 1.1rem;
	color: #555555;
	margin-bottom: 20px;
	line-height: 1.6;
}

.sw-testimonial-author {
	font-weight: 600;
	color: #1976d2;
	margin-bottom: 5px;
}

.sw-testimonial-role {
	color: #666666;
	font-size: 0.9rem;
}

/* ========== FORMS ========== */
.sw-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
}

.sw-form-group {
	margin-bottom: 25px;
}

.sw-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #212121;
}

.sw-form-input,
.sw-form-textarea,
.sw-form-select {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
	transition: all 0.3s ease;
	background: #ffffff;
}

.sw-form-input:focus,
.sw-form-textarea:focus,
.sw-form-select:focus {
	outline: none;
	border-color: #1976d2;
	box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.sw-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.sw-form-error {
	color: #f44336;
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.sw-form-success {
	color: #388e3c;
	font-size: 0.85rem;
	margin-top: 5px;
	display: none;
}

.sw-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.sw-checkbox {
	width: 18px;
	height: 18px;
	margin-top: 3px;
}

.sw-checkbox-label {
	font-size: 0.9rem;
	line-height: 1.4;
	color: #555555;
}

/* ========== MAP SECTION ========== */
.sw-map-container {
	background: #ffffff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
}

/* Map Section */
.sw-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.sw-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.sw-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.sw-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 ========== */
.sw-footer {
	background: #f5f5f5;
	padding: 60px 0 20px;
	margin-top: 80px;
	border-top: 1px solid #e0e0e0;
}

.sw-footer-content {
	margin-bottom: 40px;
}

.sw-footer-content .sw-row {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.sw-footer-section {
	margin-bottom: 40px;
}

.sw-footer-title {
	font-family: 'Merriweather', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #1976d2;
	margin-bottom: 20px;
}

.sw-footer-text {
	color: #666666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.sw-footer-menu {
	list-style: none;
}

.sw-footer-menu li {
	margin-bottom: 10px;
}

.sw-footer-menu a {
	color: #666666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.sw-footer-menu a:hover {
	color: #1976d2;
}

.sw-contact-info {
	list-style: none;
}

.sw-contact-info li {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.sw-contact-info i {
	color: #1976d2;
	width: 18px;
	margin-top: 2px;
}

.sw-footer-bottom {
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
	text-align: center;
	color: #666666;
	font-size: 0.9rem;
}

/* ========== UTILITIES ========== */
.sw-text-center {
	text-align: center;
}
.sw-text-left {
	text-align: left;
}
.sw-text-right {
	text-align: right;
}

.sw-mt-1 {
	margin-top: 0.5rem;
}
.sw-mt-2 {
	margin-top: 1rem;
}
.sw-mt-3 {
	margin-top: 1.5rem;
}
.sw-mt-4 {
	margin-top: 2rem;
}
.sw-mt-5 {
	margin-top: 3rem;
}

.sw-mb-1 {
	margin-bottom: 0.5rem;
}
.sw-mb-2 {
	margin-bottom: 1rem;
}
.sw-mb-3 {
	margin-bottom: 1.5rem;
}
.sw-mb-4 {
	margin-bottom: 2rem;
}
.sw-mb-5 {
	margin-bottom: 3rem;
}

.sw-p-1 {
	padding: 0.5rem;
}
.sw-p-2 {
	padding: 1rem;
}
.sw-p-3 {
	padding: 1.5rem;
}
.sw-p-4 {
	padding: 2rem;
}
.sw-p-5 {
	padding: 3rem;
}

.sw-hidden {
	display: none;
}
.sw-visible {
	display: block;
}

.sw-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.sw-fade-in.sw-visible {
	opacity: 1;
	transform: translateY(0);
}

.sw-slide-up {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.sw-slide-up.sw-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========== COOKIE POPUP ========== */
.sw-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	padding: 20px;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	border-top: 3px solid #1976d2;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.sw-cookie-popup.sw-active {
	transform: translateY(0);
}

.sw-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 20px;
}

.sw-cookie-text {
	color: #666666;
	font-size: 0.9rem;
}

.sw-cookie-text a {
	color: #1976d2;
	text-decoration: none;
}

.sw-cookie-text a:hover {
	text-decoration: underline;
}

.sw-cookie-buttons {
	display: flex;
	gap: 10px;
}

.sw-btn-cookie {
	padding: 8px 20px;
	font-size: 0.9rem;
	border-radius: 20px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sw-btn-accept {
	background: #1976d2;
	color: #ffffff;
}

.sw-btn-accept:hover {
	background: #1565c0;
}

/* ========== ANIMATIONS ========== */
@keyframes sw-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sw-slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes sw-bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.sw-animate-fadeInUp {
	animation: sw-fadeInUp 0.6s ease forwards;
}

.sw-animate-slideInRight {
	animation: sw-slideInRight 0.6s ease forwards;
}

.sw-animate-bounce {
	animation: sw-bounce 2s infinite;
}

/* ========== LOADING STATES ========== */
.sw-loading {
	opacity: 0.7;
	pointer-events: none;
}

.sw-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #e0e0e0;
	border-top: 2px solid #1976d2;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: inline-block;
	margin-right: 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
	background: #1976d2;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #1565c0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1199px) {
	.sw-container {
		max-width: 960px;
	}

	.sw-hero h1 {
		font-size: 2.8rem;
	}

	.sw-section-title h2 {
		font-size: 2.2rem;
	}
}

@media (max-width: 991px) {
	.sw-container {
		max-width: 720px;
	}

	.sw-nav-menu {
		display: none;
	}

	.sw-mobile-toggle {
		display: block;
	}

	.sw-hero h1 {
		font-size: 2.5rem;
	}

	.sw-hero p {
		font-size: 1.2rem;
	}

	.sw-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.sw-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}

	.sw-section {
		padding: 60px 0;
	}

	.sw-cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.sw-container,
	.sw-container-fluid {
		padding: 0 15px;
	}

	.sw-hero {
		padding: 100px 0 60px;
	}

	.sw-hero h1 {
		font-size: 2.2rem;
	}

	.sw-hero p {
		font-size: 1.1rem;
	}

	.sw-section-title h2 {
		font-size: 2rem;
	}

	.sw-card {
		padding: 25px;
	}

	.sw-form {
		padding: 30px 20px;
	}

	.sw-footer-section {
		margin-bottom: 30px;
	}
	.sw-row {
		grid-template-columns: 1fr;
	}
	.sw-col-6,
	.sw-col-4,
	.sw-col-3 {
		flex: 0 0 100%;
	}

	.sw-testimonial {
		padding: 30px 20px;
	}
}

@media (max-width: 575px) {
	.sw-hero h1 {
		font-size: 1.9rem;
	}

	.sw-btn {
		padding: 10px 25px;
		font-size: 0.9rem;
	}

	.sw-btn-large {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.sw-cards-grid {
		grid-template-columns: 1fr;
	}

	.sw-mobile-menu {
		width: 280px;
	}

	.sw-navbar {
		padding: 10px 0;
	}
	.sw-section-title h2 {
		font-size: 1.5rem;
	}

	.sw-logo {
		font-size: 1.5rem;
	}

	.sw-footer-content .sw-row {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

:root {
	--sw-legal-bg-primary: #fdfdfd;
	--sw-legal-bg-secondary: #ffffff;
	--sw-legal-accent-blue: #1976d2;
	--sw-legal-accent-amber: #ff9800;
	--sw-legal-accent-green: #388e3c;
	--sw-legal-text-primary: #212121;
	--sw-legal-text-secondary: #757575;
	--sw-legal-border: #e0e0e0;
	--sw-legal-shadow: rgba(0, 0, 0, 0.05);
	--sw-legal-shadow-hover: rgba(0, 0, 0, 0.1);
}

.sw-legal-main {
	min-height: 100vh;
	padding: 120px 20px;
	background: linear-gradient(
		135deg,
		var(--sw-legal-bg-primary) 0%,
		#f8f9fa 100%
	);
}

.sw-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	background: var(--sw-legal-bg-secondary);
	border-radius: 16px;
	box-shadow: 0 4px 24px var(--sw-legal-shadow);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.sw-legal-container:hover {
	box-shadow: 0 8px 32px var(--sw-legal-shadow-hover);
}

/* Заголовочная часть */
.sw-legal-header {
	background: linear-gradient(
		135deg,
		var(--sw-legal-accent-blue) 0%,
		#1565c0 100%
	);
	color: white;
	padding: 3rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sw-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
		repeat;
	opacity: 0.3;
}

.sw-legal-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.sw-legal-company-info {
	position: relative;
	z-index: 1;
}

.sw-legal-company-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	opacity: 0.95;
}

.sw-legal-update-date {
	font-size: 0.95rem;
	opacity: 0.8;
	font-style: italic;
}

/* Основной контент */
.sw-legal-content {
	padding: 3rem 2rem;
}

.sw-legal-section {
	margin-bottom: 3rem;
	background: var(--sw-legal-bg-secondary);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--sw-legal-border);
	box-shadow: 0 2px 8px var(--sw-legal-shadow);
	transition: all 0.3s ease;
	position: relative;
}

.sw-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px var(--sw-legal-shadow-hover);
	border-color: var(--sw-legal-accent-blue);
}

.sw-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(
		to bottom,
		var(--sw-legal-accent-blue),
		var(--sw-legal-accent-green)
	);
	border-radius: 0 2px 2px 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sw-legal-section:hover::before {
	opacity: 1;
}

.sw-legal-section-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--sw-legal-accent-blue);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--sw-legal-border);
	position: relative;
}

.sw-legal-section-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(
		to right,
		var(--sw-legal-accent-amber),
		var(--sw-legal-accent-green)
	);
	transition: width 0.3s ease;
}

.sw-legal-section:hover .sw-legal-section-title::after {
	width: 120px;
}

.sw-legal-section-content {
	font-size: 1.05rem;
	line-height: 1.8;
}

.sw-legal-section-content p {
	margin-bottom: 1.25rem;
	color: var(--sw-legal-text-primary);
}

.sw-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* Списки */
.sw-legal-list {
	margin: 1.5rem 0;
	padding-left: 0;
	list-style: none;
}

.sw-legal-list li {
	margin-bottom: 0.75rem;
	padding-left: 2rem;
	position: relative;
	line-height: 1.7;
}

.sw-legal-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 8px;
	height: 8px;
	background: linear-gradient(
		135deg,
		var(--sw-legal-accent-amber) 0%,
		var(--sw-legal-accent-green) 100%
	);
	border-radius: 50%;
	transform: scale(0.8);
	transition: transform 0.2s ease;
}

.sw-legal-list li:hover::before {
	transform: scale(1.2);
}

.sw-legal-list li strong {
	color: var(--sw-legal-accent-blue);
	font-weight: 600;
}

/* Контактная информация */
.sw-legal-contact-info {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 12px;
	padding: 2.5rem;
	margin-top: 3rem;
	border: 1px solid var(--sw-legal-border);
	text-align: center;
}

.sw-legal-contact-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--sw-legal-accent-blue);
	margin-bottom: 1.5rem;
	position: relative;
}

.sw-legal-contact-title::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(
		to right,
		var(--sw-legal-accent-amber),
		var(--sw-legal-accent-green)
	);
	border-radius: 2px;
}

.sw-legal-contact-details p {
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
	color: var(--sw-legal-text-primary);
}

.sw-legal-contact-details p:first-child {
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--sw-legal-accent-blue);
	margin-bottom: 1rem;
}

/* Ссылки */
.sw-legal-link {
	color: var(--sw-legal-accent-blue);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.sw-legal-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		to right,
		var(--sw-legal-accent-amber),
		var(--sw-legal-accent-green)
	);
	transition: width 0.3s ease;
}

.sw-legal-link:hover {
	color: var(--sw-legal-accent-amber);
	transform: translateY(-1px);
}

.sw-legal-link:hover::after {
	width: 100%;
}

/* Адаптивный дизайн */
@media (max-width: 768px) {
	.sw-legal-header {
		padding: 2rem 1.5rem;
	}

	.sw-legal-title {
		font-size: 2rem;
	}

	.sw-legal-content {
		padding: 2rem 1.5rem;
	}

	.sw-legal-section {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.sw-legal-section-title {
		font-size: 1.5rem;
	}

	.sw-legal-section-content {
		font-size: 1rem;
	}

	.sw-legal-contact-info {
		padding: 1.5rem;
	}

	.sw-legal-list li {
		padding-left: 1.5rem;
	}
}

@media (max-width: 480px) {
	.sw-legal-header {
		padding: 1.5rem 1rem;
	}

	.sw-legal-title {
		font-size: 1.2rem;
	}

	.sw-legal-content {
		padding: 1.5rem 1rem;
	}

	.sw-legal-section {
		padding: 1rem;
	}

	.sw-legal-contact-info {
		padding: 1rem;
	}

	.sw-legal-section-title {
		font-size: 1.1rem;
		word-wrap: break-word;
	}
}
