* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #212121;
	background-color: #f5f7fa;
	overflow-x: hidden;
}

/* Typography */
.bmh-title-primary {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.2;
	color: #212121;
	margin-bottom: 1rem;
}

.bmh-title-secondary {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.3;
	color: #212121;
	margin-bottom: 1.5rem;
}

.bmh-title-tertiary {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.4;
	color: #212121;
	margin-bottom: 1rem;
}

.bmh-subtitle {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.bmh-text-regular {
	font-size: 1rem;
	line-height: 1.6;
	color: #212121;
	margin-bottom: 1rem;
}

.bmh-text-small {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

/* Layout Utilities */
.bmh-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.bmh-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.bmh-section {
	padding: 80px 0;
}

.bmh-section-small {
	padding: 60px 0;
}

.bmh-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.bmh-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.bmh-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.bmh-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bmh-text-center {
	text-align: center;
}

/* Header Styles */
.bmh-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1200px;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 15px 30px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bmh-header.bmh-scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.98);
}

.bmh-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bmh-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.bmh-logo:hover {
	transform: scale(1.05);
}

.bmh-logo-icon {
	font-size: 1.8rem;
	color: #0288d1;
	margin-right: 10px;
}

.bmh-logo-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	color: #0288d1;
	text-decoration: none;
}

.bmh-nav {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.bmh-nav-item {
	position: relative;
}

.bmh-nav-link {
	text-decoration: none;
	color: #212121;
	font-weight: 500;
	transition: color 0.3s ease;
	padding: 8px 0;
	position: relative;
}

.bmh-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #0288d1;
	transition: width 0.3s ease;
}

.bmh-nav-link:hover {
	color: #0288d1;
}

.bmh-nav-link:hover::after {
	width: 100%;
}

.bmh-mobile-menu-btn {
	display: none;
	background: none;
	position: relative;
	z-index: 1005;
	border: none;
	font-size: 1.5rem;
	color: #212121;
	cursor: pointer;
}

/* Hero Section */
.bmh-hero {
	height: 100vh;
	background: linear-gradient(
			135deg,
			rgba(2, 136, 209, 0.8),
			rgba(123, 31, 162, 0.8)
		),
		url('assets/bmh-hero.webp');
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

.bmh-hero-content {
	max-width: 800px;
	padding: 0 20px;
	animation: bmh-fade-in 1s ease-out;
}

.bmh-hero-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bmh-hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	line-height: 1.6;
}

.bmh-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Button Styles */
.bmh-btn {
	display: inline-block;
	padding: 15px 30px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.bmh-btn-primary {
	background: #0288d1;
	color: white;
	box-shadow: 0 5px 15px rgba(2, 136, 209, 0.3);
}

.bmh-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(2, 136, 209, 0.4);
	background: #0277bd;
}

.bmh-btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.bmh-btn-secondary:hover {
	background: white;
	color: #0288d1;
	transform: translateY(-2px);
}

.bmh-btn-accent {
	background: #ffb300;
	color: white;
	box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
}

.bmh-btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 179, 0, 0.4);
	background: #ff8f00;
}

/* Card Styles */
.bmh-card {
	background: white;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bmh-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bmh-card-icon {
	font-size: 3rem;
	color: #0288d1;
	margin-bottom: 1.5rem;
	display: block;
}

.bmh-card-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	color: #212121;
	margin-bottom: 1rem;
}

.bmh-card-text {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/* Exploration Section */
.bmh-exploration {
	background: white;
	padding: 100px 0;
}

.bmh-exploration-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bmh-exploration-title {
	color: #0288d1;
	margin-bottom: 1rem;
}

.bmh-exploration-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.bmh-exploration-card {
	position: relative;
}

.bmh-exploration-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(45deg, #0288d1, #7b1fa2);
	border-radius: 2px;
}

/* News Section */
.bmh-news {
	background: #f5f7fa;
	padding: 100px 0;
}

.bmh-news-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bmh-news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 3rem;
}

.bmh-news-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.bmh-news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bmh-news-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #0288d1, #7b1fa2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 4rem;
}

.bmh-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bmh-news-content {
	padding: 2rem;
}

.bmh-news-date {
	color: #ffb300;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.bmh-news-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	color: #212121;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.bmh-news-excerpt {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.bmh-news-link {
	color: #0288d1;
	text-decoration: none;
	font-weight: 500;
	position: relative;
}

.bmh-news-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #0288d1;
	transition: width 0.3s ease;
}

.bmh-news-link:hover::after {
	width: 100%;
}

/* Testimonials Section */
.bmh-testimonials {
	background: white;
	padding: 100px 0;
}

.bmh-testimonials-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bmh-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.bmh-testimonial-card {
	background: #f5f7fa;
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
}

.bmh-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bmh-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0288d1, #7b1fa2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 2rem;
	font-weight: 600;
}

.bmh-testimonial-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.bmh-testimonial-quote {
	font-style: italic;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	position: relative;
}

.bmh-testimonial-quote::before {
	content: '"';
	font-size: 4rem;
	color: #0288d1;
	position: absolute;
	top: -20px;
	left: -10px;
	opacity: 0.3;
}

.bmh-testimonial-name {
	font-weight: 600;
	color: #212121;
	margin-bottom: 0.5rem;
}

.bmh-testimonial-role {
	color: #0288d1;
	font-size: 0.9rem;
}

/* FAQ Section */
.bmh-faq {
	background: #f5f7fa;
	padding: 100px 0;
}

.bmh-faq-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bmh-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.bmh-faq-item {
	background: white;
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bmh-faq-question {
	padding: 1.5rem 2rem;
	background: white;
	border: none;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 500;
	color: #212121;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s ease;
}

.bmh-faq-question:hover {
	background: #f5f7fa;
}

.bmh-faq-question.active {
	background: #0288d1;
	color: white;
}

.bmh-faq-icon {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.bmh-faq-question.active .bmh-faq-icon {
	transform: rotate(45deg);
}

.bmh-faq-answer {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.bmh-faq-answer.active {
	max-height: 1500px;
	padding: 1.5rem 2rem;
}

.bmh-faq-answer-text {
	color: #666;
	line-height: 1.6;
}

/* Plans Section */
.bmh-plans {
	background: white;
	padding: 100px 0;
}

.bmh-plans-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bmh-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.bmh-plan-card {
	background: white;
	border: 2px solid #f5f7fa;
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bmh-plan-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.bmh-plan-link a {
	margin-top: auto;
}

.bmh-plan-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-color: #0288d1;
}

.bmh-plan-featured {
	border-color: #0288d1;
	transform: scale(1.05);
}

.bmh-plan-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffb300;
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.bmh-plan-name {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #212121;
	margin-bottom: 1rem;
}

.bmh-plan-price {
	font-size: 3rem;
	font-weight: 600;
	color: #0288d1;
	margin-bottom: 0.5rem;
}

.bmh-plan-currency {
	font-size: 1.5rem;
}

.bmh-plan-period {
	color: #666;
	margin-bottom: 2rem;
}

.bmh-plan-features {
	list-style: none;
	margin-bottom: 2rem;
}

.bmh-plan-feature {
	padding: 0.5rem 0;
	color: #666;
	position: relative;
	padding-left: 2rem;
}

.bmh-plan-feature::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0288d1;
	font-weight: 600;
}

/* Contact Section */
.bmh-contact {
	background: #f5f7fa;
	padding: 100px 0;
}

.bmh-contact-header {
	text-align: center;
	margin-bottom: 4rem;
}

.bmh-contact-container {
	max-width: 600px;
	margin: 0 auto;
}

.bmh-form {
	background: white;
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bmh-form-group {
	margin-bottom: 1.5rem;
}

.bmh-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #212121;
}

.bmh-form-input,
.bmh-form-textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #f5f7fa;
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.bmh-form-input:focus,
.bmh-form-textarea:focus {
	outline: none;
	border-color: #0288d1;
}

.bmh-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.bmh-form-error {
	color: #d32f2f;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.bmh-form-input.error,
.bmh-form-textarea.error {
	border-color: #d32f2f;
}

.bmh-form-input.error + .bmh-form-error,
.bmh-form-textarea.error + .bmh-form-error {
	display: block;
}

.bmh-form-submit {
	width: 100%;
	padding: 15px;
	background: #0288d1;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.bmh-form-submit:hover {
	background: #0277bd;
	transform: translateY(-2px);
}

/* Footer */
.bmh-footer {
	background: #f5f7fa;
	padding: 60px 0 30px;
	border-top: 1px solid #e0e0e0;
}

.bmh-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.bmh-footer-section h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #212121;
	margin-bottom: 1.5rem;
}

.bmh-footer-logo {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.bmh-footer-logo-icon {
	font-size: 1.5rem;
	color: #0288d1;
	margin-right: 10px;
}

.bmh-footer-logo-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	color: #0288d1;
}

.bmh-footer-slogan {
	color: #666;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.bmh-footer-nav {
	list-style: none;
}

.bmh-footer-nav li {
	margin-bottom: 0.8rem;
}

.bmh-footer-nav a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.bmh-footer-nav a:hover {
	color: #0288d1;
}

.bmh-footer-contact {
	color: #666;
}

.bmh-footer-contact strong {
	color: #212121;
}

.bmh-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
	color: #666;
}

/* Cookie Popup */
.bmh-cookie-popup {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	max-width: 400px;
}

.bmh-cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.bmh-cookie-text {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

.bmh-cookie-text a {
	color: #0288d1;
	text-decoration: none;
}

.bmh-cookie-text a:hover {
	text-decoration: underline;
}

.bmh-cookie-button {
	background: #0288d1;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.3s ease;
}

.bmh-cookie-button:hover {
	background: #0277bd;
}

/* Animations */
@keyframes bmh-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bmh-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes bmh-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.bmh-animate-fade-in {
	animation: bmh-fade-in 0.8s ease-out;
}

.bmh-animate-slide-left {
	animation: bmh-slide-in-left 0.8s ease-out;
}

.bmh-animate-slide-right {
	animation: bmh-slide-in-right 0.8s ease-out;
}

/* Print Styles */
@media print {
	.bmh-header,
	.bmh-cookie-popup {
		display: none;
	}

	.bmh-hero {
		background: none;
		color: #212121;
	}

	.bmh-btn {
		border: 1px solid #212121;
		background: none;
		color: #212121;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.bmh-card {
		border: 1px solid #212121;
	}

	.bmh-btn-primary {
		border: 1px solid #212121;
	}
}

/* Responsive Design */
@media (max-width: 900px) {
	.bmh-nav {
		position: fixed;
		top: 0;
		left: -105%;
		width: 100%;
		border-radius: 15px;
		height: calc(100vh - 200px);
		background: white;
		flex-direction: column;
		align-items: flex-start;
		padding: 100px 30px 30px;
		transition: left 0.3s ease;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
		gap: 0;
	}

	.bmh-nav.active {
		left: 0;
	}

	.bmh-nav-item {
		width: 100%;
		padding: 15px 0;
		border-bottom: 1px solid #f5f7fa;
	}

	.bmh-mobile-menu-btn {
		display: block;
	}
}

@media (max-width: 768px) {
	.bmh-header {
		top: 10px;
		width: calc(100% - 20px);
		padding: 12px 20px;
	}

	.bmh-hero-title {
		font-size: 2.5rem;
	}

	.bmh-hero-subtitle {
		font-size: 1.1rem;
	}

	.bmh-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.bmh-title-primary {
		font-size: 2rem;
	}

	.bmh-title-secondary {
		font-size: 1.8rem;
	}

	.bmh-grid-3,
	.bmh-grid-2 {
		grid-template-columns: 1fr;
	}

	.bmh-section {
		padding: 60px 0;
	}

	.bmh-news-grid {
		grid-template-columns: 1fr;
	}

	.bmh-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bmh-form {
		padding: 2rem;
	}

	.bmh-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
	.bmh-footer-logo {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.bmh-container,
	.bmh-container-wide {
		padding: 0 15px;
	}

	.bmh-hero-title {
		font-size: 2rem;
	}

	.bmh-card {
		padding: 1.5rem;
	}

	.bmh-form {
		padding: 1.5rem;
	}

	.bmh-testimonials-grid,
	.bmh-plans-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.bmh-faq-question {
		gap: 10px;
		font-size: 0.9rem;
	}

	.bmh-title-primary {
		font-size: 1.5rem;
	}

	.bmh-plan-card {
		padding: 2rem;
	}

	.bmh-plan-featured {
		transform: none;
	}
}
