/* ========== HERO SECTION WITH CHEMISTRY BACKGROUND ========== */
.hero-section {
	background: linear-gradient(135deg, rgba(0,132,201,0.05) 0%, rgba(0,165,219,0.05) 100%);
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
	//margin-bottom: 40px;
}

.chemistry-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.4;
	pointer-events: none;
}

.molecule-decoration {
	position: absolute;
	width: 400px;
	height: 400px;
	top: -100px;
	right: -50px;
}

.hero-section-content {
	position: relative;
	z-index: 1;
}

.hero-section-title {
	font-family: 'Ruda', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #0084c9;
	margin-bottom: 15px;
}

.hero-section-subtitle {
	font-size: 20px;
	color: #595959;
	font-weight: 300;
}

@media (max-width: 767px) {
	.hero-section {
		padding: 40px 20px;
	}
	
	.hero-section h1 {
		font-size: 32px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
	
	.molecule-decoration {
		width: 300px;
		height: 300px;
	}
}
/* ========== END HERO SECTION WITH CHEMISTRY BACKGROUND ========== */

/* Breadcrumbs */
.breadcrumb {
	padding: 20px 40px;
	font-size: 14px;
	color: #999;
}

.breadcrumb a {
	color: #0084c9;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: #00a5db;
}

.breadcrumb .separator {
	margin: 0 8px;
	color: #ccc;
}

.breadcrumb .current {
	color: #595959;
	font-weight: 500;
}

@media (max-width: 767px) {
	.breadcrumb {
		padding: 15px 20px;
	}
}
			
/* Page Header / Content Hero */
.page-header {
	background: linear-gradient(135deg, rgba(0,132,201,0.08) 0%, rgba(0,165,219,0.08) 100%);
	padding: 40px 40px;
	position: relative;
	overflow: hidden;
	border-bottom: 3px solid #0084c9;
}

.chemistry-background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

.chem-structure {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 300px;
	height: 120px;
}

.header-content {
	position: relative;
	z-index: 1;
}

.page-header h1 {
	font-family: 'Ruda', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: #0084c9;
	margin-bottom: 12px;
}

.page-subtitle {
	font-size: 18px;
	color: #595959;
	max-width: 700px;
	line-height: 1.5;
}

@media (max-width: 767px) {
	.page-header {
		padding: 30px 20px;
	}
	
	.page-header h1 {
		font-size: 28px;
	}
	
	.page-subtitle {
		font-size: 16px;
	}
	
	.chem-structure {
		width: 200px;
		height: 80px;
		opacity: 0.5;
	}
}

