* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #f9fafb;
	background-color: #121212;
	overflow-x: hidden;
}

/* ===== ТИПОГРАФИЯ ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: #f9fafb;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: #f9fafb;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #f9fafb;
}

p {
	margin-bottom: 1rem;
	color: #f9fafb;
}

a {
	color: #3b82f6;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #eab308;
	text-decoration: underline;
}

/* ===== LAYOUT И КОНТЕЙНЕРЫ ===== */
.rs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.rs-section {
	padding: 5rem 0;
	position: relative;
}

.rs-grid {
	display: grid;
	gap: 2rem;
}

.rs-grid-1 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.rs-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.rs-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.rs-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.rs-flex {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rs-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rs-flex-column {
	display: flex;
	flex-direction: column;
}

/* ===== HEADER СТИЛИ ===== */
.rs-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(18, 18, 18, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(249, 250, 251, 0.1);
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.rs-header.rs-scrolled {
	background: rgba(18, 18, 18, 0.95);
	padding: 0.5rem 0;
}

.rs-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rs-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #f9fafb;
	text-decoration: none;
	transition: all 0.3s ease;
}

.rs-logo:hover {
	color: #eab308;
	text-decoration: none;
}

.rs-logo-icon {
	margin-right: 0.5rem;
	font-size: 1.8rem;
	color: #eab308;
}

.rs-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.rs-menu-item {
	position: relative;
}

.rs-menu-link {
	color: #f9fafb;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rs-menu-link:hover {
	color: #eab308;
	background: rgba(234, 179, 8, 0.1);
	text-decoration: none;
}

.rs-menu-link.rs-active {
	color: #eab308;
	background: rgba(234, 179, 8, 0.2);
}

/* Мобильное меню */
.rs-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
}

.rs-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #f9fafb;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 3px;
}

@media (max-width: 768px) {
	.rs-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(18, 18, 18, 0.98);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 3rem;
		transition: right 0.3s ease;
		backdrop-filter: blur(20px);
	}

	.rs-menu.rs-active {
		right: 0;
		gap: 3rem;
	}

	.rs-menu-toggle {
		display: flex;
	}

	.rs-menu-toggle.rs-active span:nth-child(1) {
		transform: rotate(-45deg) translate(-7px, 7px);
	}

	.rs-menu-toggle.rs-active span:nth-child(2) {
		opacity: 0;
	}

	.rs-menu-toggle.rs-active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}
}

/* ===== HERO СЕКЦИЯ ===== */
.rs-hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #121212 0%, #1e1e2e 100%);
}

.rs-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/rs-hero.webp') center/cover;
	/* opacity: 0.5; */
	z-index: 1;
}

.rs-hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(18, 18, 18, 0.8),
		rgba(30, 30, 46, 0.9)
	);
	z-index: 2;
}

.rs-hero-content {
	text-align: center;
	z-index: 3;
	position: relative;
	max-width: 800px;
	padding: 0 2rem;
}

.rs-hero-title {
	font-size: clamp(3rem, 6vw, 5rem);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #f9fafb, #eab308);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: rs-fadeInUp 1s ease-out;
}

.rs-hero-subtitle {
	font-size: clamp(1.2rem, 2.5vw, 1.8rem);
	margin-bottom: 3rem;
	color: rgba(249, 250, 251, 0.9);
	animation: rs-fadeInUp 1s ease-out 0.2s both;
}

.rs-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: rs-fadeInUp 1s ease-out 0.4s both;
}

/* ===== КНОПКИ ===== */
.rs-btn {
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 0.75rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rs-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.rs-btn:hover::before {
	left: 100%;
}

.rs-btn-primary {
	background: linear-gradient(135deg, #eab308, #f59e0b);
	color: #000;
	box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3);
}

.rs-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(234, 179, 8, 0.4);
	color: #000;
	text-decoration: none;
}

.rs-btn-secondary {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	color: #f9fafb;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.rs-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
	color: #f9fafb;
	text-decoration: none;
}

.rs-btn-outline {
	background: transparent;
	color: #f9fafb;
	border: 2px solid rgba(249, 250, 251, 0.3);
}

.rs-btn-outline:hover {
	background: rgba(249, 250, 251, 0.1);
	border-color: #eab308;
	color: #eab308;
	text-decoration: none;
}

/* ===== КАРТОЧКИ ===== */
.rs-card {
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rs-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(234, 179, 8, 0.1),
		rgba(59, 130, 246, 0.1)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.rs-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border-color: rgba(234, 179, 8, 0.3);
}

.rs-card:hover::before {
	opacity: 1;
}

.rs-card-content {
	position: relative;
	z-index: 1;
}

.rs-card-icon {
	font-size: 3rem;
	color: #eab308;
	margin-bottom: 1rem;
	display: block;
}

.rs-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #f9fafb;
}

.rs-card-text {
	color: rgba(249, 250, 251, 0.8);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* ===== TIMELINE СТИЛИ ===== */
.rs-timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.rs-timeline::after {
	content: '';
	position: absolute;
	width: 4px;
	background: linear-gradient(180deg, #eab308, #3b82f6);
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
	border-radius: 2px;
}

.rs-timeline-item {
	padding: 2rem 0;
	position: relative;
	width: 50%;
	animation: rs-slideInUp 0.8s ease-out;
}

.rs-timeline-item::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: #eab308;
	border: 4px solid #1e1e2e;
	border-radius: 50%;
	z-index: 1;
	top: 60px;
}

.rs-timeline-item:nth-child(odd) {
	left: 0;
	padding-right: 3rem;
}

.rs-timeline-item:nth-child(odd)::after {
	right: -14px;
}

.rs-timeline-item:nth-child(even) {
	left: 50%;
	padding-left: 3rem;
}

.rs-timeline-item:nth-child(even)::after {
	left: -12px;
}

.rs-timeline-content {
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
	position: relative;
}

.rs-timeline-content::before {
	content: '';
	position: absolute;
	top: 2rem;
	width: 0;
	height: 0;
	border: 10px solid transparent;
}

.rs-timeline-item:nth-child(odd) .rs-timeline-content::before {
	right: -20px;
	border-left-color: #1e1e2e;
}

.rs-timeline-item:nth-child(even) .rs-timeline-content::before {
	left: -20px;
	border-right-color: #1e1e2e;
}

.rs-timeline-year {
	color: #eab308;
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.rs-timeline-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #f9fafb;
}

.rs-timeline-text {
	color: rgba(249, 250, 251, 0.8);
	line-height: 1.6;
}

@media (max-width: 768px) {
	.rs-timeline::after {
		left: 31px;
	}

	.rs-timeline-item {
		width: 100%;
		padding-left: 4rem;
		padding-right: 0;
	}

	.rs-timeline-item::after {
		left: 21px;
	}

	.rs-timeline-content::before {
		left: -20px !important;
		border-right-color: #1e1e2e !important;
		border-left-color: transparent !important;
	}
}

/* ===== КАРУСЕЛЬ ===== */
.rs-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
}

.rs-carousel-container {
	display: flex;
	transition: transform 0.5s ease;
}

.rs-carousel-slide {
	min-width: 100%;
	position: relative;
}

.rs-carousel-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 1rem;
}

.rs-carousel-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(18, 18, 18, 0.9));
	padding: 3rem 2rem 2rem;
	color: #f9fafb;
	border-radius: 0 0 1rem 1rem;
}

.rs-carousel-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.rs-carousel-text {
	color: rgba(249, 250, 251, 0.8);
	line-height: 1.6;
}

.rs-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(18, 18, 18, 0.8);
	color: #f9fafb;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.rs-carousel-nav:hover {
	background: rgba(234, 179, 8, 0.8);
	color: #000;
}

.rs-carousel-prev {
	left: 1rem;
}

.rs-carousel-next {
	right: 1rem;
}

.rs-carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.rs-carousel-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(249, 250, 251, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.rs-carousel-indicator.rs-active {
	background: #eab308;
	transform: scale(1.2);
}

/* ===== ФИЛЬТР СТАТЕЙ ===== */
.rs-filter {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}

.rs-filter-btn {
	padding: 0.75rem 1.5rem;
	background: transparent;
	color: rgba(249, 250, 251, 0.7);
	border: 2px solid rgba(249, 250, 251, 0.2);
	border-radius: 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.rs-filter-btn:hover,
.rs-filter-btn.rs-active {
	background: linear-gradient(135deg, #eab308, #f59e0b);
	color: #000;
	border-color: #eab308;
	transform: translateY(-2px);
}

.rs-articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.rs-article-card {
	background: #1e1e2e;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(249, 250, 251, 0.1);
	transition: all 0.3s ease;
}

.rs-article-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border-color: rgba(234, 179, 8, 0.3);
}

.rs-article-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.rs-article-content {
	padding: 1.5rem;
}

.rs-article-category {
	color: #eab308;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.rs-article-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #f9fafb;
}

.rs-article-excerpt {
	color: rgba(249, 250, 251, 0.8);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.rs-article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: rgba(249, 250, 251, 0.6);
	font-size: 0.875rem;
}

/* ===== ФОРМЫ ===== */
.rs-form {
	max-width: 600px;
	margin: 0 auto;
}

.rs-form-group {
	margin-bottom: 2rem;
}

.rs-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #f9fafb;
	font-weight: 600;
}

.rs-form-input,
.rs-form-textarea {
	width: 100%;
	padding: 1rem;
	background: rgba(30, 30, 46, 0.8);
	border: 2px solid rgba(249, 250, 251, 0.2);
	border-radius: 0.75rem;
	color: #f9fafb;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.rs-form-input:focus,
.rs-form-textarea:focus {
	outline: none;
	border-color: #eab308;
	box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.2);
}

.rs-form-input::placeholder,
.rs-form-textarea::placeholder {
	color: rgba(249, 250, 251, 0.5);
}

.rs-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.rs-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.rs-form-error.rs-show {
	display: block;
}

.rs-form-success {
	background: rgba(16, 185, 129, 0.2);
	border: 1px solid #10b981;
	color: #10b981;
	padding: 1rem;
	border-radius: 0.75rem;
	margin-bottom: 2rem;
	text-align: center;
}

/* ===== ТАБЛИЦЫ ===== */
.rs-table-container {
	overflow-x: auto;
	margin: 2rem 0;
	border-radius: 1rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-table {
	width: 100%;
	background: #1e1e2e;
	border-collapse: collapse;
}

.rs-table th,
.rs-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-table th {
	background: rgba(234, 179, 8, 0.2);
	color: #eab308;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.875rem;
}

.rs-table td {
	color: rgba(249, 250, 251, 0.9);
}

.rs-table tr:hover {
	background: rgba(249, 250, 251, 0.05);
}

/* ===== FOOTER ===== */
.rs-footer {
	background: #1e1e2e;
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-footer-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.rs-footer-brand {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #f9fafb;
}

.rs-footer-brand .rs-logo-icon {
	margin-right: 0.5rem;
	color: #eab308;
}

.rs-footer-tagline {
	color: rgba(249, 250, 251, 0.7);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.rs-footer-links {
	list-style: none;
}

.rs-footer-links li {
	margin-bottom: 0.5rem;
}

.rs-footer-links a {
	color: rgba(249, 250, 251, 0.7);
	transition: color 0.3s ease;
}

.rs-footer-links a:hover {
	color: #eab308;
}

.rs-footer-contact {
	color: rgba(249, 250, 251, 0.7);
	line-height: 1.6;
}

.rs-footer-contact h4 {
	color: #f9fafb;
	margin-bottom: 1rem;
}

.rs-footer-contact p {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

.rs-footer-contact i {
	margin-right: 0.5rem;
	color: #eab308;
	width: 20px;
}

.rs-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(249, 250, 251, 0.1);
	color: rgba(249, 250, 251, 0.6);
}

/* Map Section */
.rs-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.rs-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.rs-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.rs-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 ===== */
.rs-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(30, 30, 46, 0.98);
	backdrop-filter: blur(20px);
	padding: 2rem;
	z-index: 10000;
	border-top: 1px solid rgba(249, 250, 251, 0.2);
	transform: translateY(100%);
	transition: transform 0.5s ease;
}

.rs-cookie-popup.rs-show {
	transform: translateY(0);
}

.rs-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.rs-cookie-text {
	color: rgba(249, 250, 251, 0.9);
	line-height: 1.6;
}

.rs-cookie-text a {
	color: #eab308;
	text-decoration: underline;
}

.rs-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.rs-cookie-content {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.rs-cookie-actions {
		justify-content: center;
	}
}

/* ===== АНИМАЦИИ ===== */
@keyframes rs-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes rs-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rs-slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rs-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes rs-slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes rs-pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes rs-glow {
	0% {
		box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(234, 179, 8, 0.6);
	}
	100% {
		box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
	}
}

/* ===== УТИЛИТЫ ===== */
.rs-fade-in {
	animation: rs-fadeIn 0.8s ease-out;
}

.rs-fade-in-up {
	animation: rs-fadeInUp 0.8s ease-out;
}

.rs-slide-in-left {
	animation: rs-slideInLeft 0.8s ease-out;
}

.rs-slide-in-right {
	animation: rs-slideInRight 0.8s ease-out;
}

.rs-text-center {
	text-align: center;
}

.rs-text-left {
	text-align: left;
}

.rs-text-right {
	text-align: right;
}

.rs-mb-0 {
	margin-bottom: 0;
}
.rs-mb-1 {
	margin-bottom: 0.5rem;
}
.rs-mb-2 {
	margin-bottom: 1rem;
}
.rs-mb-3 {
	margin-bottom: 1.5rem;
}
.rs-mb-4 {
	margin-bottom: 2rem;
}
.rs-mb-5 {
	margin-bottom: 3rem;
}

.rs-mt-0 {
	margin-top: 0;
}
.rs-mt-1 {
	margin-top: 0.5rem;
}
.rs-mt-2 {
	margin-top: 1rem;
}
.rs-mt-3 {
	margin-top: 1.5rem;
}
.rs-mt-4 {
	margin-top: 2rem;
}
.rs-mt-5 {
	margin-top: 3rem;
}

.rs-hidden {
	display: none;
}

.rs-visible {
	display: block;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ КОМПОНЕНТЫ ===== */
.rs-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 1rem;
	background: linear-gradient(135deg, #eab308, #f59e0b);
	color: #000;
}

.rs-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(249, 250, 251, 0.2),
		transparent
	);
	margin: 3rem 0;
}

.rs-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(249, 250, 251, 0.3);
	border-radius: 50%;
	border-top-color: #eab308;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.rs-tooltip {
	position: relative;
	cursor: help;
}

.rs-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(18, 18, 18, 0.9);
	color: #f9fafb;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(249, 250, 251, 0.2);
}

.rs-tooltip:hover::after {
	opacity: 1;
	visibility: visible;
	bottom: calc(100% + 0.5rem);
}

/* ===== СПЕЦИФИЧНЫЕ СТИЛИ ДЛЯ СТРАНИЦ ===== */

/* Главная страница - дополнительные стили */
.rs-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.rs-stat-item {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(
		135deg,
		rgba(234, 179, 8, 0.1),
		rgba(59, 130, 246, 0.1)
	);
	border-radius: 1rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #eab308;
	margin-bottom: 0.5rem;
	display: block;
}

.rs-stat-label {
	color: rgba(249, 250, 251, 0.8);
	font-weight: 500;
}

/* Страница материалов */
.rs-material-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin: 4rem 0;
}

.rs-material-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-material-info h3 {
	color: #eab308;
	margin-bottom: 1rem;
}

.rs-properties-list {
	list-style: none;
	margin: 2rem 0;
}

.rs-properties-list li {
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(249, 250, 251, 0.1);
	color: rgba(249, 250, 251, 0.9);
}

.rs-properties-list li:last-child {
	border-bottom: none;
}

.rs-property-name {
	font-weight: 600;
	color: #f9fafb;
}

.rs-property-value {
	color: #eab308;
}

@media (max-width: 768px) {
	.rs-material-showcase {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Страница стилей */
.rs-style-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.rs-style-card {
	background: #1e1e2e;
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(249, 250, 251, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.rs-style-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rs-style-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.rs-style-content {
	padding: 2rem;
}

.rs-style-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #f9fafb;
}

.rs-style-period {
	color: #eab308;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.rs-style-description {
	color: rgba(249, 250, 251, 0.8);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.rs-characteristics {
	list-style: none;
}

.rs-characteristics li {
	padding: 0.5rem 0;
	color: rgba(249, 250, 251, 0.9);
	position: relative;
	padding-left: 1.5rem;
}

.rs-characteristics li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #eab308;
	font-weight: bold;
}

/* Страница О нас */
.rs-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.rs-team-member {
	text-align: center;
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
	transition: all 0.3s ease;
}

.rs-team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.rs-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	border: 4px solid #eab308;
	object-fit: cover;
}

.rs-team-name {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #f9fafb;
}

.rs-team-position {
	color: #eab308;
	font-weight: 600;
	margin-bottom: 1rem;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.rs-team-bio {
	color: rgba(249, 250, 251, 0.8);
	line-height: 1.6;
	font-size: 0.95rem;
}

.rs-mission-statement {
	background: linear-gradient(
		135deg,
		rgba(234, 179, 8, 0.1),
		rgba(59, 130, 246, 0.1)
	);
	border: 1px solid rgba(249, 250, 251, 0.1);
	border-radius: 1rem;
	padding: 3rem;
	text-align: center;
	margin: 4rem 0;
}

.rs-mission-statement h3 {
	color: #eab308;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.rs-mission-statement p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(249, 250, 251, 0.9);
	max-width: 800px;
	margin: 0 auto;
}

/* Дополнительные утилиты */
.rs-glow-effect {
	animation: rs-glow 3s ease-in-out infinite;
}

.rs-pulse-effect {
	animation: rs-pulse 2s ease-in-out infinite;
}

.rs-hover-lift {
	transition: transform 0.3s ease;
}

.rs-hover-lift:hover {
	transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
	.rs-container {
		padding: 0 1.5rem;
	}
}

@media (max-width: 870px) {
	.rs-menu {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.rs-section {
		padding: 3rem 0;
	}

	.rs-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.rs-grid-1,
	.rs-grid-2,
	.rs-grid-3,
	.rs-grid-4 {
		grid-template-columns: 1fr;
	}

	.rs-articles-grid {
		grid-template-columns: 1fr;
	}

	.rs-filter {
		justify-content: flex-start;
	}

	.rs-timeline-item:nth-child(even) {
		left: 0;
		padding-left: 0;
	}

	.rs-timeline-item::after {
		display: none;
	}

	.rs-timeline::after {
		display: none;
	}
	.rs-timeline-item:nth-child(odd) .rs-timeline-content::before {
		display: none;
	}
	.rs-timeline-item:nth-child(even) .rs-timeline-content::before {
		display: none;
	}

	.rs-timeline-item:nth-child(odd) {
		padding: 0;
	}
}

@media (max-width: 480px) {
	.rs-container {
		padding: 0 1rem;
	}

	.rs-carousel-prev,
	.rs-carousel-next {
		display: none;
	}
	.rs-card {
		padding: 1.5rem;
	}

	.rs-grid-1,
	.rs-grid-2,
	.rs-grid-3,
	.rs-grid-4,
	.rs-style-gallery {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.rs-material-info h2 {
		word-break: break-all;
	}

	.rs-mission-statement h3 {
		font-size: 1.3rem;
		word-wrap: break-word;
	}

	.rs-mission-statement {
		padding: 2rem;
	}

	.rs-btn {
		padding: 0.875rem 1.5rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.5rem;
	}
}

.rs-contact-hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(135deg, #121212 0%, #1e1e2e 100%);
	position: relative;
	overflow: hidden;
}

.rs-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/rs-hero.webp') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.rs-contact-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.rs-contact-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #f9fafb, #eab308);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rs-contact-hero p {
	font-size: 1.2rem;
	color: rgba(249, 250, 251, 0.8);
	margin-bottom: 0;
}

/* Карточки контактной информации */
.rs-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 5rem;
}

.rs-contact-card {
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(249, 250, 251, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rs-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(234, 179, 8, 0.05),
		rgba(59, 130, 246, 0.05)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.rs-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(234, 179, 8, 0.3);
}

.rs-contact-card:hover::before {
	opacity: 1;
}

.rs-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #eab308, #f59e0b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #000;
	position: relative;
	z-index: 1;
}

.rs-contact-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #f9fafb;
	position: relative;
	z-index: 1;
}

.rs-contact-card p {
	color: rgba(249, 250, 251, 0.9);
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.rs-contact-card a {
	color: #eab308;
	text-decoration: none;
	transition: color 0.3s ease;
}

.rs-contact-card a:hover {
	color: #f59e0b;
	text-decoration: underline;
}

.rs-contact-note {
	font-size: 0.9rem;
	color: rgba(249, 250, 251, 0.6) !important;
	font-style: italic;
}

/* Основной блок контактов */
.rs-contact-form-section {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 46, 0.5),
		rgba(18, 18, 18, 0.8)
	);
}

.rs-contact-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.rs-contact-form-wrapper {
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 3rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-contact-form-wrapper h2 {
	color: #eab308;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.rs-contact-form-wrapper > p {
	color: rgba(249, 250, 251, 0.8);
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Форма */
.rs-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	line-height: 1.5;
	color: rgba(249, 250, 251, 0.9);
}

.rs-form-checkbox input[type='checkbox'] {
	display: none;
}

.rs-checkbox-custom {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(249, 250, 251, 0.3);
	border-radius: 4px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-top: 2px;
}

.rs-checkbox-custom::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 12px;
	color: #000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.rs-form-checkbox input[type='checkbox']:checked + .rs-checkbox-custom {
	background: linear-gradient(135deg, #eab308, #f59e0b);
	border-color: #eab308;
}

.rs-form-checkbox input[type='checkbox']:checked + .rs-checkbox-custom::after {
	opacity: 1;
}

.rs-form-checkbox a {
	color: #eab308;
	text-decoration: underline;
}

.rs-form-checkbox a:hover {
	color: #f59e0b;
}

.rs-btn-full {
	width: 100%;
	justify-content: center;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Карта */
.rs-map-wrapper {
	position: sticky;
	top: 2rem;
}

.rs-map-wrapper h3 {
	color: #eab308;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.rs-map-container {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(249, 250, 251, 0.1);
	margin-bottom: 2rem;
	height: 100%;
}

.rs-map-container iframe {
	display: block;
	border-radius: 1rem;
}

.rs-map-info {
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-map-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	color: rgba(249, 250, 251, 0.9);
}

.rs-map-info-item:last-child {
	margin-bottom: 0;
}

.rs-map-info-item i {
	color: #eab308;
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

/* FAQ секция */
.rs-faq-section {
	background: linear-gradient(135deg, #121212 0%, #1e1e2e 100%);
}

.rs-faq-section h2 {
	color: #eab308;
	font-size: 2.5rem;
}

.rs-faq-grid {
	max-width: 800px;
	margin: 0 auto;
}

.rs-faq-item {
	background: #1e1e2e;
	border-radius: 1rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.rs-faq-item:hover {
	border-color: rgba(234, 179, 8, 0.3);
}

.rs-faq-question {
	padding: 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	background: transparent;
}

.rs-faq-question:hover {
	background: rgba(234, 179, 8, 0.1);
}

.rs-faq-question h3 {
	color: #f9fafb;
	font-size: 1.2rem;
	margin: 0;
	flex-grow: 1;
	padding-right: 1rem;
}

.rs-faq-question i {
	color: #eab308;
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.rs-faq-question.rs-active i {
	transform: rotate(180deg);
}

.rs-faq-answer {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: rgba(249, 250, 251, 0.02);
}

.rs-faq-answer.rs-active {
	padding: 2rem;
	max-height: 200px;
}

.rs-faq-answer p {
	color: rgba(249, 250, 251, 0.8);
	line-height: 1.6;
	margin: 0;
}

/* Адаптивность для контактов */
@media (max-width: 1024px) {
	.rs-contact-main {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.rs-map-wrapper {
		position: static;
	}
}

@media (max-width: 768px) {
	.rs-contact-hero {
		padding: 6rem 0 3rem;
	}

	.rs-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 3rem;
	}

	.rs-contact-card {
		padding: 1.5rem;
	}

	.rs-contact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.rs-contact-form-wrapper {
		padding: 2rem;
	}

	.rs-faq-question {
		padding: 1.5rem;
	}

	.rs-faq-question h3 {
		font-size: 1.1rem;
	}

	.rs-faq-answer.rs-active {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.rs-contact-hero h1 {
		font-size: 2rem;
	}

	.rs-contact-hero p {
		font-size: 1rem;
	}

	.rs-contact-card {
		padding: 1rem;
	}

	.rs-contact-form-wrapper {
		padding: 1.5rem;
	}

	.rs-contact-form-wrapper h2 {
		font-size: 1.5rem;
	}
}

.rs-legal-hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(135deg, #121212 0%, #1e1e2e 100%);
	position: relative;
	overflow: hidden;
}

.rs-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/rs-hero.webp') center/cover;
	opacity: 0.1;
	z-index: 1;
}

.rs-legal-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.rs-legal-hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #f9fafb, #eab308);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rs-legal-hero p {
	font-size: 1.2rem;
	color: rgba(249, 250, 251, 0.8);
	margin-bottom: 2rem;
}

.rs-legal-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	font-size: 0.9rem;
	color: rgba(249, 250, 251, 0.6);
}

.rs-legal-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rs-legal-meta i {
	color: #eab308;
}

/* Контент правовых страниц */
.rs-legal-content {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 46, 0.3),
		rgba(18, 18, 18, 0.8)
	);
	min-height: 100vh;
}

.rs-legal-wrapper {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 4rem;
	align-items: start;
}

.rs-legal-navigation {
	position: sticky;
	top: 4rem;
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-legal-navigation h3 {
	color: #eab308;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid rgba(234, 179, 8, 0.3);
	padding-bottom: 0.5rem;
}

.rs-legal-navigation ul {
	list-style: none;
}

.rs-legal-navigation li {
	margin-bottom: 0.75rem;
}

.rs-legal-navigation a {
	color: rgba(249, 250, 251, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	line-height: 1.4;
	display: block;
	padding: 0.5rem 0;
	border-left: 3px solid transparent;
	padding-left: 1rem;
	transition: all 0.3s ease;
}

.rs-legal-navigation a:hover {
	color: #eab308;
	border-left-color: #eab308;
	background: rgba(234, 179, 8, 0.1);
	transform: translateX(5px);
}

/* Основной контент */
.rs-legal-main {
	background: #1e1e2e;
	border-radius: 1rem;
	padding: 3rem;
	border: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-legal-article {
	max-width: none;
}

.rs-legal-section {
	margin-bottom: 4rem;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(249, 250, 251, 0.1);
}

.rs-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.rs-legal-section h2 {
	color: #eab308;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.rs-section-number {
	background: linear-gradient(135deg, #eab308, #f59e0b);
	color: #000;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.rs-legal-section p {
	color: rgba(249, 250, 251, 0.9);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.rs-legal-section ul {
	margin: 1.5rem 0;
	padding-left: 0;
	list-style: none;
}

.rs-legal-section li {
	color: rgba(249, 250, 251, 0.9);
	margin-bottom: 1rem;
	position: relative;
	padding-left: 2rem;
	line-height: 1.6;
}

.rs-legal-section li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #eab308;
	font-weight: bold;
	font-size: 1.1rem;
}

.rs-legal-section strong {
	color: #f9fafb;
	font-weight: 600;
}

.rs-legal-section code {
	background: rgba(234, 179, 8, 0.2);
	color: #eab308;
	padding: 0.2rem 0.5rem;
	border-radius: 0.3rem;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
}

/* Блок контактной информации */
.rs-contact-info {
	background: linear-gradient(
		135deg,
		rgba(234, 179, 8, 0.1),
		rgba(59, 130, 246, 0.1)
	);
	border: 1px solid rgba(234, 179, 8, 0.3);
	border-radius: 1rem;
	padding: 2rem;
	margin: 2rem 0;
}

.rs-contact-info p {
	margin-bottom: 0.5rem;
	color: rgba(249, 250, 251, 0.95);
}

.rs-contact-info strong {
	color: #eab308;
	font-size: 1.1rem;
}

/* Адаптивность для правовых страниц */
@media (max-width: 1024px) {
	.rs-legal-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.rs-legal-navigation {
		position: static;
		order: 2;
		margin-top: 2rem;
	}

	.rs-legal-main {
		order: 1;
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	.rs-legal-hero h1 {
		font-size: 2rem;
	}

	.rs-legal-hero p {
		font-size: 1rem;
	}

	.rs-legal-meta {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.rs-legal-main {
		padding: 1.5rem;
	}

	.rs-legal-section {
		padding: 1.5rem 0;
		margin-bottom: 3rem;
	}

	.rs-legal-section h2 {
		font-size: 1.5rem;
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.rs-section-number {
		align-self: center;
	}

	.rs-contact-info {
		padding: 1.5rem;
	}

	.rs-legal-navigation {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.rs-legal-hero h1 {
		font-size: 1.5rem;
	}

	.rs-legal-main {
		padding: 1rem;
	}

	.rs-legal-section h2 {
		font-size: 1.3rem;
	}

	.rs-section-number {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.rs-legal-section li {
		padding-left: 1.5rem;
	}

	.rs-contact-info {
		padding: 1rem;
	}
}
