:root {
	--bsp-primary-color: #2e86ab;
	--bsp-secondary-color: #f6ae2d;
	--bsp-accent-color: #4ecdc4;
	--bsp-text-color: #333333;
	--bsp-bg-color: #ffffff;
	--bsp-section-bg: #f5f7fa;
	--bsp-font-family: 'Inter', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--bsp-font-family);
	background: var(--bsp-bg-color);
	color: var(--bsp-text-color);
	line-height: 1.6;
	scroll-behavior: smooth;
}

.bsp-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	/* padding: 0 20px; */
}

a {
	color: var(--bsp-primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--bsp-secondary-color);
}

/* Header Styles */
.bsp-header {
	background: var(--bsp-bg-color);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 3px solid var(--bsp-primary-color);
}

.bsp-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.bsp-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--bsp-text-color);
}

.bsp-nav {
	display: flex;
	gap: 1.5rem;
}

.bsp-nav .bsp-btn::after {
	display: none;
}

.bsp-nav a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--bsp-text-color);
	position: relative;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.bsp-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--bsp-primary-color);
	transition: width 0.3s ease;
}

.bsp-nav a:hover::after {
	width: 100%;
}

.bsp-nav a:hover {
	color: var(--bsp-primary-color);
}

/* Mobile Menu */
.bsp-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	background: none;
	border: none;
}

.bsp-mobile-toggle span {
	height: 3px;
	width: 25px;
	background: var(--bsp-text-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.bsp-mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 280px;
	height: 100vh;
	background: var(--bsp-bg-color);
	box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
	padding: 80px 30px 30px;
	transition: left 0.3s ease;
	z-index: 999;
}

.bsp-mobile-menu.active {
	left: 0;
}

.bsp-mobile-menu a {
	display: block;
	padding: 15px 0;
	color: var(--bsp-text-color);
	font-size: 1.1rem;
	font-weight: 500;
	border-bottom: 1px solid #eee;
}

.bsp-mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bsp-mobile-overlay.active {
	display: block;
	opacity: 1;
}

/* Hero Section */
.bsp-hero {
	background: linear-gradient(rgba(46, 134, 171, 0.8), rgba(46, 134, 171, 0.6)),
		url('assets/bsp-hero.webp') center/cover;
	color: white;
	text-align: left;
	padding: 150px 0 100px;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.bsp-hero-content {
	max-width: 600px;
}

.bsp-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.bsp-hero p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	line-height: 1.5;
}

.bsp-btn {
	display: inline-block;
	background: var(--bsp-secondary-color);
	color: white;
	padding: 15px 35px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.bsp-btn:hover {
	background: var(--bsp-accent-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bsp-btn-primary {
	background: var(--bsp-primary-color);
}

.bsp-btn-primary:hover {
	background: var(--bsp-secondary-color);
}

/* Section Styles */
.bsp-section {
	padding: 80px 0;
}

.bsp-section:nth-child(even) {
	background: var(--bsp-section-bg);
}

.bsp-section-title {
	text-align: center;
	margin-bottom: 60px;
}

.bsp-section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 2rem;
	color: var(--bsp-text-color);
}

.bsp-section-title p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Cards Grid */
.bsp-grid {
	display: grid;
	gap: 30px;
	margin-top: 40px;
}

.bsp-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.bsp-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.bsp-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bsp-grid-5 {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bsp-grid-6 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styles */
.bsp-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
}

.bsp-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bsp-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-bottom: 1px solid #eee;
}

.bsp-card-content {
	padding: 25px;
}

.bsp-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--bsp-text-color);
}

.bsp-card p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.bsp-card .bsp-btn {
	font-size: 0.9rem;
	padding: 10px 20px;
}

/* Step Cards */
.bsp-step-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
}

.bsp-step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--bsp-primary-color),
		var(--bsp-secondary-color)
	);
	border-radius: 15px 15px 0 0;
}

.bsp-step-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bsp-step-icon {
	font-size: 3rem;
	color: var(--bsp-primary-color);
	margin-bottom: 20px;
}

.bsp-step-number {
	background: var(--bsp-secondary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 0 auto 20px;
}

/* Materials Grid */
.bsp-material-card {
	background: white;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bsp-material-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 2rem;
}

.bsp-material-link a {
	margin-top: auto;
}

.bsp-material-card:hover {
	border-color: var(--bsp-primary-color);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bsp-material-icon {
	font-size: 2.5rem;
	color: var(--bsp-primary-color);
	margin-bottom: 15px;
}

.bsp-material-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--bsp-text-color);
}

.bsp-material-card p {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Technology Cards */
.bsp-tech-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bsp-tech-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bsp-tech-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.bsp-tech-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.bsp-tech-content a {
	margin-top: auto;
}

.bsp-tech-content p {
	margin-bottom: 2rem;
}

.bsp-tech-badge {
	background: var(--bsp-accent-color);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	display: inline-block;
	width: max-content;
	margin-bottom: 15px;
}

/* Legal/Juridical List */
.bsp-legal-list {
	display: grid;
	gap: 20px;
	margin-top: 40px;
}

.bsp-legal-item {
	background: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: all 0.3s ease;
}

.bsp-legal-item:hover {
	transform: translateX(10px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bsp-legal-icon {
	font-size: 2rem;
	color: var(--bsp-secondary-color);
	min-width: 50px;
}

.bsp-legal-content h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--bsp-text-color);
}

.bsp-legal-content p {
	color: #666;
	line-height: 1.6;
}

/* Contact Form */
.bsp-contact-section {
	padding: 80px 0;
	background: var(--bsp-section-bg);
}

.bsp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.bsp-form {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.bsp-form-group {
	margin-bottom: 25px;
}

.bsp-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--bsp-text-color);
}

.bsp-form-control {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e1e5e9;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: var(--bsp-font-family);
}

.bsp-form-control:focus {
	outline: none;
	border-color: var(--bsp-primary-color);
}

.bsp-form-control.error {
	border-color: #e74c3c;
}

.bsp-error-message {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.bsp-form-submit {
	background: var(--bsp-primary-color);
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.bsp-form-submit:hover {
	background: var(--bsp-secondary-color);
	transform: translateY(-2px);
}

/* Map Section */
.bsp-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.bsp-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.bsp-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.bsp-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;
}

/* Footer */
.bsp-footer {
	background: var(--bsp-text-color);
	color: white;
	padding: 60px 0 30px;
}

.bsp-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.bsp-footer-section h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--bsp-secondary-color);
}

.bsp-footer-section p,
.bsp-footer-section li {
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 10px;
}

.bsp-footer-section ul {
	list-style: none;
	padding-left: 0;
}

.bsp-footer-section a {
	color: #ccc;
	transition: color 0.3s ease;
}

.bsp-footer-section a:hover {
	color: var(--bsp-secondary-color);
}

.bsp-footer-section i {
	color: var(--bsp-primary-color);
	margin-right: 10px;
	width: 20px;
}

.bsp-footer-bottom {
	border-top: 1px solid #555;
	padding-top: 30px;
	text-align: center;
	color: #999;
}

.bsp-footer-bottom a {
	color: #ccc;
	margin: 0 10px;
}

/* Cookie Popup */
.bsp-cookie-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 25px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.4s ease;

	margin: 0 auto;
}

.bsp-cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.bsp-cookie-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bsp-cookie-text p {
	color: var(--bsp-text-color);
	line-height: 1.5;
	margin: 0;
	flex: 1;
}

.bsp-cookie-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.bsp-cookie-accept {
	background: var(--bsp-primary-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.bsp-cookie-accept:hover {
	background: var(--bsp-secondary-color);
}

.bsp-cookie-learn {
	color: var(--bsp-primary-color);
	font-size: 0.9rem;
	text-decoration: underline;
}

/* About Page Styles */
.bsp-about-hero {
	background: linear-gradient(
		135deg,
		var(--bsp-primary-color),
		var(--bsp-accent-color)
	);
	color: white;
	text-align: center;
	padding: 120px 0 80px;
}

.bsp-about-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 50px;
	align-items: center;
	margin: 60px 0;
}

.bsp-founder-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bsp-mission-card {
	background: white;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	margin: 40px 0;
}

.bsp-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.bsp-value-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.bsp-value-card:hover {
	transform: translateY(-5px);
}

.bsp-value-icon {
	font-size: 2.5rem;
	color: var(--bsp-primary-color);
	margin-bottom: 20px;
}

ul,
ol {
	padding-left: 1.2rem;
}

/* Materials Page Styles */
.bsp-comparison-table {
	background: white;
	border-radius: 15px;
	overflow-x: auto;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	margin: 40px 0;
}

.bsp-comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.bsp-comparison-table th {
	background: var(--bsp-primary-color);
	color: white;
	padding: 15px;
	text-align: left;
	font-weight: 600;
}

.bsp-comparison-table td {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.bsp-comparison-table tr:hover {
	background: var(--bsp-section-bg);
}

.bsp-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 30px 0;
}

.bsp-pros,
.bsp-cons {
	background: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bsp-pros ul,
.bsp-cons ul {
	padding-left: 0;
}

.bsp-pros {
	border-left: 4px solid #27ae60;
}

.bsp-cons {
	border-left: 4px solid #e74c3c;
}

.bsp-pros h4 {
	color: #27ae60;
	margin-bottom: 15px;
}

.bsp-cons h4 {
	color: #e74c3c;
	margin-bottom: 15px;
}

.bsp-pros ul,
.bsp-cons ul {
	list-style: none;
}

.bsp-pros li::before {
	content: '✓';
	color: #27ae60;
	font-weight: bold;
	margin-right: 10px;
}

.bsp-cons li::before {
	content: '✗';
	color: #e74c3c;
	font-weight: bold;
	margin-right: 10px;
}

/* Technologies Page Styles */
.bsp-tech-timeline {
	position: relative;
	margin: 60px 0;
}

.bsp-tech-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--bsp-primary-color);
	transform: translateX(-50%);
}

.bsp-timeline-item {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.bsp-timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.bsp-timeline-content {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	width: 45%;
	position: relative;
}

.bsp-timeline-item:nth-child(odd) .bsp-timeline-content {
	margin-right: 55%;
}

.bsp-timeline-item:nth-child(even) .bsp-timeline-content {
	margin-left: 55%;
}

.bsp-timeline-dot {
	position: absolute;
	left: 50%;
	top: 30px;
	width: 20px;
	height: 20px;
	background: var(--bsp-secondary-color);
	border-radius: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.bsp-grid-2 {
		grid-template-columns: 1fr;
	}

	.bsp-contact-grid {
		grid-template-columns: 1fr !important;
		gap: 40px;
	}

	.bsp-about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bsp-timeline-item {
		flex-direction: column !important;
	}

	.bsp-timeline-item .bsp-timeline-content {
		width: 100% !important;
		margin: 0 !important;
	}

	.bsp-tech-timeline::before {
		display: none;
	}

	.bsp-timeline-dot {
		display: none;
	}
}

@media (max-width: 830px) {
	.bsp-nav {
		display: none;
	}

	.bsp-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.bsp-hero {
		text-align: center;
		padding: 120px 0 60px;
	}

	.bsp-card-content h2 {
		font-size: 1.3rem;
	}

	.bsp-hero h1 {
		font-size: 2.5rem;
	}

	.bsp-hero p {
		font-size: 1.1rem;
	}

	.bsp-section {
		padding: 60px 0;
	}

	.bsp-section-title h2 {
		font-size: 2rem;
	}

	.bsp-grid-3,
	.bsp-grid-4,
	.bsp-grid-5,
	.bsp-grid-6 {
		grid-template-columns: 1fr;
	}

	.bsp-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bsp-cookie-content {
		flex-direction: column;
		gap: 15px;
	}

	.bsp-cookie-actions {
		width: 100%;
		justify-content: center;
	}

	.bsp-pros-cons {
		grid-template-columns: 1fr;
	}

	.bsp-values-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.bsp-hero h1 {
		font-size: 2rem;
	}

	.bsp-legal-list {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.bsp-hero p {
		font-size: 1rem;
	}

	.bsp-legal-item {
		flex-direction: column;
	}

	.bsp-section-title h2 {
		font-size: 1.8rem;
	}

	.bsp-card-content,
	.bsp-step-card,
	.bsp-form {
		padding: 20px;
	}

	.bsp-cookie-popup {
		bottom: 10px;
		left: 10px;
		right: 10px;
		padding: 20px;
	}

	.bsp-comparison-table {
		overflow-x: auto;
	}
}

.bsp-contact-section {
	padding: 80px 0;
	background: var(--bsp-section-bg);
}

.bsp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

/* Contact Cards */
.bsp-contact-info {
	display: grid;
	gap: 25px;
}

.bsp-contact-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 20px;
	transition: all 0.3s ease;
}

.bsp-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bsp-contact-icon {
	background: linear-gradient(
		135deg,
		var(--bsp-primary-color),
		var(--bsp-accent-color)
	);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.bsp-contact-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--bsp-text-color);
}

.bsp-contact-card p {
	color: var(--bsp-text-color);
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 8px;
}

.bsp-contact-card a {
	color: var(--bsp-primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.bsp-contact-card a:hover {
	color: var(--bsp-secondary-color);
}

.bsp-contact-card small {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Form Container */
.bsp-form-container {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bsp-form-container h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--bsp-text-color);
}

.bsp-form-container > p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}

.bsp-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.bsp-form-group {
	display: flex;
	flex-direction: column;
}

.bsp-form-group label {
	font-weight: 600;
	color: var(--bsp-text-color);
	margin-bottom: 8px;
	font-size: 1rem;
}

.bsp-form-control {
	width: 100%;
	padding: 15px 18px;
	border: 2px solid #e1e5e9;
	border-radius: 10px;
	font-size: 1rem;
	font-family: var(--bsp-font-family);
	transition: all 0.3s ease;
	background: #fafbfc;
}

.bsp-form-control:focus {
	outline: none;
	border-color: var(--bsp-primary-color);
	background: white;
	box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.bsp-form-control:hover {
	border-color: #d1d5db;
	background: white;
}

.bsp-form-control.error {
	border-color: #ef4444;
	background: #fef2f2;
}

.bsp-form-error {
	color: #ef4444;
	font-size: 0.9rem;
	margin-top: 6px;
	display: none;
	font-weight: 500;
}

.bsp-form-submit {
	background: var(--bsp-primary-color);
	color: white;
	padding: 18px 35px;
	border: none;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	align-self: flex-start;
}

.bsp-form-submit:hover {
	background: var(--bsp-secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bsp-form-submit:active {
	transform: translateY(0);
}

/* FAQ Section */
.bsp-faq-container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bsp-faq-item {
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s ease;
}

.bsp-faq-item:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.bsp-faq-question {
	width: 100%;
	padding: 25px 30px;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--bsp-text-color);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.bsp-faq-question:hover {
	background: var(--bsp-section-bg);
}

.bsp-faq-question i {
	color: var(--bsp-primary-color);
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.bsp-faq-item.active .bsp-faq-question i {
	transform: rotate(180deg);
}

.bsp-faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: #fafbfc;
}

.bsp-faq-item.active .bsp-faq-answer {
	padding: 0 30px 25px;
	max-height: 200px;
}

.bsp-faq-answer p {
	color: #666;
	line-height: 1.6;
	font-size: 1rem;
	margin: 0;
	padding-top: 15px;
}

/* Page Header */
.bsp-page-header {
	background: linear-gradient(
		135deg,
		var(--bsp-primary-color),
		var(--bsp-accent-color)
	);
	color: white;
	text-align: center;
	padding: 120px 0 80px;
	margin-top: 70px;
}

.bsp-page-header h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.bsp-page-header p {
	font-size: 1.3rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.bsp-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.bsp-form-container {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.bsp-page-header {
		padding: 100px 0 60px;
	}

	.bsp-page-header h1 {
		font-size: 2.2rem;
	}

	.bsp-page-header p {
		font-size: 1.1rem;
	}

	.bsp-contact-card {
		padding: 25px;
		flex-direction: column;
		text-align: center;
		justify-content: center;
		align-items: center;
		gap: 15px;
	}

	.bsp-contact-icon {
		align-self: center;
	}

	.bsp-form-container {
		padding: 25px;
	}

	.bsp-form-container h2 {
		font-size: 1.6rem;
	}

	.bsp-faq-question {
		padding: 20px;
		font-size: 1rem;
	}

	.bsp-faq-answer {
		padding: 0 20px;
	}

	.bsp-faq-item.active .bsp-faq-answer {
		padding: 0 20px 20px;
	}
}

@media (max-width: 480px) {
	.bsp-page-header h1 {
		font-size: 1.8rem;
	}

	.bsp-contact-card {
		padding: 20px;
	}

	.bsp-form-container {
		padding: 20px;
	}

	.bsp-form-control {
		padding: 12px 15px;
	}

	.bsp-form-submit {
		padding: 15px 25px;
		font-size: 1rem;
	}
}

.bsp-legal-page {
	padding: 100px 0 50px;
	background: #ffffff;
	min-height: 100vh;
}

.bsp-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 40px 0;
	background: linear-gradient(135deg, #2e86ab 0%, #4ecdc4 100%);
	color: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.2);
	transform: translateY(0);
	animation: bsp-fade-in 0.8s ease-out;
}

.bsp-legal-header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bsp-legal-date {
	font-size: 1.1rem;
	opacity: 0.9;
	font-weight: 400;
}

.bsp-legal-contents {
	max-width: 900px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.bsp-legal-section {
	padding: 40px;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
	transform: translateY(20px);

	animation: bsp-slide-up 0.6s ease-out forwards;
}

.bsp-legal-section:nth-child(1) {
	animation-delay: 0.1s;
}
.bsp-legal-section:nth-child(2) {
	animation-delay: 0.2s;
}
.bsp-legal-section:nth-child(3) {
	animation-delay: 0.3s;
}
.bsp-legal-section:nth-child(4) {
	animation-delay: 0.4s;
}
.bsp-legal-section:nth-child(5) {
	animation-delay: 0.5s;
}
.bsp-legal-section:nth-child(6) {
	animation-delay: 0.6s;
}
.bsp-legal-section:nth-child(7) {
	animation-delay: 0.7s;
}
.bsp-legal-section:nth-child(8) {
	animation-delay: 0.8s;
}
.bsp-legal-section:nth-child(9) {
	animation-delay: 0.9s;
}

.bsp-legal-section:last-child {
	border-bottom: none;
}

.bsp-legal-section::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #2e86ab 0%, #4ecdc4 100%);
	transform: scaleY(0);
	transition: transform 0.6s ease;
}

.bsp-legal-section:hover::before {
	transform: scaleY(1);
}

.bsp-legal-section h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2e86ab;
	margin-bottom: 20px;
	position: relative;
	padding-left: 20px;
}

.bsp-legal-section h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #f6ae2d;
	border-radius: 50%;
}

.bsp-legal-section p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333333;
	margin-bottom: 20px;
	text-align: justify;
}

.bsp-legal-section ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.bsp-legal-section li {
	position: relative;
	padding: 12px 0 12px 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #444444;
	border-left: 2px solid transparent;
	transition: all 0.3s ease;
}

.bsp-legal-section li:hover {
	background: #f5f7fa;
	border-left-color: #4ecdc4;
	padding-left: 35px;
}

.bsp-legal-section li:hover::before {
	transform: scale(1.2);
}

.bsp-legal-section li strong {
	color: #2e86ab;
	font-weight: 600;
}

/* .bsp-contact-info {
	margin-top: 30px;
	padding: 30px;
	background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
	border-radius: 12px;
	border-left: 5px solid #2e86ab;
}

.bsp-contact-info h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #2e86ab;
	margin-bottom: 20px;
}

.bsp-contact-info p {
	margin-bottom: 12px;
	font-size: 1rem;
	color: #333333;
	display: flex;
	align-items: center;
}

.bsp-contact-info i {
	margin-right: 10px;
	color: #4ecdc4;
	width: 20px;
	text-align: center;
}

.bsp-contact-info a {
	color: #2e86ab;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.bsp-contact-info a:hover {
	color: #f6ae2d;
	text-decoration: underline;
} */

/* Responsive Legal Pages */
@media (max-width: 768px) {
	.bsp-legal-header {
		margin-bottom: 30px;
		padding: 30px 20px;
	}

	.bsp-legal-header h1 {
		font-size: 2rem;
	}

	.bsp-legal-date {
		font-size: 1rem;
	}

	.bsp-legal-section {
		padding: 30px 25px;
	}

	.bsp-legal-section h2 {
		font-size: 1.5rem;
	}

	.bsp-legal-section p {
		font-size: 1rem;
		text-align: left;
	}

	.bsp-contact-info {
		padding: 20px;
		margin-top: 20px;
	}

	.bsp-contact-info h3 {
		font-size: 1.2rem;
	}

	.bsp-contact-info p {
		font-size: 0.95rem;
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.bsp-legal-header h1 {
		font-size: 1.3rem;
	}

	.bsp-legal-section {
		padding: 25px 20px;
	}

	.bsp-legal-section h2 {
		font-size: 1.3rem;
		padding-left: 15px;
	}

	.bsp-legal-section li {
		padding-left: 25px;
	}

	.bsp-legal-section li:hover {
		padding-left: 30px;
	}
}
