* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #e0e0e0;
	background-color: #121212;
	overflow-x: hidden;
}

/* Typography */
.ba-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #e0e0e0;
}

.ba-subtitle {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 2rem;
	color: #b0b0b0;
}

.ba-section-title {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: #e0e0e0;
	text-align: center;
	position: relative;
}

.ba-section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #2979ff, #00e676);
}

.ba-heading-2 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #e0e0e0;
}

.ba-heading-3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.ba-text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
	color: #b0b0b0;
}

.ba-text-large {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: #b0b0b0;
}

/* Layout Components */
.ba-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ba-container-full {
	width: 100%;
	padding: 0 2rem;
}

.ba-section {
	padding: 6rem 0;
	position: relative;
}

/* Header Styles */
.ba-header {
	position: fixed;
	top: 20px;
	left: 2rem;
	right: 2rem;
	z-index: 1000;
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(20px);
	padding: 1rem 2rem;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	max-width: 1200px;
	margin: 0 auto;
}

.ba-header.ba-scrolled {
	background: rgba(18, 18, 18, 0.98);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.ba-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.ba-logo {
	font-size: 2rem;
	font-weight: 700;
	color: #2979ff;
	text-decoration: none;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #2979ff, #00e676);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ba-logo:hover {
	transform: scale(1.05);
	filter: brightness(1.2);
}

.ba-nav {
	display: flex;
	gap: 2.5rem;
	list-style: none;
}

.ba-nav-link {
	color: #e0e0e0;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.ba-nav-link:hover {
	color: #2979ff;
	background: rgba(41, 121, 255, 0.1);
	transform: translateY(-2px);
}

.ba-nav-link.ba-nav-active {
	color: #00e676;
	background: rgba(0, 230, 118, 0.1);
}

.ba-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #2979ff, #00e676);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.ba-nav-link:hover::after {
	width: 80%;
}

/* Mobile Navigation */
.ba-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #212121;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
}

.ba-mobile-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #2979ff;
}

.ba-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #2979ff;
	transition: all 0.3s ease;
}

.ba-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(30, 30, 30, 0.98);
	backdrop-filter: blur(20px);
	border-radius: 15px;
	margin-top: 1rem;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-mobile-nav.ba-active {
	display: block;
	animation: slideDown 0.3s ease;
}

.ba-mobile-nav .ba-nav {
	flex-direction: column;
	gap: 1rem;
}

/* Button Styles */
.ba-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ba-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 ease;
}

.ba-btn:hover::before {
	left: 100%;
}

.ba-btn-primary {
	background: linear-gradient(135deg, #2979ff, #1565c0);
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(41, 121, 255, 0.4);
}

.ba-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(41, 121, 255, 0.6);
	background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.ba-btn-secondary {
	background: linear-gradient(135deg, #00e676, #00c853);
	color: #121212;
	box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
}

.ba-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 230, 118, 0.6);
	background: linear-gradient(135deg, #00c853, #00a640);
}

.ba-btn-outline {
	background: transparent;
	color: #2979ff;
	border: 2px solid #2979ff;
}

.ba-btn-outline:hover {
	background: #2979ff;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(41, 121, 255, 0.3);
}

/* Card Styles */
.ba-card {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2979ff, #00e676);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ba-card:hover::before {
	transform: scaleX(1);
}

.ba-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	border-color: rgba(41, 121, 255, 0.3);
}

.ba-card-header {
	margin-bottom: 1.5rem;
}

.ba-card-icon {
	font-size: 3rem;
	color: #2979ff;
	margin-bottom: 1rem;
	display: block;
	animation: float 3s ease-in-out infinite;
}

.ba-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
}

.ba-card-body {
	color: #b0b0b0;
	line-height: 1.6;
}

/* Hero Section */
.ba-hero {
	background: linear-gradient(
			135deg,
			rgba(18, 18, 18, 0.8),
			rgba(30, 30, 30, 0.9)
		),
		url('assets/ba-hero.webp') bottom/cover;
	padding: 10rem 0 8rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ba-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(41, 121, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(0, 230, 118, 0.1) 0%,
			transparent 50%
		);
	animation: pulse 4s ease-in-out infinite;
}

.ba-hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.ba-hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #e0e0e0;
	background: linear-gradient(135deg, #e0e0e0, #2979ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ba-hero-subtitle {
	font-size: 1.3rem;
	color: #b0b0b0;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.ba-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

/* Feature Cards */
.ba-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ba-feature-card {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.ba-feature-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #2979ff, #00e676);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ba-feature-card:hover::after {
	transform: scaleX(1);
}

.ba-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ba-feature-icon {
	font-size: 3.5rem;
	color: #2979ff;
	margin-bottom: 1.5rem;
	display: block;
}

.ba-feature-card:nth-child(even) .ba-feature-icon {
	color: #00e676;
}

.ba-feature-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.ba-feature-text {
	color: #b0b0b0;
	line-height: 1.6;
}

/* Timeline Styles */
.ba-timeline {
	position: relative;
	padding: 2rem 0;
}

.ba-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, #2979ff, #00e676);
	transform: translateX(-50%);
}

.ba-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	display: flex;
	align-items: center;
}

.ba-timeline-item:nth-child(odd) {
	flex-direction: row;
}

.ba-timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.ba-timeline-content {
	background: #1e1e1e;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 45%;
	position: relative;
}

.ba-timeline-content::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	transform: translateY(-50%);
}

.ba-timeline-item:nth-child(odd) .ba-timeline-content::before {
	right: -20px;
	border-left-color: #1e1e1e;
}

.ba-timeline-item:nth-child(even) .ba-timeline-content::before {
	left: -20px;
	border-right-color: #1e1e1e;
}

.ba-timeline-number {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #2979ff, #00e676);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
	font-size: 1.2rem;
	z-index: 2;
}

.ba-timeline-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
}

.ba-timeline-text {
	color: #b0b0b0;
	line-height: 1.6;
}

/* Stats Section */
.ba-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ba-stat-item {
	text-align: center;
	padding: 2rem;
	background: rgba(30, 30, 30, 0.5);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #2979ff;
	display: block;
	margin-bottom: 0.5rem;
}

.ba-stat-item:nth-child(even) .ba-stat-number {
	color: #00e676;
}

.ba-stat-label {
	color: #b0b0b0;
	font-size: 1rem;
}

.ba-why-img {
	width: 100% !important;
	height: 100% !important;
}

.ba-why-img img {
	width: 100%;
	object-fit: contain;
	height: 100%;
}

/* Team Cards */
.ba-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ba-team-card {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ba-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	overflow: hidden;
	border: 3px solid #2979ff;
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #2979ff;
}

.ba-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ba-team-name {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
}

.ba-team-position {
	color: #2979ff;
	font-weight: 500;
	margin-bottom: 1rem;
}

.ba-team-bio {
	color: #b0b0b0;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.ba-team-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.ba-team-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: rgba(41, 121, 255, 0.1);
	color: #2979ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.ba-team-social a:hover {
	background: #2979ff;
	color: #ffffff;
	transform: translateY(-3px);
}

/* Testimonial Cards */
.ba-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ba-testimonial-card {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.ba-testimonial-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 2rem;
	font-size: 4rem;
	color: #2979ff;
	opacity: 0.5;
}

.ba-testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #b0b0b0;
	line-height: 1.6;
}

.ba-testimonial-author {
	display: flex;
	align-items: center;
}

.ba-testimonial-photo {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2979ff;
	font-size: 1.5rem;
}

.ba-testimonial-photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ba-testimonial-name {
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 0.2rem;
}

.ba-testimonial-company {
	color: #b0b0b0;
	font-size: 0.9rem;
}

/* Contact Form */
.ba-contact-section {
	background: #1a1a1a;
	padding: 6rem 0;
}

.ba-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.ba-form-wrapper {
	background: #1e1e1e;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-form-wrapper h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #e0e0e0;
	margin-bottom: 1rem;
	text-align: center;
}

.ba-form-description {
	color: #b0b0b0;
	text-align: center;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.ba-form-group {
	margin-bottom: 2rem;
	position: relative;
}

.ba-form-label {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 600;
	color: #e0e0e0;
	font-size: 0.95rem;
}

.ba-form-input,
.ba-form-textarea,
.ba-form-select {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 1rem;
	background: #121212;
	color: #e0e0e0;
	transition: all 0.3s ease;
	outline: none;
	font-family: 'Inter', sans-serif;
}

.ba-form-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}

.ba-form-input:focus,
.ba-form-textarea:focus,
.ba-form-select:focus {
	border-color: #2979ff;
	background: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(41, 121, 255, 0.1);
	transform: translateY(-2px);
}

.ba-form-input::placeholder,
.ba-form-textarea::placeholder {
	color: #666;
}

.ba-form-input.ba-error,
.ba-form-textarea.ba-error {
	border-color: #ff5252;
	box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1);
}

.ba-form-error {
	color: #ff5252;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
	animation: slideDown 0.3s ease;
}

.ba-form-error.ba-show {
	display: block;
}

/* Map Styles */
.ba-map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	height: 100%;
}

/* Map Section */
.ba-map {
	height: 100%;
	min-height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ba-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ba-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ba-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;
}

/* Стили для ошибок */

.ba-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Footer */
.ba-footer {
	background: #0f0f0f;
	color: #b0b0b0;
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.ba-footer-section h4 {
	color: #2979ff;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.ba-footer-links {
	list-style: none;
}

.ba-footer-links li {
	margin-bottom: 0.8rem;
}

.ba-footer-links a {
	color: #b0b0b0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ba-footer-links a:hover {
	color: #2979ff;
}

.ba-footer-contact {
	line-height: 1.8;
}

.ba-footer-contact p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
}

.ba-footer-contact i {
	color: #2979ff;
	margin-right: 0.8rem;
	width: 20px;
}

.ba-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #888;
}

/* Cookie Banner */
.ba-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(30, 30, 30, 0.98);
	backdrop-filter: blur(20px);
	color: #e0e0e0;
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	border-top: 2px solid #2979ff;
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.ba-cookie-banner.ba-show {
	transform: translateY(0);
}

.ba-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ba-cookie-text {
	flex: 1;
}

.ba-cookie-text a {
	color: #2979ff;
	text-decoration: underline;
}

.ba-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.ba-cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.ba-cookie-accept {
	background: #2979ff;
	color: #ffffff;
}

.ba-cookie-accept:hover {
	background: #1976d2;
	transform: translateY(-2px);
}

.ba-cookie-decline {
	background: transparent;
	color: #b0b0b0;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.ba-cookie-decline:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #e0e0e0;
}

/* Service Page Styles */
.ba-service-hero {
	background: linear-gradient(
		135deg,
		rgba(18, 18, 18, 0.9),
		rgba(30, 30, 30, 0.9)
	);
	padding: 8rem 0 6rem;
	text-align: center;
}

.ba-service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ba-service-card {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ba-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2979ff, #00e676);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ba-service-card:hover::before {
	transform: scaleX(1);
}

.ba-service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ba-service-icon {
	font-size: 3.5rem;
	color: #2979ff;
	margin-bottom: 1.5rem;
	display: block;
}

.ba-service-card:nth-child(even) .ba-service-icon {
	color: #00e676;
}

.ba-service-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.ba-service-description {
	color: #b0b0b0;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.ba-service-features {
	list-style: none;
	margin-bottom: 2rem;
}

.ba-service-features li {
	padding: 0.5rem 0;
	color: #b0b0b0;
	position: relative;
	padding-left: 1.5rem;
}

.ba-service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #00e676;
	font-weight: bold;
}

/* Case Study Styles */
.ba-case-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ba-case-card {
	background: #1e1e1e;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ba-case-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ba-case-header {
	padding: 2rem 2rem 1rem;
	background: linear-gradient(
		135deg,
		rgba(41, 121, 255, 0.1),
		rgba(0, 230, 118, 0.1)
	);
	min-height: 263px;
}

.ba-case-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.ba-case-description {
	color: #b0b0b0;
	line-height: 1.6;
}

.ba-case-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ba-case-section {
	margin-bottom: 1.5rem;
}

.ba-case-section h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2979ff;
	margin-bottom: 0.5rem;
}

.ba-case-section p {
	color: #b0b0b0;
	line-height: 1.6;
}

.ba-case-results {
	background: rgba(0, 230, 118, 0.1);
	padding: 1rem;
	border-radius: 8px;
	margin-top: auto;
	border-left: 3px solid #00e676;
}

/* Resources Page Styles */
.ba-articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ba-article-item {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.ba-article-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.ba-article-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.ba-article-excerpt {
	color: #b0b0b0;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ba-article-meta {
	color: #888;
	font-size: 0.9rem;
}

/* FAQ Styles */
.ba-faq-container {
	max-width: 800px;
	margin: 3rem auto;
}

.ba-faq-item {
	background: #1e1e1e;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.ba-faq-item.ba-active {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	border-color: rgba(41, 121, 255, 0.3);
}

.ba-faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.ba-faq-question:hover {
	background: rgba(255, 255, 255, 0.05);
}

.ba-faq-question h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #e0e0e0;
	margin: 0;
}

.ba-faq-icon {
	font-size: 1.2rem;
	color: #2979ff;
	transition: all 0.3s ease;
}

.ba-faq-item.ba-active .ba-faq-icon {
	transform: rotate(180deg);
	color: #00e676;
}

.ba-faq-answer {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.ba-faq-answer.ba-active {
	padding: 1rem 2rem 2rem;
	max-height: 1000px;
}

.ba-faq-answer p {
	color: #b0b0b0;
	line-height: 1.7;
	margin: 0;
}

/* Animations */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.6;
	}
}

/* Media Queries */
@media (max-width: 1024px) {
	.ba-header {
		left: 1rem;
		right: 1rem;
	}

	.ba-timeline::before {
		left: 30px;
	}

	.ba-timeline-item {
		flex-direction: row !important;
	}

	.ba-timeline-content {
		width: calc(100% - 80px);
		margin-left: 80px;
	}

	.ba-timeline-content::before {
		left: -20px !important;
		border-right-color: #1e1e1e !important;
		border-left-color: transparent !important;
	}

	.ba-timeline-number {
		left: 30px;
	}

	.ba-nav {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.ba-header {
		padding: 0.8rem 1.5rem;
	}

	.ba-nav {
		display: none;
	}

	.ba-mobile-toggle {
		display: flex;
	}

	.ba-mobile-nav.ba-active .ba-nav {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.ba-hero-title {
		font-size: 2.5rem;
	}

	.ba-hero-subtitle {
		font-size: 1.1rem;
	}

	.ba-section-title {
		font-size: 2rem;
	}

	.ba-container {
		padding: 0 1rem;
	}

	.ba-section {
		padding: 4rem 0;
	}

	.ba-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ba-contact-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ba-cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.ba-cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.ba-header {
		top: 10px;
		left: 0.5rem;
		right: 0.5rem;
		padding: 0.8rem 1rem;
	}

	.ba-hero {
		padding: 8rem 0 6rem;
	}

	.ba-hero-title {
		font-size: 2rem;
	}

	.ba-section {
		padding: 3rem 0;
	}

	.ba-features-grid,
	.ba-service-grid,
	.ba-case-grid,
	.ba-articles-grid {
		grid-template-columns: 1fr;
	}

	.ba-form-wrapper {
		padding: 2rem;
	}

	.ba-timeline-content {
		width: calc(100% - 60px);
		margin-left: 60px;
		padding: 1.5rem;
	}

	.ba-timeline-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
		left: 20px;
	}

	.ba-timeline::before {
		display: none;
	}

	.ba-testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

.ba-contact-hero {
	background: linear-gradient(
		135deg,
		rgba(41, 121, 255, 0.1),
		rgba(0, 230, 118, 0.05)
	);
	padding: 140px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ba-contact-hero::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="rgba(41,121,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

/* Contact Info Grid */
.ba-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.ba-contact-info-card {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(41, 121, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ba-contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #2979ff, transparent);
	transition: left 0.5s ease;
}

.ba-contact-info-card:hover::before {
	left: 100%;
}

.ba-contact-info-card:hover {
	transform: translateY(-5px);
	border-color: rgba(41, 121, 255, 0.3);
	box-shadow: 0 8px 32px rgba(41, 121, 255, 0.15);
}

.ba-contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2979ff, #1565c0);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.ba-contact-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 1rem;
}

.ba-contact-text {
	color: #b0b0b0;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.ba-contact-text a {
	color: #2979ff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ba-contact-text a:hover {
	color: #00e676;
}

.ba-contact-note {
	color: #808080;
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* Contact Container */
.ba-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

/* Contact Form Section */
.ba-contact-form-section {
	background: #1e1e1e;
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid rgba(41, 121, 255, 0.1);
}

.ba-contact-form-description {
	color: #b0b0b0;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.ba-contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ba-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.ba-form-group {
	display: flex;
	flex-direction: column;
}

.ba-form-label {
	color: #e0e0e0;
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.ba-form-input,
.ba-form-select,
.ba-form-textarea {
	background: #121212;
	border: 1px solid rgba(41, 121, 255, 0.2);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	color: #e0e0e0;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.ba-form-input:focus,
.ba-form-select:focus,
.ba-form-textarea:focus {
	outline: none;
	border-color: #2979ff;
	box-shadow: 0 0 0 2px rgba(41, 121, 255, 0.1);
}

.ba-form-input.ba-error,
.ba-form-select.ba-error,
.ba-form-textarea.ba-error {
	border-color: #ff5722;
	box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
}

.ba-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.ba-form-select {
	cursor: pointer;
}

.ba-form-error {
	color: #ff5722;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.ba-form-error.ba-show {
	opacity: 1;
	transform: translateY(0);
}

.ba-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1rem;
}

.ba-form-checkbox input[type='checkbox'] {
	width: 18px;
	height: 18px;
	accent-color: #2979ff;
	margin-top: 2px;
}

.ba-form-checkbox label {
	color: #b0b0b0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.ba-form-checkbox label a {
	color: #2979ff;
	text-decoration: none;
}

.ba-form-checkbox label a:hover {
	color: #00e676;
}

.ba-contact-submit {
	margin-top: 1rem;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
}

/* Contact Map Section */
.ba-contact-map-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	height: 100%;
}

.ba-contact-map-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 1rem;
}

.ba-contact-transport {
	background: #1e1e1e;
	padding: 1.5rem;
	border-radius: 16px;
	border: 1px solid rgba(41, 121, 255, 0.1);
}

.ba-contact-transport h4 {
	color: #e0e0e0;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.ba-transport-items {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ba-transport-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #b0b0b0;
	font-size: 0.875rem;
}

.ba-transport-item i {
	width: 20px;
	color: #2979ff;
	text-align: center;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
	.ba-contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ba-contact-form-section {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	.ba-contact-hero {
		padding: 120px 0 60px;
	}

	.ba-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ba-contact-info-card {
		padding: 1.5rem;
	}

	.ba-form-row {
		grid-template-columns: 1fr;
	}

	.ba-contact-form-section {
		padding: 1.5rem;
	}

	.ba-contact-map {
		height: 300px;
	}

	.ba-transport-items {
		gap: 0.5rem;
	}
}

@media (max-width: 480px) {
	.ba-contact-hero {
		padding: 100px 0 40px;
	}

	.ba-contact-info-card {
		padding: 1rem;
	}

	.ba-contact-icon {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.ba-contact-form-section {
		padding: 1rem;
	}

	.ba-form-input,
	.ba-form-select,
	.ba-form-textarea {
		padding: 0.625rem 0.75rem;
		font-size: 0.875rem;
	}

	.ba-contact-submit {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}

	.ba-title {
		font-size: 2rem;
	}

	.ba-heading-2 {
		font-size: 1.5rem;
	}
}

.ba-legal-hero {
	background: linear-gradient(
		135deg,
		rgba(18, 18, 18, 0.9),
		rgba(30, 30, 30, 0.9)
	);
	padding: 140px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ba-legal-hero::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="legal-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(41,121,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23legal-grid)"/></svg>');
	opacity: 0.3;
}

.ba-legal-title {
	font-size: 3rem;
	font-weight: 700;
	color: #e0e0e0;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.ba-legal-subtitle {
	font-size: 1.2rem;
	color: #b0b0b0;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
}

.ba-legal-date {
	display: inline-block;
	background: rgba(41, 121, 255, 0.1);
	color: #2979ff;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid rgba(41, 121, 255, 0.3);
	position: relative;
	z-index: 2;
}

/* Legal Content Layout */
.ba-legal-content {
	padding: 6rem 0;
	background: #121212;
}

.ba-legal-wrapper {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 4rem;
	align-items: start;
}

/* Table of Contents */
.ba-legal-toc {
	background: #1e1e1e;
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid rgba(41, 121, 255, 0.1);
	position: sticky;
	top: 120px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
}

.ba-legal-toc h3 {
	color: #2979ff;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
}

.ba-legal-toc ul {
	list-style: none;
	padding: 0;
}

.ba-legal-toc li {
	margin-bottom: 0.5rem;
}

.ba-legal-toc a {
	color: #b0b0b0;
	text-decoration: none;
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.4;
	transition: all 0.3s ease;
}

.ba-legal-toc a:hover {
	color: #2979ff;
	background: rgba(41, 121, 255, 0.1);
	transform: translateX(5px);
}

/* Legal Sections */
.ba-legal-sections {
	background: #1e1e1e;
	border-radius: 16px;
	padding: 3rem;
	border: 1px solid rgba(41, 121, 255, 0.1);
}

.ba-legal-section {
	margin-bottom: 3rem;
	scroll-margin-top: 140px;
}

.ba-legal-section:last-child {
	margin-bottom: 0;
}

.ba-legal-section h2 {
	color: #2979ff;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(41, 121, 255, 0.2);
}

.ba-legal-section h3 {
	color: #00e676;
	font-size: 1.3rem;
	font-weight: 500;
	margin: 2rem 0 1rem;
}

.ba-legal-section p {
	color: #b0b0b0;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	text-align: justify;
}

.ba-legal-section ul {
	margin: 1.5rem 0;
	padding-left: 0;
	list-style: none;
}

.ba-legal-section li {
	color: #b0b0b0;
	line-height: 1.6;
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
}

.ba-legal-section li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #2979ff;
	font-weight: bold;
}

.ba-legal-section strong {
	color: #e0e0e0;
	font-weight: 600;
}

.ba-legal-section a {
	color: #2979ff;
	text-decoration: none;
	border-bottom: 1px solid rgba(41, 121, 255, 0.3);
	transition: all 0.3s ease;
}

.ba-legal-section a:hover {
	color: #00e676;
	border-bottom-color: #00e676;
}

/* Special Content Blocks */
.ba-legal-important {
	background: linear-gradient(
		135deg,
		rgba(41, 121, 255, 0.1),
		rgba(0, 230, 118, 0.05)
	);
	border: 1px solid rgba(41, 121, 255, 0.3);
	border-left: 4px solid #2979ff;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 2rem 0;
}

.ba-legal-important p {
	color: #e0e0e0;
	margin-bottom: 0;
	font-weight: 500;
}

.ba-legal-highlight {
	background: rgba(0, 230, 118, 0.1);
	border: 1px solid rgba(0, 230, 118, 0.3);
	border-left: 4px solid #00e676;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 2rem 0;
}

.ba-legal-highlight p {
	color: #e0e0e0;
	margin-bottom: 0;
	font-style: italic;
}

.ba-legal-contact-block {
	background: #121212;
	border: 1px solid rgba(41, 121, 255, 0.2);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
}

.ba-legal-contact-block p {
	color: #b0b0b0;
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.ba-legal-contact-block strong {
	color: #2979ff;
}

.ba-legal-contact-block a {
	color: #00e676;
	text-decoration: none;
}

.ba-legal-contact-block a:hover {
	color: #2979ff;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
	.ba-legal-wrapper {
		grid-template-columns: 200px 1fr;
		gap: 3rem;
	}

	.ba-legal-toc {
		padding: 1.5rem;
	}

	.ba-legal-sections {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	.ba-legal-hero {
		padding: 120px 0 60px;
	}

	.ba-legal-title {
		font-size: 2.2rem;
	}

	.ba-legal-subtitle {
		font-size: 1.1rem;
	}

	.ba-legal-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ba-legal-toc {
		position: static;
		max-height: none;
		order: 2;
	}

	.ba-legal-sections {
		order: 1;
		padding: 1.5rem;
	}

	.ba-legal-section h2 {
		font-size: 1.5rem;
	}

	.ba-legal-contact-block {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.ba-legal-hero {
		padding: 100px 0 40px;
	}

	.ba-legal-title {
		font-size: 1.8rem;
	}

	.ba-legal-subtitle {
		font-size: 1rem;
	}

	.ba-legal-toc {
		padding: 1rem;
	}

	.ba-legal-sections {
		padding: 1rem;
	}

	.ba-legal-section {
		margin-bottom: 2rem;
	}

	.ba-legal-section p {
		text-align: left;
	}

	.ba-legal-important,
	.ba-legal-highlight {
		padding: 1rem;
		margin: 1rem 0;
	}

	.ba-legal-contact-block {
		padding: 1rem;
	}
}
