* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: #121212;
	color: #e0e0e0;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.2;
}

h1 {
	font-size: 3.5rem;
	color: #ffb74d;
	text-shadow: 0 2px 10px rgba(255, 183, 77, 0.3);
}

h2 {
	font-size: 2.5rem;
	color: #ffb74d;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 2rem;
	color: #64b5f6;
	margin-bottom: 1rem;
}

h4 {
	font-size: 1.5rem;
	color: #a5d6a7;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

a {
	color: #64b5f6;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #ffb74d;
	text-shadow: 0 1px 5px rgba(255, 183, 77, 0.5);
}

/* Container and Layout */
.mc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-wide-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-section {
	padding: 80px 0;
	position: relative;
}

.mc-section-alt {
	background-color: #1e1e1e;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

/* Header Styles */
.mc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(18, 18, 18, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #333;
	z-index: 1000;
	transition: all 0.3s ease;
	padding: 15px 0;
}

.mc-header.scrolled {
	background: rgba(18, 18, 18, 0.98);
	box-shadow: 0 2px 20px rgba(255, 183, 77, 0.1);
}

.mc-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-logo {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffb74d;
	text-decoration: none;
}

.mc-logo i {
	margin-right: 10px;
	color: #64b5f6;
	font-size: 2rem;
}

.mc-nav {
	display: flex;
	align-items: center;
}

.mc-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	align-items: center;
	padding: 0;
	gap: 2rem;
}

.mc-nav li .mc-btn::after {
	display: none;
}

.mc-nav a {
	color: #e0e0e0;
	font-weight: 500;
	font-size: 1.1rem;
	padding: 10px 0;
	position: relative;
	transition: all 0.3s ease;
}

.mc-nav a:hover,
.mc-nav a.active {
	color: #ffb74d;
}

.mc-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffb74d, #64b5f6);
	transition: width 0.3s ease;
}

.mc-nav a:hover::after,
.mc-nav a.active::after {
	width: 100%;
}

/* Mobile Menu */
.mc-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #ffb74d;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 10px;
}

.mc-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(18, 18, 18, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #333;
	padding: 20px;
}

.mc-mobile-menu ul {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.mc-mobile-menu li {
	margin: 10px 0;
	list-style-type: none;
	text-align: center;
}

/* Hero Section */
.mc-hero {
	height: 100vh;
	background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)),
		url('assets/mc-hero.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(255, 183, 77, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.mc-hero-content {
	max-width: 800px;
	z-index: 2;
	animation: mc-fadeInUp 1s ease-out;
}

.mc-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffb74d, #64b5f6);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: mc-glow 2s ease-in-out infinite alternate;
}

.mc-hero-subtitle {
	font-size: 1.4rem;
	color: #a5d6a7;
	margin-bottom: 2.5rem;
	font-weight: 400;
}

.mc-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.mc-btn {
	display: inline-block;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
	min-width: 180px;
}

.mc-btn-primary {
	background: linear-gradient(135deg, #ffb74d, #ff8a50);
	color: #121212;
	box-shadow: 0 5px 15px rgba(255, 183, 77, 0.3);
}

.mc-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 183, 77, 0.5);
	color: #121212;
}

.mc-btn-secondary {
	background: transparent;
	color: #64b5f6;
	border: 2px solid #64b5f6;
}

.mc-btn-secondary:hover {
	background: #64b5f6;
	color: #121212;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(100, 181, 246, 0.3);
}

.mc-btn-outline {
	background: transparent;
	color: #a5d6a7;
	border: 2px solid #a5d6a7;
}

.mc-btn-outline:hover {
	background: #a5d6a7;
	color: #121212;
	transform: translateY(-2px);
}

/* Cards and Content Blocks */
.mc-card {
	background: #1e1e1e;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 30px;
	border: 1px solid #333;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.mc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ffb74d, #64b5f6, #a5d6a7);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.mc-card:hover::before {
	transform: translateX(0);
}

.mc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(255, 183, 77, 0.2);
	border-color: #ffb74d;
}

.mc-card-icon {
	font-size: 3rem;
	color: #ffb74d;
	margin-bottom: 20px;
	display: block;
}

.mc-card h3 {
	color: #64b5f6;
	margin-bottom: 15px;
}

.mc-card p {
	color: #c0c0c0;
	line-height: 1.6;
}

/* Grid Layouts */
.mc-grid {
	display: grid;
	gap: 30px;
	margin: 40px 0;
}

.mc-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.mc-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mc-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Statistics Section */
.mc-stats {
	background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
	border-radius: 20px;
	padding: 50px 30px;
	text-align: center;
	margin: 60px 0;
}

.mc-stat-item {
	padding: 20px;
}

.mc-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #ffb74d;
	display: block;
	margin-bottom: 10px;
}

.mc-stat-label {
	font-size: 1.2rem;
	color: #a5d6a7;
	font-weight: 500;
}

/* Team Section */
.mc-team-member {
	text-align: center;
	padding: 30px;
}

.mc-team-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffb74d, #64b5f6);
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #121212;
	border: 4px solid #333;
}

.mc-team-photo img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.mc-team-name {
	color: #ffb74d;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.mc-team-role {
	color: #64b5f6;
	font-size: 1.1rem;
	margin-bottom: 15px;
	font-weight: 500;
}

.mc-team-bio {
	color: #c0c0c0;
	font-size: 1rem;
	line-height: 1.6;
}

/* Forms */
.mc-form {
	background: #1e1e1e;
	border-radius: 15px;
	padding: 40px;
	border: 1px solid #333;
	height: 100%;
}

.mc-form-group {
	margin-bottom: 25px;
}

.mc-form-label {
	display: block;
	color: #a5d6a7;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.mc-form-input,
.mc-form-textarea,
.mc-form-select {
	width: 100%;
	padding: 15px 20px;
	background: #121212;
	border: 2px solid #333;
	border-radius: 10px;
	color: #e0e0e0;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.mc-form-input:focus,
.mc-form-textarea:focus,
.mc-form-select:focus {
	outline: none;
	border-color: #ffb74d;
	box-shadow: 0 0 15px rgba(255, 183, 77, 0.3);
	background: #1a1a1a;
}

.mc-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.mc-form-error {
	color: #ff5252;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.mc-form-success {
	color: #a5d6a7;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

/* Map Container */
.mc-map-container {
	height: 100%;
	background: #1e1e1e;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid #333;

	position: relative;
}

/* Map Section */
.mc-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.mc-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.mc-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.mc-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;
}

/* Contact Info */
.mc-contact-info {
	background: #1e1e1e;
	border-radius: 15px;
	padding: 30px;
	border: 1px solid #333;
}

.mc-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #333;
}

.mc-contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.mc-contact-icon {
	font-size: 1.5rem;
	color: #ffb74d;
	margin-right: 20px;
	width: 30px;
	text-align: center;
}

.mc-contact-content h4 {
	color: #64b5f6;
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.mc-contact-content p {
	color: #c0c0c0;
	margin: 0;
	font-size: 1rem;
}

/* Footer */
.mc-footer {
	background: #1a1a1a;
	border-top: 1px solid #333;
	padding: 60px 0 20px;
	margin-top: 80px;
}

.mc-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.mc-footer-section h4 {
	color: #ffb74d;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.mc-footer-section p,
.mc-footer-section a {
	color: #c0c0c0;
	margin-bottom: 10px;
	font-size: 1rem;
}

.mc-footer-section a:hover {
	color: #ffb74d;
}

.mc-footer-links {
	list-style: none;
}

.mc-footer-links li {
	margin-bottom: 10px;
}

.mc-footer-bottom {
	border-top: 1px solid #333;
	padding-top: 20px;
	text-align: center;
	color: #666;
	font-size: 0.9rem;
}

/* Cookie Banner */
.mc-cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #1e1e1e;
	border: 1px solid #ffb74d;
	border-radius: 15px;
	padding: 20px;
	z-index: 10000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	display: none;
	animation: mc-slideUp 0.5s ease-out;
}

.mc-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.mc-cookie-text {
	flex: 1;
	min-width: 300px;
}

.mc-cookie-text p {
	margin: 0;
	color: #e0e0e0;
	font-size: 1rem;
}

.mc-cookie-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.mc-cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.mc-cookie-accept {
	background: #ffb74d;
	color: #121212;
}

.mc-cookie-accept:hover {
	background: #ff8a50;
	transform: translateY(-2px);
}

.mc-cookie-policy {
	background: transparent;
	color: #64b5f6;
	border: 1px solid #64b5f6;
}

.mc-cookie-policy:hover {
	background: #64b5f6;
	color: #121212;
}

/* Animations */
@keyframes mc-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mc-slideUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mc-glow {
	from {
		text-shadow: 0 0 20px rgba(255, 183, 77, 0.5);
	}
	to {
		text-shadow: 0 0 30px rgba(255, 183, 77, 0.8);
	}
}

@keyframes mc-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

/* Scroll Animations */
.mc-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.mc-animate-on-scroll.mc-animated {
	opacity: 1;
	transform: translateY(0);
}

/* Tabs */
.mc-tabs {
	margin: 40px 0;
}

.mc-tab-nav {
	display: flex;
	border-bottom: 2px solid #333;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.mc-tab-button {
	background: none;
	border: none;
	padding: 15px 25px;
	color: #c0c0c0;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

.mc-tab-button:hover {
	color: #ffb74d;
}

.mc-tab-button.active {
	color: #ffb74d;
	border-bottom-color: #ffb74d;
}

.mc-tab-content {
	display: none;
	animation: mc-fadeInUp 0.5s ease-out;
}

.mc-tab-content.active {
	display: block;
}

/* Accordion */
.mc-accordion {
	margin: 40px 0;
}

.mc-accordion-item {
	border: 1px solid #333;
	border-radius: 10px;
	margin-bottom: 15px;
	overflow: hidden;
}

.mc-accordion-header {
	background: #1e1e1e;
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.mc-accordion-header:hover {
	background: #252525;
}

.mc-accordion-title {
	color: #ffb74d;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}

.mc-accordion-icon {
	color: #64b5f6;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.mc-accordion-item.active .mc-accordion-icon {
	transform: rotate(180deg);
}

.mc-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #121212;
}

.mc-accordion-body {
	padding: 20px;
	color: #c0c0c0;
	line-height: 1.6;
}

/* Utilities */
.mc-text-center {
	text-align: center;
}

.mc-text-left {
	text-align: left;
}

.mc-text-right {
	text-align: right;
}

.mc-mb-0 {
	margin-bottom: 0;
}
.mc-mb-1 {
	margin-bottom: 0.5rem;
}
.mc-mb-2 {
	margin-bottom: 1rem;
}
.mc-mb-3 {
	margin-bottom: 1.5rem;
}
.mc-mb-4 {
	margin-bottom: 2rem;
}
.mc-mb-5 {
	margin-bottom: 3rem;
}

.mc-mt-0 {
	margin-top: 0;
}
.mc-mt-1 {
	margin-top: 0.5rem;
}
.mc-mt-2 {
	margin-top: 1rem;
}
.mc-mt-3 {
	margin-top: 1.5rem;
}
.mc-mt-4 {
	margin-top: 2rem;
}
.mc-mt-5 {
	margin-top: 3rem;
}

.mc-hidden {
	display: none;
}

.mc-visible {
	display: block;
}

/* Loading States */
.mc-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #333;
	border-radius: 50%;
	border-top-color: #ffb74d;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Modal */
.mc-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.mc-modal-content {
	background-color: #1e1e1e;
	margin: 5% auto;
	padding: 40px;
	border: 1px solid #333;
	border-radius: 15px;
	width: 90%;
	max-width: 600px;
	position: relative;
	animation: mc-fadeInUp 0.3s ease-out;
}

.mc-modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	color: #666;
	font-size: 2rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

.mc-modal-close:hover {
	color: #ffb74d;
}

/* Responsive Design */
@media (max-width: 886px) {
	.mc-nav {
		display: none;
	}

	.mc-mobile-toggle {
		display: block;
	}

	.mc-mobile-menu.active {
		display: block;
	}
}

@media (max-width: 768px) {
	.mc-hero h1 {
		font-size: 2.5rem;
	}

	.mc-hero-subtitle {
		font-size: 1.2rem;
	}

	.mc-cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.mc-btn {
		width: 100%;
		max-width: 300px;
	}

	.mc-grid-2,
	.mc-grid-3,
	.mc-grid-4 {
		grid-template-columns: 1fr;
	}

	.mc-container,
	.mc-wide-container {
		padding: 0 15px;
	}

	.mc-section {
		padding: 50px 0;
	}

	.mc-card {
		padding: 20px;
	}

	.mc-stats {
		padding: 30px 20px;
	}

	.mc-form {
		padding: 25px;
	}

	.mc-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.mc-cookie-text {
		min-width: auto;
	}

	.mc-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.mc-tab-nav {
		flex-direction: column;
	}

	.mc-tab-button {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.mc-hero h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.mc-stat-number {
		font-size: 2.5rem;
	}

	.mc-team-photo {
		width: 120px;
		height: 120px;
		font-size: 3rem;
	}

	.mc-modal-content {
		margin: 10% auto;
		padding: 25px;
	}

	.mc-contact-item {
		flex-direction: column;
		text-align: center;
	}

	.mc-contact-icon {
		margin-right: 0;
		margin-bottom: 10px;
	}

	h1 {
		font-size: 1.5rem;
	}
}

.mc-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	position: relative;
}

.mc-legal-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100px;
	background: linear-gradient(
		to bottom,
		var(--mc-legal-accent-gold),
		transparent
	);
	opacity: 0.6;
}

/* Заголовок страницы */
.mc-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 40px 20px;
	background: var(--mc-legal-bg-secondary);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px var(--mc-legal-shadow);
}

.mc-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--mc-legal-accent-gold),
		var(--mc-legal-accent-blue),
		var(--mc-legal-accent-green),
		transparent
	);
	animation: mc-legal-shine 3s ease-in-out infinite;
}

@keyframes mc-legal-shine {
	0%,
	100% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
}

.mc-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--mc-legal-accent-gold);
	margin-bottom: 15px;
	text-shadow: 0 2px 8px rgba(255, 183, 77, 0.3);
	position: relative;
}

.mc-legal-subtitle {
	font-size: 1.2rem;
	color: var(--mc-legal-text-secondary);
	margin-bottom: 20px;
	font-weight: 400;
}

.mc-legal-update-date {
	display: inline-block;
	background: var(--mc-legal-accent-blue);
	color: #fff;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(100, 181, 246, 0.3);
}

/* Основной контент */
.mc-legal-content {
	display: grid;
	gap: 30px;
	margin-bottom: 50px;
}

/* Секции */
.mc-legal-section {
	background: var(--mc-legal-bg-secondary);
	border-radius: 12px;
	padding: 35px;
	border-left: 4px solid var(--mc-legal-accent-gold);
	position: relative;
	transition: var(--mc-legal-transition);
	box-shadow: 0 4px 20px var(--mc-legal-shadow);
}

.mc-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px var(--mc-legal-shadow);
	border-left-color: var(--mc-legal-accent-blue);
}

.mc-legal-section:nth-child(even) {
	border-left-color: var(--mc-legal-accent-green);
}

.mc-legal-section:nth-child(even):hover {
	border-left-color: var(--mc-legal-accent-gold);
}

/* Заголовки секций */
.mc-legal-section-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--mc-legal-accent-gold);
	margin-bottom: 20px;
	position: relative;
	padding-left: 30px;
}

.mc-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: var(--mc-legal-accent-gold);
	border-radius: 50%;
	box-shadow: 0 0 16px rgba(255, 183, 77, 0.4);
}

/* Текст секций */
.mc-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--mc-legal-text-primary);
	text-align: justify;
	position: relative;
	padding-left: 15px;
}

.mc-legal-text::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(
		to bottom,
		var(--mc-legal-accent-blue),
		transparent
	);
	opacity: 0.5;
}

/* Управление Cookie */
.mc-legal-cookie-controls {
	background: var(--mc-legal-bg-secondary);
	border-radius: 16px;
	padding: 40px;
	margin: 40px 0;
	text-align: center;
	border: 2px solid var(--mc-legal-border);
	position: relative;
	overflow: hidden;
}

.mc-legal-cookie-controls::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(
		45deg,
		var(--mc-legal-accent-gold),
		var(--mc-legal-accent-blue),
		var(--mc-legal-accent-green),
		var(--mc-legal-accent-gold)
	);
	border-radius: 16px;
	z-index: -1;
	animation: mc-legal-border-glow 4s ease-in-out infinite;
}

@keyframes mc-legal-border-glow {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.7;
	}
}

.mc-legal-cookie-controls h3 {
	color: var(--mc-legal-accent-gold);
	font-size: 1.5rem;
	margin-bottom: 25px;
}

.mc-legal-cookie-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Кнопки */
.mc-legal-btn-primary,
.mc-legal-btn-secondary,
.mc-legal-btn-outline {
	padding: 12px 28px;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--mc-legal-transition);
	text-transform: none;
	min-width: 160px;
}

.mc-legal-btn-primary {
	background: var(--mc-legal-accent-gold);
	color: #000;
	box-shadow: 0 4px 16px rgba(255, 183, 77, 0.3);
}

.mc-legal-btn-primary:hover {
	background: #ffa726;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 183, 77, 0.4);
}

.mc-legal-btn-secondary {
	background: var(--mc-legal-accent-blue);
	color: #000;
	box-shadow: 0 4px 16px rgba(100, 181, 246, 0.3);
}

.mc-legal-btn-secondary:hover {
	background: #42a5f5;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

.mc-legal-btn-outline {
	background: transparent;
	color: var(--mc-legal-accent-green);
	border: 2px solid var(--mc-legal-accent-green);
	box-shadow: 0 4px 16px rgba(165, 214, 167, 0.2);
}

.mc-legal-btn-outline:hover {
	background: var(--mc-legal-accent-green);
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(165, 214, 167, 0.3);
}

/* Футер */
.mc-legal-footer {
	margin-top: 60px;
	padding: 40px;
	background: var(--mc-legal-bg-secondary);
	border-radius: 16px;
	text-align: center;
	border-top: 3px solid var(--mc-legal-accent-gold);
	position: relative;
}

.mc-legal-company-info h3 {
	color: var(--mc-legal-accent-gold);
	font-size: 1.3rem;
	margin-bottom: 15px;
}

.mc-legal-company-info p {
	color: var(--mc-legal-text-secondary);
	margin-bottom: 8px;
	font-size: 1rem;
}

.mc-legal-company-info p:last-child {
	margin-bottom: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
	.mc-legal-title {
		font-size: 2rem;
	}

	.mc-legal-subtitle {
		font-size: 1rem;
	}

	.mc-legal-section {
		padding: 25px 20px;
	}

	.mc-legal-section-title {
		font-size: 1.2rem;
	}

	.mc-legal-text {
		font-size: 0.95rem;
	}

	.mc-legal-cookie-buttons {
		flex-direction: column;
		align-items: center;
	}

	.mc-legal-btn-primary,
	.mc-legal-btn-secondary,
	.mc-legal-btn-outline {
		width: 100%;
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.mc-legal-header {
		padding: 25px 15px;
		margin-bottom: 30px;
	}

	.mc-legal-title {
		font-size: 1.3rem;
	}

	.mc-legal-section {
		padding: 20px 15px;
	}

	.mc-legal-section-title {
		padding-left: 25px;
		font-size: 1.1rem;
	}

	.mc-legal-cookie-controls {
		padding: 25px 15px;
	}
}
