* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: 'Source Sans Pro', Arial, sans-serif;
	line-height: 1.6;
	color: #e0e0e0;
	background-color: #121212;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Source Sans Pro', Arial, sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	color: #e0e0e0;
}

a {
	color: #0d47a1;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #ff6d00;
	text-decoration: underline;
}

/* Container */
.ma-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ma-section {
	padding: 4rem 0;
}

/* Header Styles */
.ma-header {
	background-color: #1e1e1e;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.ma-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.ma-logo {
	font-size: 1.8rem;
	font-weight: 600;
	color: #0d47a1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ma-logo:hover {
	color: #ff6d00;
	text-decoration: none;
}

.ma-nav {
	display: flex;
}

.ma-nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.ma-nav-link {
	color: #e0e0e0;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	transition: all 0.3s ease;
	position: relative;
}

.ma-nav-link:hover {
	color: #0d47a1;
	background-color: rgba(13, 71, 161, 0.1);
	text-decoration: none;
}

.ma-nav-link.active {
	color: #ff6d00;
	background-color: rgba(255, 109, 0, 0.1);
}

/* Mobile Menu */
.ma-mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.ma-mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background-color: #e0e0e0;
	margin: 3px 0;
	transition: 0.3s;
}

.ma-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #1e1e1e;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ma-mobile-nav.active {
	display: block;
}

.ma-mobile-nav-list {
	list-style: none;
	padding: 1rem 0;
}

.ma-mobile-nav-link {
	display: block;
	color: #e0e0e0;
	padding: 1rem 2rem;
	border-bottom: 1px solid rgba(224, 224, 224, 0.1);
	transition: all 0.3s ease;
}

.ma-mobile-nav-link:hover {
	background-color: rgba(13, 71, 161, 0.1);
	color: #0d47a1;
	text-decoration: none;
}

/* Hero Section */
.ma-hero {
	padding: 8rem 0 6rem;
	background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ma-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/ma-hero.webp') bottom/cover;
	background-attachment: fixed;
	opacity: 0.1;
}

.ma-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.ma-hero-text h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #0d47a1, #ff6d00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ma-hero-text p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #b0b0b0;
}

.ma-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	text-decoration: none;
}

.ma-btn-primary {
	background: linear-gradient(135deg, #0d47a1, #1565c0);
	color: white;
	box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.ma-btn-primary:hover {
	background: linear-gradient(135deg, #1565c0, #0d47a1);
	box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

.ma-btn-secondary {
	background: linear-gradient(135deg, #ff6d00, #ff8f00);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.ma-btn-secondary:hover {
	background: linear-gradient(135deg, #ff8f00, #ff6d00);
	box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

/* Chart Container */
.ma-chart-container {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	position: relative;
}

.ma-chart-container canvas {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	min-height: 300px !important;
}

.ma-chart-placeholder {
	width: 100%;
	height: 300px;
	background: linear-gradient(
		135deg,
		rgba(13, 71, 161, 0.1),
		rgba(255, 109, 0, 0.1)
	);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	color: #b0b0b0;
	border: 2px dashed rgba(224, 224, 224, 0.2);
}

/* Cards */
.ma-card {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border: 1px solid rgba(224, 224, 224, 0.1);
}

.ma-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	border-color: rgba(13, 71, 161, 0.3);
}

.ma-card h3 {
	color: #0d47a1;
	margin-bottom: 1rem;
}

.ma-card p {
	color: #b0b0b0;
	margin-bottom: 1.5rem;
}

/* Grid Layouts */
.ma-grid {
	display: grid;
	gap: 2rem;
}

.ma-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.ma-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.ma-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Case Study Cards */
.ma-case-card {
	background-color: #1e1e1e;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.ma-case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.ma-case-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(
		135deg,
		rgba(13, 71, 161, 0.2),
		rgba(255, 109, 0, 0.2)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0b0b0;
	font-size: 1.1rem;
}

.ma-case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ma-case-content {
	padding: 1.5rem;
}

.ma-case-content h3 {
	color: #0d47a1;
	margin-bottom: 1rem;
}

.ma-case-content p {
	color: #b0b0b0;
	margin-bottom: 1.5rem;
}

/* Quiz Styles */
.ma-quiz-container {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ma-quiz-question {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: #e0e0e0;
	text-align: center;
}

.ma-quiz-options {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ma-quiz-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.ma-quiz-btn {
	background-color: #2a2a2a;
	border: 2px solid rgba(224, 224, 224, 0.2);
	color: #e0e0e0;
	padding: 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.ma-quiz-btn:hover {
	border-color: #0d47a1;
	background-color: rgba(13, 71, 161, 0.1);
	color: #0d47a1;
}

.ma-quiz-btn.correct {
	border-color: #4caf50;
	background-color: rgba(76, 175, 80, 0.2);
	color: #4caf50;
}

.ma-quiz-btn.incorrect {
	border-color: #f44336;
	background-color: rgba(244, 67, 54, 0.2);
	color: #f44336;
}

.ma-quiz-result {
	text-align: center;
	padding: 1rem;
	border-radius: 8px;
	margin-top: 1rem;
	font-weight: 600;
}

.ma-quiz-result.correct {
	background-color: rgba(76, 175, 80, 0.2);
	color: #4caf50;
	border: 1px solid #4caf50;
}

.ma-quiz-result.incorrect {
	background-color: rgba(244, 67, 54, 0.2);
	color: #f44336;
	border: 1px solid #f44336;
}

/* Interactive Chart Tool */
.ma-interactive-chart {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ma-chart-controls {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.ma-control-btn {
	background-color: #2a2a2a;
	border: 1px solid rgba(224, 224, 224, 0.2);
	color: #e0e0e0;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ma-control-btn:hover {
	border-color: #0d47a1;
	background-color: rgba(13, 71, 161, 0.1);
	color: #0d47a1;
}

.ma-control-btn.active {
	background-color: #0d47a1;
	border-color: #0d47a1;
	color: white;
}

/* Form Styles */
.ma-form {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ma-form-group {
	margin-bottom: 1.5rem;
}

.ma-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
	font-weight: 500;
}

.ma-form-input,
.ma-form-textarea {
	width: 100%;
	padding: 1rem;
	background-color: #2a2a2a;
	border: 2px solid rgba(224, 224, 224, 0.2);
	border-radius: 8px;
	color: #e0e0e0;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.ma-form-input:focus,
.ma-form-textarea:focus {
	outline: none;
	border-color: #0d47a1;
	box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.ma-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.ma-form-error {
	color: #f44336;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

/* Accordion Styles */
.ma-accordion {
	background-color: #1e1e1e;
	border-radius: 12px;
	overflow: hidden;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ma-accordion-item {
	border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

.ma-accordion-item:last-child {
	border-bottom: none;
}

.ma-accordion-header {
	background-color: transparent;
	border: none;
	width: 100%;
	padding: 1.5rem 2rem;
	text-align: left;
	color: #e0e0e0;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ma-accordion-header:hover {
	background-color: rgba(13, 71, 161, 0.1);
	color: #0d47a1;
}

.ma-accordion-icon {
	transition: transform 0.3s ease;
}

.ma-accordion-item.active .ma-accordion-icon {
	transform: rotate(180deg);
}

.ma-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.ma-accordion-item.active .ma-accordion-content {
	max-height: 1000px;
}

.ma-accordion-body {
	padding: 1.5rem 2rem;
	color: #b0b0b0;
	line-height: 1.6;
}

/* Timeline Styles */
.ma-timeline {
	position: relative;
	padding-left: 2rem;
}

.ma-timeline::before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #0d47a1, #ff6d00);
}

.ma-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	margin-left: 2rem;
}

.ma-timeline-item::before {
	content: '';
	position: absolute;
	left: -56px;
	top: 2rem;
	width: 12px;
	height: 12px;
	background-color: #0d47a1;
	border-radius: 50%;
	border: 3px solid #121212;
	box-shadow: 0 0 0 3px #0d47a1;
}

.ma-timeline-date {
	color: #ff6d00;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.ma-timeline-title {
	color: #0d47a1;
	margin-bottom: 1rem;
}

.ma-timeline-content {
	color: #b0b0b0;
}

/* Indicator and Pattern Cards */
.ma-indicator-card,
.ma-pattern-card {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border-left: 4px solid #0d47a1;
}

.ma-indicator-card:hover,
.ma-pattern-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	border-left-color: #ff6d00;
}

.ma-indicator-card h3,
.ma-pattern-card h3 {
	color: #0d47a1;
	margin-bottom: 1rem;
}

.ma-indicator-card p,
.ma-pattern-card p {
	color: #b0b0b0;
	line-height: 1.6;
}

/* Glossary Styles */
.ma-glossary-item {
	background-color: #1e1e1e;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ma-glossary-term {
	background-color: transparent;
	border: none;
	width: 100%;
	padding: 1.5rem;
	text-align: left;
	color: #0d47a1;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ma-glossary-term:hover {
	background-color: rgba(13, 71, 161, 0.1);
}

.ma-glossary-definition {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.ma-glossary-item.active .ma-glossary-definition {
	max-height: 500px;
}

.ma-glossary-content {
	padding: 1.5rem;
	color: #b0b0b0;
	border-top: 1px solid rgba(224, 224, 224, 0.1);
}

/* Contact Page Styles */
.ma-contact-info {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ma-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background-color: #2a2a2a;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.ma-contact-item:hover {
	background-color: rgba(13, 71, 161, 0.1);
	transform: translateX(5px);
}

.ma-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #0d47a1, #ff6d00);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	font-size: 1.2rem;
	color: white;
}

.ma-contact-details h4 {
	color: #0d47a1;
	margin-bottom: 0.5rem;
}

.ma-contact-details p {
	color: #b0b0b0;
	margin: 0;
}

/* Map Container */
.ma-map-container {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	text-align: center;
	height: 100%;
}

/* Map Section */
.ma-map {
	height: 100%;
	min-height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ma-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ma-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ma-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;
}

/* Стили для ошибок */

.ma-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Cookie Popup */
.ma-cookie-popup {
	position: fixed;
	bottom: -1px;
	left: 0;
	right: 0;
	background-color: #1e1e1e;
	border-top: 3px solid #0d47a1;
	padding: 1.5rem;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.ma-cookie-popup.show {
	transform: translateY(0);
}

.ma-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.ma-cookie-text {
	color: #e0e0e0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.ma-cookie-text a {
	color: #0d47a1;
	text-decoration: underline;
}

.ma-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.ma-cookie-btn {
	background-color: #0d47a1;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.ma-cookie-btn:hover {
	background-color: #1565c0;
	transform: translateY(-1px);
}

/* Footer Styles */
.ma-footer {
	background-color: #1e1e1e;
	border-top: 1px solid rgba(224, 224, 224, 0.1);
	padding: 3rem 0 1rem;
	margin-top: 4rem;
}

.ma-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.ma-footer-section h4 {
	color: #0d47a1;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.ma-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.ma-footer-links a {
	color: #b0b0b0;
	transition: color 0.3s ease;
	padding: 0.25rem 0;
}

.ma-footer-links a:hover {
	color: #0d47a1;
	text-decoration: none;
}

.ma-footer-contact p {
	color: #b0b0b0;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.ma-footer-contact strong {
	color: #e0e0e0;
}

.ma-footer-contact a {
	color: #0d47a1;
}

.ma-footer-bottom {
	border-top: 1px solid rgba(224, 224, 224, 0.1);
	padding-top: 1rem;
	text-align: center;
}

.ma-footer-bottom p {
	color: #b0b0b0;
	font-size: 0.9rem;
	margin: 0;
}

/* Legal Pages */
.ma-legal-hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
	text-align: center;
}

.ma-legal-hero-content h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #0d47a1, #ff6d00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ma-legal-hero-content p {
	color: #b0b0b0;
	font-size: 1.1rem;
}

.ma-legal-container {
	max-width: 800px;
	margin: 0 auto;
}

.ma-legal-section {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ma-legal-section h2 {
	color: #0d47a1;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid rgba(13, 71, 161, 0.2);
	padding-bottom: 0.5rem;
}

.ma-legal-section ul {
	list-style: none;
	padding-left: 0;
}

.ma-legal-section li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: #b0b0b0;
}

.ma-legal-section li::before {
	content: '•';
	color: #0d47a1;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
}

.ma-legal-contacts {
	background-color: #2a2a2a;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1rem;
}

.ma-legal-contacts p {
	margin-bottom: 0.5rem;
	color: #b0b0b0;
}

.ma-legal-contacts strong {
	color: #e0e0e0;
}

.ma-legal-contacts a {
	color: #0d47a1;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ma-fade-in {
	animation: fadeIn 0.6s ease-out;
}

.ma-slide-up {
	animation: slideUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.ma-container {
		padding: 0 15px;
	}

	.ma-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ma-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ma-nav {
		display: none;
	}

	.ma-mobile-menu-btn {
		display: flex;
	}

	.ma-hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.ma-hero-text h1 {
		font-size: 2rem;
	}

	.ma-grid-2,
	.ma-grid-3,
	.ma-grid-4 {
		grid-template-columns: 1fr;
	}

	.ma-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ma-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ma-timeline {
		padding-left: 1rem;
	}

	.ma-timeline-item {
		margin-left: 1rem;
	}

	.ma-timeline-item::before {
		left: -24px;
	}

	.ma-hero {
		height: 120vh;
	}
}

@media (max-width: 480px) {
	.ma-section {
		padding: 2rem 0;
	}

	.ma-hero {
		padding: 6rem 0 4rem;
	}

	.ma-hero-text h1 {
		font-size: 1.8rem;
	}

	.ma-card,
	.ma-form,
	.ma-quiz-container,
	.ma-interactive-chart {
		padding: 1.5rem;
	}

	.ma-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.ma-legal-hero {
		padding: 6rem 0 3rem;
	}

	.ma-quiz-buttons {
		justify-content: center;
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.ma-legal-hero-content h1 {
		font-size: 2rem;
	}
}

/* Print Styles */
@media print {
	.ma-header,
	.ma-footer,
	.ma-cookie-popup {
		display: none;
	}

	body {
		background-color: white;
		color: black;
	}

	.ma-card,
	.ma-legal-section {
		background-color: white;
		box-shadow: none;
		border: 1px solid #ccc;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	body {
		background-color: #000;
		color: #fff;
	}

	.ma-card,
	.ma-header,
	.ma-footer {
		background-color: #111;
		border: 2px solid #fff;
	}

	.ma-btn-primary {
		background-color: #0066cc;
		border: 2px solid #fff;
	}

	.ma-btn-secondary {
		background-color: #ff6600;
		border: 2px solid #fff;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.ma-contact-card {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border: 1px solid rgba(224, 224, 224, 0.1);
}

.ma-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
	border-color: rgba(13, 71, 161, 0.3);
}

.ma-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #0d47a1, #ff6d00);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
	box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.ma-contact-card h3 {
	color: #0d47a1;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.ma-contact-card p {
	color: #b0b0b0;
	line-height: 1.6;
	margin: 0;
}

.ma-contact-card a {
	color: #0d47a1;
	font-weight: 600;
	transition: color 0.3s ease;
}

.ma-contact-card a:hover {
	color: #ff6d00;
	text-decoration: none;
}

/* Contact Info Section */
.ma-contact-info {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border-left: 4px solid #0d47a1;
}

.ma-contact-info h3 {
	color: #0d47a1;
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.ma-contact-benefit {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background-color: #2a2a2a;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.ma-contact-benefit:hover {
	background-color: rgba(13, 71, 161, 0.1);
	transform: translateX(5px);
}

.ma-contact-benefit i {
	font-size: 1.5rem;
	color: #0d47a1;
	margin-right: 1rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.ma-contact-benefit h4 {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.ma-contact-benefit p {
	color: #b0b0b0;
	margin: 0;
	line-height: 1.5;
}

/* Enhanced Form Styles for Contact Page */
.ma-form select.ma-form-input {
	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='%23B0B0B0' 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;
	appearance: none;
	cursor: pointer;
}

.ma-form select.ma-form-input:focus {
	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='%230D47A1' 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");
}

.ma-form button[type='submit'] {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	padding: 1.2rem 2rem;
	margin-top: 1rem;
}

.ma-form button[type='submit']:disabled {
	background: linear-gradient(135deg, #666, #777);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.ma-form button[type='submit']:disabled:hover {
	background: linear-gradient(135deg, #666, #777);
	transform: none;
	box-shadow: none;
}

/* Enhanced Accordion for Contact FAQ */
.ma-accordion .ma-accordion-item:hover .ma-accordion-header {
	background-color: rgba(13, 71, 161, 0.15);
	color: #0d47a1;
}

.ma-accordion-header span {
	font-weight: 600;
	font-size: 1.1rem;
}

.ma-accordion-body p {
	font-size: 1rem;
	line-height: 1.7;
	color: #c0c0c0;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
	.ma-contact-card {
		margin-bottom: 2rem;
	}

	.ma-contact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.ma-contact-benefit {
		flex-direction: column;
		text-align: center;
	}

	.ma-contact-benefit i {
		margin-right: 0;
		margin-bottom: 1rem;
		font-size: 2rem;
	}

	.ma-form button[type='submit'] {
		font-size: 1rem;
		padding: 1rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.ma-contact-card {
		padding: 1.5rem;
	}

	.ma-contact-info {
		padding: 1.5rem;
	}

	.ma-contact-benefit {
		padding: 1rem;
		margin-bottom: 1.5rem;
	}

	.ma-map-container {
		padding: 0.5rem;
	}
}

.ma-legal-header {
	padding: 8rem 0 4rem;
	background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
	position: relative;
	text-align: center;
}

.ma-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.1;
}

.ma-legal-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #0d47a1, #ff6d00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
}

.ma-legal-subtitle {
	font-size: 1.2rem;
	color: #b0b0b0;
	position: relative;
	z-index: 2;
}

.ma-legal-content {
	padding: 4rem 0;
	background-color: #121212;
}

.ma-legal-section {
	background-color: #1e1e1e;
	border-radius: 12px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border-left: 4px solid #0d47a1;
	transition: all 0.3s ease;
}

.ma-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	border-left-color: #ff6d00;
}

.ma-legal-section h2 {
	color: #0d47a1;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.ma-legal-section h2::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(135deg, #0d47a1, #ff6d00);
	border-radius: 1px;
}

.ma-legal-section h3 {
	color: #ff6d00;
	font-size: 1.3rem;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.ma-legal-section p {
	color: #e0e0e0;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.ma-legal-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5rem;
}

.ma-legal-section ul li {
	color: #e0e0e0;
	line-height: 1.7;
	margin-bottom: 0.8rem;
	padding-left: 2rem;
	position: relative;
}

.ma-legal-section ul li::before {
	content: '▶';
	color: #0d47a1;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 0.8rem;
}

.ma-legal-section ul ul {
	margin-top: 0.5rem;
	padding-left: 1.5rem;
}

.ma-legal-section ul ul li::before {
	content: '▸';
	color: #ff6d00;
}

.ma-legal-contact {
	background-color: #2a2a2a;
	border-radius: 8px;
	padding: 2rem;
	margin: 2rem 0;
	border: 1px solid rgba(13, 71, 161, 0.3);
}

.ma-legal-contact p {
	margin-bottom: 0.5rem;
	color: #e0e0e0;
}

.ma-legal-contact strong {
	color: #0d47a1;
	font-weight: 600;
}

.ma-legal-contact a {
	color: #ff6d00;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ma-legal-contact a:hover {
	color: #0d47a1;
	text-decoration: underline;
}

/* Cookie Popup Styles */

/* Footer Styles Enhancement */
.ma-footer {
	background-color: #0a0a0a;
	padding: 3rem 0 1.5rem;
	border-top: 1px solid rgba(224, 224, 224, 0.1);
	margin-top: 4rem;
}

.ma-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 2rem;
}

.ma-footer-section h4 {
	color: #0d47a1;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.ma-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.ma-footer-links a {
	color: #b0b0b0;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.ma-footer-links a:hover {
	color: #ff6d00;
	text-decoration: none;
}

.ma-footer-contact p {
	color: #b0b0b0;
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.ma-footer-contact strong {
	color: #e0e0e0;
	font-weight: 600;
}

.ma-footer-contact a {
	color: #0d47a1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ma-footer-contact a:hover {
	color: #ff6d00;
	text-decoration: underline;
}

.ma-footer-bottom {
	border-top: 1px solid rgba(224, 224, 224, 0.1);
	padding-top: 1.5rem;
	text-align: center;
}

.ma-footer-bottom p {
	color: #808080;
	font-size: 0.9rem;
	margin: 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
	.ma-legal-title {
		font-size: 2.2rem;
	}

	.ma-legal-subtitle {
		font-size: 1rem;
	}

	.ma-legal-section {
		padding: 2rem;
		margin-bottom: 1.5rem;
	}

	.ma-legal-section h2 {
		font-size: 1.5rem;
	}

	.ma-cookie-content {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}

	.ma-footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 480px) {
	.ma-legal-header {
		padding: 6rem 0 3rem;
	}

	.ma-legal-title {
		font-size: 1.8rem;
	}

	.ma-legal-section {
		padding: 1.5rem;
	}

	.ma-legal-section h2 {
		font-size: 1.3rem;
	}

	.ma-cookie-content {
		padding: 1rem;
	}

	.ma-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

