* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	color: #20252b;
	background-color: #f9fafb;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.35s ease;
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: 1rem;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #0d1117;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: -0.01em;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #5e6b74;
	margin-bottom: 1.25rem;
}

.bfa-lead-text {
	font-size: 1.375rem;
	font-weight: 400;
	color: #20252b;
	line-height: 1.7;
}

.bfa-small-text {
	font-size: 0.875rem;
	color: #5e6b74;
}

.bfa-accent-text {
	color: #1e90ff;
	font-weight: 600;
}

/* ========================================
   3. LAYOUT UTILITIES
   ======================================== */

.bfa-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bfa-container-wide {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
}

.bfa-section {
	padding: 5rem 0;
}

.bfa-section-lg {
	padding: 8rem 0;
}

.bfa-section-sm {
	padding: 3rem 0;
}

.bfa-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 3rem;
}

.bfa-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2.5rem;
}

.bfa-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.bfa-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bfa-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ========================================
   4. HEADER STYLES
   ======================================== */

.bfa-header {
	background: #ffffff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid #dadfe5;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.35s ease;
}

.bfa-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 2rem;
	max-width: 1440px;
	margin: 0 auto;
}

.bfa-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #0d1117;
	transition: transform 0.35s ease;
}

.bfa-logo:hover {
	transform: scale(1.05);
}

.bfa-logo-icon {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, #1e90ff 0%, #f6a800 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.25rem;
}

.bfa-nav {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.bfa-nav-list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.bfa-nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: #20252b;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.35s ease;
}

.bfa-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #1e90ff, #f6a800);
	transition: width 0.35s ease;
}

.bfa-nav-link:hover,
.bfa-nav-link.active {
	color: #1e90ff;
}

.bfa-nav-link:hover::after,
.bfa-nav-link.active::after {
	width: 100%;
}

.bfa-social-links {
	display: flex;
	gap: 1rem;
}

.bfa-social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f1f3f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5e6b74;
	transition: all 0.35s ease;
}

.bfa-social-link:hover {
	background: linear-gradient(135deg, #1e90ff, #f6a800);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(30, 144, 255, 0.3);
}

.bfa-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
}

.bfa-mobile-toggle span {
	width: 26px;
	height: 3px;
	background: #20252b;
	border-radius: 2px;
	transition: all 0.35s ease;
}

/* ========================================
   5. HERO SECTION
   ======================================== */

.bfa-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.bfa-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
	z-index: 0;
}

.bfa-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(30, 144, 255, 0.03) 0%,
		rgba(246, 168, 0, 0.02) 100%
	);
	z-index: 1;
}

.bfa-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 2rem;
}

.bfa-hero-title {
	font-size: clamp(3rem, 6vw, 5rem);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #0d1117 0%, #1e90ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: bfa-fade-up 0.8s ease-out;
}

.bfa-hero-subtitle {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	color: #5e6b74;
	margin-bottom: 2.5rem;
	line-height: 1.6;
	animation: bfa-fade-up 1s ease-out 0.2s both;
}

.bfa-hero-cta {
	animation: bfa-fade-up 1.2s ease-out 0.4s both;
}

/* ========================================
   6. BUTTONS
   ======================================== */

.bfa-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.35s ease;
	cursor: pointer;
	text-align: center;
	border: 2px solid transparent;
}

.bfa-btn-primary {
	background: linear-gradient(135deg, #1e90ff 0%, #0d6efd 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(30, 144, 255, 0.3);
}

.bfa-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(30, 144, 255, 0.4);
}

.bfa-btn-secondary {
	background: linear-gradient(135deg, #f6a800 0%, #ff9500 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(246, 168, 0, 0.3);
}

.bfa-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(246, 168, 0, 0.4);
}

.bfa-btn-outline {
	background: transparent;
	color: #1e90ff;
	border: 2px solid #1e90ff;
}

.bfa-btn-outline:hover {
	background: #1e90ff;
	color: #ffffff;
	transform: translateY(-2px);
}

.bfa-btn-lg {
	padding: 1.25rem 3rem;
	font-size: 1.25rem;
}

.bfa-btn-sm {
	padding: 0.75rem 1.75rem;
	font-size: 1rem;
}

/* ========================================
   7. CARDS
   ======================================== */

.bfa-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.35s ease;
	border: 1px solid #dadfe5;
}

.bfa-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(30, 144, 255, 0.15);
	border-color: #1e90ff;
}

.bfa-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	background: linear-gradient(135deg, #1e90ff 0%, #f6a800 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.bfa-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #0d1117;
}

.bfa-card-text {
	font-size: 1.125rem;
	color: #5e6b74;
	line-height: 1.7;
}

.bfa-card-interactive {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.bfa-card-interactive::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(30, 144, 255, 0.1),
		transparent
	);
	transition: left 0.6s ease;
}

.bfa-card-interactive:hover::before {
	left: 100%;
}

/* ========================================
   8. TIMELINE
   ======================================== */

.bfa-timeline {
	position: relative;
	padding: 3rem 0;
}

.bfa-timeline-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: center;
}

.bfa-timeline-content {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
	transition: all 0.35s ease;
}

.bfa-timeline-content:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(30, 144, 255, 0.15);
	border-color: #1e90ff;
}

.bfa-timeline-marker {
	width: 80px;

	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e90ff 0%, #f6a800 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.25rem;
	box-shadow: 0 8px 24px rgba(30, 144, 255, 0.3);
	position: relative;
	z-index: 2;
	display: none;
}

.bfa-timeline-item:nth-child(even) .bfa-timeline-content:first-child {
	text-align: right;
}

.bfa-timeline-year {
	font-size: 1.75rem;
	font-weight: 700;

	color: #1e90ff;
	margin-bottom: 0.75rem;
}

.bfa-timeline-title {
	font-size: 1.375rem;
	margin-bottom: 0.75rem;
}

.bfa-timeline-text {
	font-size: 1rem;
	color: #5e6b74;
}

/* ========================================
   9. TEAM CARDS
   ======================================== */

.bfa-team-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.35s ease;
	border: 1px solid #dadfe5;
}

.bfa-team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(30, 144, 255, 0.15);
}

.bfa-team-img {
	width: 100%;
	height: 280px;
	background: linear-gradient(135deg, #1e90ff 0%, #f6a800 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #ffffff;
}

.bfa-team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bfa-team-info {
	padding: 2rem;
}

.bfa-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #0d1117;
}

.bfa-team-role {
	font-size: 1.125rem;
	color: #1e90ff;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.bfa-team-bio {
	font-size: 1rem;
	color: #5e6b74;
	line-height: 1.7;
}

/* ========================================
   10. FORMS
   ======================================== */

.bfa-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bfa-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bfa-label {
	font-size: 1rem;
	font-weight: 600;
	color: #20252b;
}

.bfa-input,
.bfa-textarea {
	padding: 1rem 1.25rem;
	font-size: 1rem;
	border: 2px solid #dadfe5;
	border-radius: 10px;
	background: #ffffff;
	color: #20252b;
	transition: all 0.35s ease;
}

.bfa-input:focus,
.bfa-textarea:focus {
	outline: none;
	border-color: #1e90ff;
	box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.bfa-textarea {
	min-height: 160px;
	resize: vertical;
}

.bfa-form-error {
	font-size: 0.875rem;
	color: #dc3545;
	margin-top: 0.25rem;
}

.bfa-input.error,
.bfa-textarea.error {
	border-color: #dc3545;
}

/* ========================================
   11. FOOTER
   ======================================== */

.bfa-footer {
	background: #f1f3f5;
	padding: 4rem 0 2rem;
	border-top: 1px solid #dadfe5;
}

.bfa-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.bfa-footer-column h4 {
	font-size: 1.25rem;
	margin-bottom: 1.25rem;
	color: #0d1117;
}

.bfa-footer-text {
	font-size: 1rem;
	color: #5e6b74;
	line-height: 1.7;
}

.bfa-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bfa-footer-link {
	font-size: 1rem;
	color: #5e6b74;
	transition: all 0.35s ease;
	display: inline-block;
}

.bfa-footer-link:hover {
	color: #1e90ff;
	transform: translateX(4px);
}

.bfa-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bfa-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.bfa-contact-icon {
	color: #1e90ff;
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

.bfa-footer-bottom {
	border-top: 1px solid #dadfe5;
	padding-top: 2rem;
	text-align: center;
}

.bfa-copyright {
	font-size: 0.875rem;
	color: #5e6b74;
}

/* ========================================
   12. COOKIE POPUP
   ======================================== */

.bfa-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	padding: 2rem 2.5rem;
	border-radius: 16px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	max-width: 600px;
	width: 90%;
	border: 1px solid #dadfe5;
	animation: bfa-slide-up 0.5s ease-out;
}

.bfa-cookie-popup.hidden {
	display: none;
}

.bfa-cookie-text {
	font-size: 1rem;
	color: #5e6b74;
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

.bfa-cookie-text a {
	color: #1e90ff;
	text-decoration: underline;
}

.bfa-cookie-actions {
	display: flex;
	gap: 1rem;
}

/* ========================================
   13. ANIMATIONS
   ======================================== */

@keyframes bfa-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bfa-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes bfa-scale-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bfa-slide-up {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

@keyframes bfa-slide-right {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.bfa-animate-fade-up {
	animation: bfa-fade-up 0.8s ease-out;
}

.bfa-animate-fade-in {
	animation: bfa-fade-in 0.8s ease-out;
}

.bfa-animate-scale-in {
	animation: bfa-scale-in 0.6s ease-out;
}

/* Scroll animations */
.bfa-scroll-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.bfa-scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   14. SECTION TITLE
   ======================================== */

.bfa-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.bfa-section-subtitle {
	font-size: 1rem;
	font-weight: 600;
	color: #1e90ff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.bfa-section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1.25rem;
}

.bfa-section-description {
	font-size: 1.25rem;
	color: #5e6b74;
	line-height: 1.7;
}

/* ========================================
   15. CONTENT SECTIONS
   ======================================== */

.bfa-content-section {
	background: #ffffff;
	border-radius: 20px;
	padding: 4rem;
	margin-bottom: 3rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
}

.bfa-content-intro {
	font-size: 1.375rem;
	color: #20252b;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	border-left: 4px solid #1e90ff;
	padding-left: 2rem;
	font-style: italic;
}

.bfa-content-block {
	margin-bottom: 3rem;
}

.bfa-content-block:last-child {
	margin-bottom: 0;
}

.bfa-content-title {
	font-size: 1.75rem;
	word-wrap: break-word;
	margin-bottom: 1.25rem;
	color: #0d1117;
}

.bfa-content-text {
	font-size: 1.125rem;
	color: #5e6b74;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.bfa-content-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.bfa-content-list li {
	padding: 1rem 0 1rem 3rem;
	position: relative;
	font-size: 1.125rem;
	color: #5e6b74;
	border-bottom: 1px solid #dadfe5;
}

.bfa-content-list li:last-child {
	border-bottom: none;
}

.bfa-content-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #1e90ff 0%, #f6a800 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bfa-content-list li::after {
	content: '✓';
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	color: #ffffff;
	font-weight: 700;
	font-size: 1.125rem;
}

/* ========================================
   16. FEATURE CARDS
   ======================================== */

.bfa-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.bfa-feature-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.bfa-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #1e90ff, #f6a800);
	transform: scaleX(0);
	transition: transform 0.35s ease;
}

.bfa-feature-card:hover::before {
	transform: scaleX(1);
}

.bfa-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(30, 144, 255, 0.15);
}

.bfa-feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(30, 144, 255, 0.1) 0%,
		rgba(246, 168, 0, 0.1) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
}

.bfa-feature-title {
	font-size: 1.375rem;
	margin-bottom: 1rem;
}

.bfa-feature-text {
	font-size: 1rem;
	color: #5e6b74;
	line-height: 1.7;
}

/* ========================================
   17. ABOUT PAGE STYLES
   ======================================== */

.bfa-mission-card {
	background: linear-gradient(135deg, #1e90ff 0%, #0d6efd 100%);
	color: #ffffff;
	border-radius: 20px;
	padding: 4rem;
	text-align: center;
	margin: 4rem 0;
	box-shadow: 0 12px 40px rgba(30, 144, 255, 0.3);
}

.bfa-mission-card h2,
.bfa-mission-card p {
	color: #ffffff;
}

.bfa-mission-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.bfa-mission-text {
	font-size: 1.375rem;
	line-height: 1.8;
	max-width: 900px;
	margin: 0 auto;
}

.bfa-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin: 4rem 0;
}

.bfa-value-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 3rem 2.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
	transition: all 0.35s ease;
}

.bfa-value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(30, 144, 255, 0.15);
	border-color: #1e90ff;
}

.bfa-value-number {
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e90ff 0%, #f6a800 100%);
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 1.5rem;
}

.bfa-value-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.bfa-value-text {
	font-size: 1.125rem;
	color: #5e6b74;
	line-height: 1.7;
}

/* ========================================
   18. CONTACT PAGE STYLES
   ======================================== */

.bfa-contact-hero {
	background: linear-gradient(135deg, #1e90ff 0%, #0d6efd 100%);
	color: #ffffff;
	padding: 5rem 2rem;
	text-align: center;
	border-radius: 20px;
	margin-bottom: 4rem;
}

.bfa-contact-hero h1,
.bfa-contact-hero p {
	color: #ffffff;
}

.bfa-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.bfa-contact-info {
	background: #ffffff;
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
}

.bfa-contact-info h3 {
	font-size: 1.75rem;
	margin-bottom: 2rem;
}

.bfa-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #dadfe5;
}

.bfa-info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.bfa-info-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		rgba(30, 144, 255, 0.1) 0%,
		rgba(246, 168, 0, 0.1) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1e90ff;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.bfa-info-content h4 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: #0d1117;
}

.bfa-info-content p {
	font-size: 1rem;
	color: #5e6b74;
	margin: 0;
}

.bfa-contact-form-wrapper {
	background: #ffffff;
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
}

.bfa-map-container {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;

	border: 1px solid #dadfe5;
	background: #f1f3f5;

	color: #5e6b74;
	font-size: 1.125rem;
}

.cf-map {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bfa-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.bfa-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.bfa-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.bfa-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ========================================
   19. PRIVACY & LEGAL PAGES
   ======================================== */

.bfa-legal-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.bfa-legal-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid #dadfe5;
}

.bfa-legal-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.bfa-legal-updated {
	font-size: 1rem;
	color: #5e6b74;
}

.bfa-legal-section {
	background: #ffffff;
	border-radius: 16px;
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #dadfe5;
}

.bfa-legal-section h2 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: #0d1117;
	padding-bottom: 1rem;
	border-bottom: 2px solid #1e90ff;
}

.bfa-legal-section h3 {
	font-size: 1.375rem;
	margin: 2rem 0 1rem;
	color: #20252b;
}

.bfa-legal-section p {
	font-size: 1.125rem;
	color: #5e6b74;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.bfa-legal-section ul,
.bfa-legal-section ol {
	list-style-position: inside;
	margin: 1.5rem 0;
}

.bfa-legal-section li {
	font-size: 1.125rem;
	color: #5e6b74;
	line-height: 1.8;
	margin-bottom: 0.75rem;
}

/* ========================================
   20. RESPONSIVE STYLES
   ======================================== */

/* ========================================
   21. UTILITY CLASSES
   ======================================== */

.bfa-text-center {
	text-align: center;
}

.bfa-text-left {
	text-align: left;
}

.bfa-text-right {
	text-align: right;
}

.bfa-mt-1 {
	margin-top: 0.5rem;
}
.bfa-mt-2 {
	margin-top: 1rem;
}
.bfa-mt-3 {
	margin-top: 1.5rem;
}
.bfa-mt-4 {
	margin-top: 2rem;
}
.bfa-mt-5 {
	margin-top: 3rem;
}

.bfa-mb-1 {
	margin-bottom: 0.5rem;
}
.bfa-mb-2 {
	margin-bottom: 1rem;
}
.bfa-mb-3 {
	margin-bottom: 1.5rem;
}
.bfa-mb-4 {
	margin-bottom: 2rem;
}
.bfa-mb-5 {
	margin-bottom: 3rem;
}

.bfa-pt-1 {
	padding-top: 0.5rem;
}
.bfa-pt-2 {
	padding-top: 1rem;
}
.bfa-pt-3 {
	padding-top: 1.5rem;
}
.bfa-pt-4 {
	padding-top: 2rem;
}
.bfa-pt-5 {
	padding-top: 3rem;
}

.bfa-pb-1 {
	padding-bottom: 0.5rem;
}
.bfa-pb-2 {
	padding-bottom: 1rem;
}
.bfa-pb-3 {
	padding-bottom: 1.5rem;
}
.bfa-pb-4 {
	padding-bottom: 2rem;
}
.bfa-pb-5 {
	padding-bottom: 3rem;
}

.bfa-hidden {
	display: none;
}

.bfa-visible {
	display: block;
}

@media (max-width: 1200px) {
	.bfa-timeline-marker {
		width: 60px;
		height: 60px;
		font-size: 1rem;
	}
}

@media (max-width: 1060px) {
	.bfa-mobile-toggle {
		display: flex;
	}

	.bfa-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 300px;
		height: 100vh;
		background: #ffffff;
		box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		padding: 5rem 2rem 2rem;
		gap: 2rem;
		transition: left 0.35s ease;
		z-index: 999;
	}

	.bfa-nav.active {
		left: 0;
	}

	.bfa-nav-list {
		flex-direction: column;
		gap: 1.5rem;
	}
}

@media (max-width: 992px) {
	.bfa-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bfa-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.bfa-section {
		padding: 3rem 0;
	}

	.bfa-section-lg {
		padding: 5rem 0;
	}

	.bfa-container {
		padding: 0 1.5rem;
	}

	.bfa-hero {
		min-height: 70vh;
	}

	.bfa-grid-2,
	.bfa-grid-3,
	.bfa-grid-4 {
		grid-template-columns: 1fr;
	}

	.bfa-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.bfa-content-section {
		padding: 2.5rem 1.5rem;
	}

	.bfa-legal-section {
		padding: 2rem 1.5rem;
	}

	.bfa-cookie-popup {
		bottom: 1rem;
		left: 1rem;
		right: 1rem;
		transform: none;
		width: auto;
		padding: 1.5rem;
	}

	.bfa-cookie-actions {
		flex-direction: column;
	}

	.bfa-hero-title {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.bfa-grid-2,
	.bfa-grid-3,
	.bfa-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
	}

	.bfa-hero-content {
		padding: 1rem;
	}

	.bfa-btn {
		padding: 0.875rem 2rem;
		font-size: 1rem;
	}

	.bfa-card {
		padding: 1.5rem;
	}

	.bfa-header-container {
		padding: 1rem 1.5rem;
	}

	.bfa-logo {
		font-size: 1rem;
	}

	.bfa-logo-icon {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.bfa-timeline-marker {
		width: 50px;
		height: 50px;
		font-size: 0.875rem;
	}

	.bfa-mission-card,
	.bfa-contact-hero {
		padding: 2.5rem 1.5rem;
	}
	.bfa-content-title {
		font-size: 1.5rem;
	}
	.bfa-hero-title {
		font-size: 1.5rem;
	}

	.bfa-content-intro,
	.bfa-mission-text {
		font-size: 1.1rem;
	}

	.bfa-section-title,
	.bfa-value-title,
	.bfa-mission-title {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.bfa-values-grid,
	.bfa-contact-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.bfa-feature-title {
		font-size: 1rem;
	}

	.bfa-grid-small {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
	}
	.bfa-info-item {
		flex-direction: column;
	}
}

:root {
	--bfa-legal-bg-main: #f9fafb;
	--bfa-legal-bg-content: #ffffff;
	--bfa-legal-accent-blue: #1e90ff;
	--bfa-legal-accent-gold: #f6a800;
	--bfa-legal-divider: #dadfe5;
	--bfa-legal-text-primary: #20252b;
	--bfa-legal-text-secondary: #5e6b74;
	--bfa-legal-text-heading: #0d1117;
	--bfa-legal-shadow: rgba(0, 0, 0, 0.08);
	--bfa-legal-shadow-hover: rgba(0, 0, 0, 0.12);
	--bfa-legal-link-hover: #0d6efd;
}

.bfa-legal-container {
	min-height: 100vh;
	padding: 60px 20px;
}

/* Основной контент */
.bfa-legal-content {
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--bfa-legal-bg-content);
	border-radius: 12px;
	box-shadow: 0 2px 12px var(--bfa-legal-shadow);
	padding: 60px;
	transition: box-shadow 0.3s ease;
}

.bfa-legal-content:hover {
	box-shadow: 0 4px 20px var(--bfa-legal-shadow-hover);
}

/* Заголовок страницы */
.bfa-legal-header {
	border-bottom: 3px solid var(--bfa-legal-accent-blue);
	padding-bottom: 30px;
	margin-bottom: 40px;
}

.bfa-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--bfa-legal-text-heading);
	letter-spacing: -0.5px;
	margin-bottom: 12px;
	line-height: 1.2;
}

.bfa-legal-date {
	font-size: 14px;
	color: var(--bfa-legal-text-secondary);
	font-weight: 500;
}

/* Введение */
.bfa-legal-intro {
	background: linear-gradient(
		135deg,
		rgba(30, 144, 255, 0.05) 0%,
		rgba(246, 168, 0, 0.05) 100%
	);
	border-left: 4px solid var(--bfa-legal-accent-blue);
	padding: 24px 28px;
	margin-bottom: 48px;
	border-radius: 8px;
	font-size: 17px;
	line-height: 1.8;
	color: var(--bfa-legal-text-primary);
}

/* Секции */
.bfa-legal-section {
	margin-bottom: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--bfa-legal-divider);
}

.bfa-legal-section:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.bfa-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--bfa-legal-text-heading);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.bfa-legal-section-title::before {
	content: '';
	width: 5px;
	height: 28px;
	background: linear-gradient(
		180deg,
		var(--bfa-legal-accent-blue) 0%,
		var(--bfa-legal-accent-gold) 100%
	);
	border-radius: 3px;
}

/* Подзаголовки */
.bfa-legal-subsection-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--bfa-legal-text-heading);
	margin-top: 28px;
	margin-bottom: 16px;
}

/* Текстовый контент */
.bfa-legal-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--bfa-legal-text-primary);
}

.bfa-legal-text p {
	margin-bottom: 16px;
}

.bfa-legal-text p:last-child {
	margin-bottom: 0;
}

/* Списки */
.bfa-legal-list {
	list-style: none;
	margin: 20px 0;
	padding-left: 0;
}

.bfa-legal-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 14px;
	line-height: 1.8;
}

.bfa-legal-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	background-color: var(--bfa-legal-accent-blue);
	border-radius: 50%;
}

.bfa-legal-list li strong {
	color: var(--bfa-legal-text-heading);
	font-weight: 600;
}

/* Вложенные списки */
.bfa-legal-list ul {
	margin-top: 12px;
	margin-left: 20px;
}

.bfa-legal-list ul li::before {
	background-color: var(--bfa-legal-accent-gold);
	width: 6px;
	height: 6px;
	top: 11px;
}

/* Таблицы */
.bfa-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 28px 0;
	background-color: var(--bfa-legal-bg-content);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px var(--bfa-legal-shadow);
}

.bfa-legal-table thead {
	background: linear-gradient(
		135deg,
		var(--bfa-legal-accent-blue) 0%,
		#0d6efd 100%
	);
}

.bfa-legal-table thead tr th {
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	padding: 16px 20px;
	text-align: left;
	letter-spacing: 0.3px;
}

.bfa-legal-table tbody tr {
	border-bottom: 1px solid var(--bfa-legal-divider);
	transition: background-color 0.2s ease;
}

.bfa-legal-table tbody tr:hover {
	background-color: rgba(30, 144, 255, 0.03);
}

.bfa-legal-table tbody tr:last-child {
	border-bottom: none;
}

.bfa-legal-table tbody tr td {
	padding: 16px 20px;
	font-size: 15px;
	color: var(--bfa-legal-text-primary);
}

.bfa-legal-table tbody tr td:first-child {
	font-weight: 600;
	color: var(--bfa-legal-text-heading);
}

/* Ссылки */
.bfa-legal-link {
	color: var(--bfa-legal-accent-blue);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	position: relative;
}

.bfa-legal-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--bfa-legal-accent-blue);
	transition: width 0.3s ease;
}

.bfa-legal-link:hover {
	color: var(--bfa-legal-link-hover);
}

.bfa-legal-link:hover::after {
	width: 100%;
}

/* Контактный блок */
.bfa-legal-contact {
	background: linear-gradient(
		135deg,
		rgba(30, 144, 255, 0.08) 0%,
		rgba(246, 168, 0, 0.08) 100%
	);
	border-radius: 12px;
	padding: 36px;
	margin-top: 48px;
	border: 2px solid var(--bfa-legal-divider);
}

.bfa-legal-contact-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--bfa-legal-text-heading);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.bfa-legal-contact-title::before {
	content: '📞';
	font-size: 28px;
}

.bfa-legal-contact p {
	margin-bottom: 12px;
	color: var(--bfa-legal-text-primary);
	line-height: 1.7;
}

.bfa-legal-contact-details {
	margin-top: 20px;
	padding: 24px;
	background-color: var(--bfa-legal-bg-content);
	border-radius: 8px;
	border-left: 4px solid var(--bfa-legal-accent-gold);
}

.bfa-legal-contact-details p {
	margin-bottom: 10px;
	font-size: 15px;
}

.bfa-legal-contact-details p strong {
	color: var(--bfa-legal-text-heading);
	font-weight: 700;
	font-size: 18px;
	display: block;
	margin-bottom: 8px;
}

/* Адаптивность для планшетов */
@media screen and (max-width: 768px) {
	.bfa-legal-container {
		padding: 40px 16px;
	}

	.bfa-legal-content {
		padding: 40px 28px;
		border-radius: 8px;
	}

	.bfa-legal-title {
		font-size: 2rem;
	}

	.bfa-legal-section-title {
		font-size: 24px;
	}

	.bfa-legal-subsection-title {
		font-size: 18px;
	}

	.bfa-legal-intro {
		padding: 20px 24px;
		font-size: 16px;
	}

	.bfa-legal-table {
		font-size: 14px;
	}

	.bfa-legal-table thead tr th,
	.bfa-legal-table tbody tr td {
		padding: 12px 16px;
	}

	.bfa-legal-contact {
		padding: 28px;
	}

	.bfa-legal-contact-details {
		padding: 20px;
	}
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 480px) {
	.bfa-legal-section h2 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.bfa-legal-container {
		padding: 24px 12px;
	}

	.bfa-legal-content {
		padding: 28px 20px;
		border-radius: 6px;
	}

	.bfa-legal-header {
		padding-bottom: 24px;
		margin-bottom: 32px;
	}

	.bfa-legal-title {
		font-size: 1.3rem;
		letter-spacing: -0.3px;
	}

	.bfa-legal-date {
		font-size: 13px;
	}

	.bfa-legal-section {
		margin-bottom: 36px;
		padding-bottom: 32px;
	}

	.bfa-legal-section-title {
		font-size: 20px;
	}

	.bfa-legal-section-title::before {
		width: 4px;
		height: 24px;
	}

	.bfa-legal-subsection-title {
		font-size: 17px;
		margin-top: 20px;
	}

	.bfa-legal-intro {
		padding: 18px 20px;
		font-size: 15px;
		margin-bottom: 36px;
	}

	.bfa-legal-text {
		font-size: 15px;
	}

	.bfa-legal-list li {
		padding-left: 28px;
		margin-bottom: 12px;
		word-wrap: break-word;
	}

	.bfa-legal-list li::before {
		width: 7px;
		height: 7px;
		top: 9px;
	}

	/* Таблицы на мобильных */
	.bfa-legal-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.bfa-legal-table thead {
		display: none;
	}

	.bfa-legal-table tbody tr {
		display: block;
		margin-bottom: 16px;
		border: 1px solid var(--bfa-legal-divider);
		border-radius: 6px;
		padding: 12px;
	}

	.bfa-legal-table tbody tr td {
		display: block;
		text-align: left;
		padding: 8px 0;
		border: none;
	}

	.bfa-legal-table tbody tr td::before {
		content: attr(data-label);
		font-weight: 600;
		color: var(--bfa-legal-text-heading);
		display: block;
		margin-bottom: 4px;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.bfa-legal-contact {
		padding: 24px 20px;
		margin-top: 36px;
	}

	.bfa-legal-contact-title {
		font-size: 20px;
	}

	.bfa-legal-contact-title::before {
		font-size: 24px;
	}

	.bfa-legal-contact-details {
		padding: 18px;
	}

	.bfa-legal-contact-details p strong {
		font-size: 16px;
	}

	.bfa-card-text {
		font-size: 1rem;
	}
}
