body {
	margin: 0;
	padding: 0;
	background: linear-gradient(135deg, #f7d9f0, #e0d7ff);
	color: #333;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}
header {
	text-align: center;
	padding: 80px 20px;
	background: url('/images/phiray_globes.png') no-repeat center center/cover;
	border-bottom: 2px solid #d8bfd8;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	color: #fff;
}
header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
header * {
	position: relative;
	z-index: 2;
}
header h1 {
	font-family: 'Montserrat', serif;
	font-size: 3rem;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
header p {
	font-size: 1.2rem;
	color: #d8bfd8;
	font-weight: 600;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.navbar {
	background: #4b0082;
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-brand {
	color: white !important;
	font-family: 'Montserrat', serif;
	font-size: 1.5rem;
	font-weight: 700;
}
.navbar-brand:hover {
	color: #d8bfd8 !important;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-nav .nav-link {
	color: white !important;
	font-weight: 600;
	transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
	color: #d8bfd8 !important;
	text-decoration: none;
}
.container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}
.section {
	background: rgba(255, 255, 255, 0.95);
	padding: 30px;
	margin-bottom: 30px;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.section h2 {
	font-family: 'Montserrat', serif;
	color: #4b0082;
	font-size: 2rem;
	border-bottom: 3px solid #d8bfd8;
	padding-bottom: 10px;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.section h2::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 50px;
	height: 3px;
	background: #6a0dad;
}
.bubble {
	background: #f0e6ff;
	padding: 20px;
	margin: 15px 0;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-left: 5px solid #6a0dad;
	transition: transform 0.3s ease;
}
.bubble:hover {
	transform: scale(1.02);
}
.bubble h3 {
	margin-top: 0;
	color: #6a0dad;
	font-size: 1.3rem;
	font-weight: 600;
}
.disclaimer {
	font-size: 0.9rem;
	color: #555;
	background: #fff0f5;
	padding: 20px;
	border-radius: 10px;
	border-left: 5px solid #d8bfd8;
}
footer {
	text-align: center;
	padding: 30px;
	background: #4b0082;
	color: white;
	font-size: 0.9rem;
}
footer a {
	color: #d8bfd8;
	text-decoration: none;
}
footer a:hover {
	color: #fff;
	text-decoration: underline;
}
.section {
	scroll-margin-top: 80px;
}
@media (min-width: 992px) {
	.navbar-brand {
		display: none;
	}
}
@media (max-width: 768px) {
	header {
		padding: 60px 20px;
	}
	header h1 {
		font-size: 2rem;
	}
	header p {
		font-size: 1rem;
	}
	.section {
		padding: 20px;
	}
	.bubble {
		padding: 15px;
	}
}
