* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #1c1c1e;
	color: #eaeaea;
	line-height: 1.6;
	overflow-x: hidden;
}

.hp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ffffff;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.8rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: #eaeaea;
}

a {
	color: #ff6f61;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #ffd166;
	text-shadow: 0 0 10px rgba(255, 111, 97, 0.3);
}

/* Header Styles */
.hp-header {
	background: rgba(28, 28, 30, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 111, 97, 0.1);
	transition: transform 0.3s ease;
}

.hp-header.hp-header-hidden {
	transform: translateY(-100%);
}

.hp-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hp-logo {
	font-size: 2rem;
	font-weight: 700;
	color: #ff6f61;
	text-decoration: none;
	transition: all 0.3s ease;
}

.hp-logo:hover {
	color: #ffd166;
	text-shadow: 0 0 20px rgba(255, 111, 97, 0.5);
	transform: scale(1.05);
}

.hp-nav {
	display: flex;
	gap: 10px;
	align-items: center;
}

.hp-nav-link {
	color: #eaeaea;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.hp-nav-link:hover,
.hp-nav-link.active {
	color: #ffd166;
	background: rgba(255, 111, 97, 0.1);
	box-shadow: 0 0 15px rgba(255, 111, 97, 0.2);
}

.hp-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff6f61, #ffd166);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.hp-nav-link:hover::after,
.hp-nav-link.active::after {
	width: 100%;
}

/* Mobile Menu */
.hp-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hp-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #ff6f61;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hp-menu-toggle.open span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 6px);
}

.hp-menu-toggle.open span:nth-child(2) {
	opacity: 0;
}

.hp-menu-toggle.open span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.hp-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(28, 28, 30, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	transition: right 0.3s ease;
	padding-top: 100px;
}

.hp-mobile-nav.active {
	right: 0;
}

.hp-mobile-nav-list {
	list-style: none;
	padding: 2rem;
}

.hp-mobile-nav-list li {
	margin-bottom: 1.5rem;
}

.hp-mobile-nav-link {
	color: #eaeaea;
	font-size: 1.5rem;
	font-weight: 500;
	display: block;
	padding: 1rem;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.hp-mobile-nav-link:hover,
.hp-mobile-nav-link.active {
	color: #ffd166;
	background: rgba(255, 111, 97, 0.1);
	transform: translateX(10px);
}

.hp-mobile-nav-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: #ff6f61;
	font-size: 2rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.hp-mobile-nav-close:hover {
	background: rgba(255, 111, 97, 0.1);
	transform: rotate(90deg);
}

.hp-mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hp-mobile-overlay.active {
	opacity: 1;
}

/* Hero Section */
.hp-hero {
	height: 100vh;
	background: linear-gradient(rgba(28, 28, 30, 0.7), rgba(28, 28, 30, 0.7)),
		url('assets/hp-hero.webp');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(255, 111, 97, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 209, 102, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(6, 214, 160, 0.05) 0%,
			transparent 50%
		);
	animation: hp-glow 8s ease-in-out infinite alternate;
}

@keyframes hp-glow {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

.hp-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	animation: hp-fade-in-up 1s ease-out;
}

.hp-hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff, #ffd166, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: hp-title-glow 3s ease-in-out infinite alternate;
}

@keyframes hp-title-glow {
	0% {
		filter: drop-shadow(0 0 10px rgba(255, 111, 97, 0.3));
	}
	100% {
		filter: drop-shadow(0 0 20px rgba(255, 209, 102, 0.5));
	}
}

.hp-hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: #eaeaea;
	opacity: 0.9;
}

.hp-btn {
	display: inline-block;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #ff6f61, #ffd166);
	color: #1c1c1e;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

.hp-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s ease;
}

.hp-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 111, 97, 0.4);
}

.hp-btn:hover::before {
	left: 100%;
}

.hp-btn-secondary {
	background: rgba(44, 44, 46, 0.8);
	color: #eaeaea;
	border: 2px solid #ff6f61;
}

.hp-btn-secondary:hover {
	background: rgba(255, 111, 97, 0.1);
	color: #ffd166;
}

/* Section Styles */
.hp-section {
	padding: 5rem 0;
	position: relative;
}

.hp-section:nth-child(even) {
	background: rgba(44, 44, 46, 0.5);
}

.hp-section-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.hp-section-title {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffd166, #ff6f61);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.hp-section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, #ff6f61, #ffd166);
	border-radius: 2px;
	transform: translateX(-50%);
}

.hp-section-subtitle {
	font-size: 1.3rem;
	color: #eaeaea;
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto;
}

/* Grid Layouts */
.hp-grid {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
}

.hp-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.hp-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.hp-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card Styles */
.hp-card {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 111, 97, 0.1);
}

.hp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6f61, #ffd166, #06d6a0);
	border-radius: 20px 20px 0 0;
}

.hp-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(255, 111, 97, 0.2);
	border-color: rgba(255, 111, 97, 0.3);
}

.hp-card-icon {
	font-size: 3rem;
	color: #ff6f61;
	margin-bottom: 1.5rem;
	display: block;
	transition: all 0.3s ease;
}

.hp-card:hover .hp-card-icon {
	color: #ffd166;
	transform: scale(1.1);
	filter: drop-shadow(0 0 15px rgba(255, 209, 102, 0.5));
}

.hp-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.hp-card-text {
	color: #eaeaea;
	opacity: 0.9;
	line-height: 1.6;
}

/* Trends Slider */
.hp-trends-slider {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: rgba(44, 44, 46, 0.5);
}

.hp-trend-slide {
	display: none;
	padding: 3rem;
	text-align: center;
	min-height: 400px;
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.1),
		rgba(255, 209, 102, 0.1)
	);
	position: relative;
}

.hp-trend-slide.active {
	display: block;
	animation: hp-slide-in 0.5s ease-in-out;
}

@keyframes hp-slide-in {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hp-trend-title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #ffd166;
}

.hp-trend-text {
	font-size: 1.2rem;
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto;
}

.hp-slider-dots {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.hp-slider-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: rgba(255, 111, 97, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hp-slider-dot.active,
.hp-slider-dot:hover {
	background: #ff6f61;
	transform: scale(1.2);
	box-shadow: 0 0 15px rgba(255, 111, 97, 0.5);
}

/* Business Steps */
.hp-steps-container {
	position: relative;
}

.hp-step {
	display: flex;
	align-items: center;
	margin-bottom: 3rem;
	position: relative;
}

.hp-step:nth-child(even) {
	flex-direction: row-reverse;
}

.hp-step:last-child::before {
	display: none;
}

.hp-step-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6f61, #ffd166);
	color: #1c1c1e;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 2rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 30px rgba(255, 111, 97, 0.3);
}

.hp-step-content {
	flex: 1;
	background: rgba(44, 44, 46, 0.8);
	padding: 2rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 111, 97, 0.1);
}

.hp-step-title {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #ffd166;
}

/* Gallery */
.hp-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.hp-gallery-item {
	position: relative;
	height: 250px;
	border-radius: 15px;
	overflow: hidden;
	background: rgba(44, 44, 46, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hp-gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(255, 111, 97, 0.3);
}

.hp-gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(28, 28, 30, 0.9));
	padding: 2rem 1.5rem 1.5rem;
	color: #ffffff;
}

.hp-gallery-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #ffd166;
}

/* Success Stories */
.hp-story-card {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	border: 1px solid rgba(255, 111, 97, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hp-story-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(255, 111, 97, 0.2);
}

.hp-story-quote {
	font-size: 1.3rem;
	font-style: italic;
	color: #eaeaea;
	margin-bottom: 2rem;
	line-height: 1.7;
	position: relative;
}

.hp-story-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-direction: column;
	flex-grow: 1;
	text-align: center;
}

.hp-story-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6f61, #ffd166);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1c1c1e;
	font-weight: 700;
	font-size: 1.5rem;
	margin-top: auto;
}

.hp-story-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.hp-story-info h4 {
	color: #ffd166;
	margin-bottom: 0.3rem;
}

.hp-story-info p {
	color: #eaeaea;
	opacity: 0.8;
	margin: 0;
}

/* Form Styles */
.hp-form {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid rgba(255, 111, 97, 0.1);
}

.hp-form-group {
	margin-bottom: 1.5rem;
}

.hp-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #ffd166;
	font-weight: 500;
}

.hp-form-input,
.hp-form-textarea {
	width: 100%;
	padding: 1rem;
	background: rgba(28, 28, 30, 0.8);
	border: 2px solid rgba(255, 111, 97, 0.2);
	border-radius: 10px;
	color: #eaeaea;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.hp-form-input:focus,
.hp-form-textarea:focus {
	outline: none;
	border-color: #ff6f61;
	box-shadow: 0 0 20px rgba(255, 111, 97, 0.2);
	background: rgba(28, 28, 30, 0.9);
}

.hp-form-input.error,
.hp-form-textarea.error {
	border-color: #ff4444;
	box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.hp-form-input.valid,
.hp-form-textarea.valid {
	border-color: #06d6a0;
	box-shadow: 0 0 20px rgba(6, 214, 160, 0.2);
}

.hp-form-error {
	color: #ff4444;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.hp-form-error.show {
	display: block;
}

.hp-form-textarea {
	resize: vertical;
	min-height: 120px;
}

/* Map Container */
.hp-map-container {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	border: 1px solid rgba(255, 111, 97, 0.1);
}

/* Map Section */
.hp-map {
	height: 100%;
	min-height: 400px;
	filter: grayscale(1) contrast(1.2) opacity(0.8);

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.hp-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.hp-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.hp-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 Styles */
.hp-footer {
	background: rgba(28, 28, 30, 0.95);
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(255, 111, 97, 0.1);
	position: relative;
}

.hp-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6f61, #ffd166, #06d6a0);
}

.hp-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.hp-footer-section h3 {
	color: #ffd166;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.hp-footer-section p {
	color: #eaeaea;
	opacity: 0.8;
	margin-bottom: 1rem;
}

.hp-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.hp-footer-link {
	color: #eaeaea;
	opacity: 0.8;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
}

.hp-footer-link:hover {
	color: #ffd166;
	opacity: 1;
	transform: translateX(5px);
}

.hp-footer-contact p {
	margin-bottom: 0.8rem;
}

.hp-footer-contact a {
	color: #ff6f61;
}

.hp-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 111, 97, 0.1);
	color: #eaeaea;
	opacity: 0.7;
}

/* Cookie Popup */
.hp-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: rgba(28, 28, 30, 0.98);
	backdrop-filter: blur(20px);
	padding: 2rem;
	z-index: 2000;
	border-top: 3px solid #ff6f61;
	transition: bottom 0.3s ease;
}

.hp-cookie-popup.show {
	bottom: 0;
}

.hp-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.hp-cookie-text {
	flex: 1;
	min-width: 300px;
}

.hp-cookie-text p {
	margin: 0;
	color: #eaeaea;
}

.hp-cookie-link {
	color: #ffd166;
	text-decoration: underline;
}

.hp-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.hp-cookie-btn {
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.hp-cookie-btn.accept {
	background: linear-gradient(135deg, #ff6f61, #ffd166);
	color: #1c1c1e;
}

.hp-cookie-btn:not(.accept) {
	background: rgba(44, 44, 46, 0.8);
	color: #eaeaea;
	border: 1px solid rgba(255, 111, 97, 0.3);
}

.hp-cookie-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

/* Animation Classes */
.hp-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.hp-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.hp-slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.6s ease;
}

.hp-slide-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.hp-slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.6s ease;
}

.hp-slide-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.hp-scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.6s ease;
}

.hp-scale-in.visible {
	opacity: 1;
	transform: scale(1);
}

@keyframes hp-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Loading Animation */
.hp-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 111, 97, 0.3);
	border-radius: 50%;
	border-top-color: #ff6f61;
	animation: hp-spin 1s ease-in-out infinite;
	margin-right: 0.5rem;
}

@keyframes hp-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Success Message */
.hp-success-message {
	background: rgba(6, 214, 160, 0.1);
	border: 1px solid #06d6a0;
	color: #06d6a0;
	padding: 1rem;
	border-radius: 10px;
	margin-top: 1rem;
	display: none;
	text-align: center;
}

.hp-success-message.show {
	display: block;
	animation: hp-fade-in-up 0.5s ease;
}

.hp-success-message i {
	margin-right: 0.5rem;
}

/* Business Basics Page Styles */
.hp-business-hero {
	background: linear-gradient(
			135deg,
			rgba(255, 111, 97, 0.1),
			rgba(255, 209, 102, 0.1)
		),
		rgba(28, 28, 30, 0.9);
	padding: 8rem 0 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hp-business-hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FF6F61" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hp-business-content {
	position: relative;
	z-index: 2;
}

.hp-article {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 20px;
	padding: 3rem;
	margin-bottom: 3rem;
	border: 1px solid rgba(255, 111, 97, 0.1);
	position: relative;
	overflow: hidden;
}

.hp-article::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg, #ff6f61, #ffd166);
}

.hp-article-title {
	color: #ffd166;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.hp-article-content {
	color: #eaeaea;
	line-height: 1.8;
	font-size: 1.1rem;
}

.hp-article-content p {
	margin-bottom: 1.5rem;
}

.hp-article-highlight {
	background: rgba(255, 111, 97, 0.1);
	border-left: 4px solid #ff6f61;
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 0 10px 10px 0;
	font-style: italic;
}

/* Staff Training Page Styles */
.hp-training-hero {
	background: linear-gradient(
			135deg,
			rgba(6, 214, 160, 0.1),
			rgba(255, 209, 102, 0.1)
		),
		rgba(28, 28, 30, 0.9);
	padding: 8rem 0 5rem;
	text-align: center;
}

.hp-training-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.hp-training-card {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(6, 214, 160, 0.1);
}

.hp-training-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(6, 214, 160, 0.2);
}

.hp-training-header {
	background: linear-gradient(
		135deg,
		rgba(6, 214, 160, 0.2),
		rgba(255, 209, 102, 0.2)
	);
	padding: 2rem;
	text-align: center;
}

.hp-training-icon {
	font-size: 3rem;
	color: #06d6a0;
	margin-bottom: 1rem;
}

.hp-training-title {
	color: #06d6a0;
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.hp-training-body {
	padding: 2rem;
}

.hp-training-description {
	color: #eaeaea;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.hp-training-features {
	list-style: none;
	padding: 0;
}

.hp-training-features li {
	color: #eaeaea;
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	position: relative;
}

.hp-training-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #06d6a0;
	font-weight: bold;
}

/* About Page Styles */
.hp-about-hero {
	background: linear-gradient(
			135deg,
			rgba(255, 111, 97, 0.1),
			rgba(6, 214, 160, 0.1)
		),
		rgba(28, 28, 30, 0.9);
	padding: 8rem 0 5rem;
	text-align: center;
}

.hp-mission-section {
	background: rgba(44, 44, 46, 0.5);
	padding: 5rem 0;
}

.hp-mission-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hp-mission-text {
	font-size: 1.3rem;
	line-height: 1.8;
	color: #eaeaea;
	margin-bottom: 2rem;
}

.hp-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.hp-team-member {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 111, 97, 0.1);
}

.hp-team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(255, 111, 97, 0.2);
}

.hp-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff6f61, #ffd166);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 3rem;
	color: #1c1c1e;
	font-weight: 700;
}

.hp-team-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.hp-team-name {
	color: #ffd166;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.hp-team-role {
	color: #ff6f61;
	font-weight: 500;
	margin-bottom: 1rem;
}

.hp-team-bio {
	color: #eaeaea;
	line-height: 1.6;
	opacity: 0.9;
}

.hp-stats-section {
	padding: 5rem 0;
	text-align: center;
}

.hp-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.hp-stat-item {
	background: rgba(44, 44, 46, 0.8);
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.hp-stat-item:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(255, 111, 97, 0.2);
}

.hp-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #ff6f61;
	margin-bottom: 0.5rem;
	display: block;
}

.hp-stat-label {
	color: #eaeaea;
	font-size: 1.1rem;
}

/* Mobile Bottom Navigation */
.hp-mobile-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(28, 28, 30, 0.98);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 111, 97, 0.2);
	padding: 1rem 0;
	z-index: 1000;
}

.hp-mobile-bottom-nav-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}

.hp-mobile-bottom-nav-item {
	text-align: center;
}

.hp-mobile-bottom-nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #eaeaea;
	font-size: 0.8rem;
	transition: all 0.3s ease;
	padding: 0.5rem;
}

.hp-mobile-bottom-nav-link:hover,
.hp-mobile-bottom-nav-link.active {
	color: #ff6f61;
	transform: translateY(-2px);
}

.hp-mobile-bottom-nav-link i {
	font-size: 1.2rem;
	margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 1040px) {
	.hp-nav {
		display: none;
	}

	.hp-menu-toggle {
		display: flex;
	}

	.hp-mobile-nav {
		display: block;
	}

	.hp-mobile-bottom-nav {
		display: block;
	}
}

@media (max-width: 768px) {
	.hp-container {
		padding: 0 15px;
	}

	.hp-hero-title {
		font-size: 2.5rem;
	}

	.hp-hero-subtitle {
		font-size: 1.2rem;
	}

	.hp-section-title {
		font-size: 2rem;
	}

	.hp-grid-2,
	.hp-grid-3,
	.hp-grid-4 {
		grid-template-columns: 1fr;
	}

	.hp-step {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}

	.hp-step:nth-child(even) {
		flex-direction: column;
	}

	.hp-step::before {
		left: 50%;
		width: 2px;
		height: 50px;
	}

	.hp-cookie-content {
		flex-direction: column;
		text-align: center;
		flex-wrap: nowrap;
	}

	.hp-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hp-training-grid {
		grid-template-columns: 1fr;
	}

	.hp-team-grid {
		grid-template-columns: 1fr;
	}

	body {
		padding-bottom: 80px;
	}
}

@media (max-width: 480px) {
	.hp-hero-title {
		font-size: 2rem;
	}

	.hp-article-title {
		font-size: 1.5rem;
	}

	.hp-mobile-bottom-nav-link {
		font-size: 0.7rem;
	}

	.hp-trend-title {
		font-size: 1.5rem;
	}

	.hp-card,
	.hp-article,
	.hp-form {
		padding: 1.5rem;
	}

	.hp-grid-2,
	.hp-grid-3,
	.hp-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.hp-section {
		padding: 3rem 0;
	}

	.hp-btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}
}

.hp-contact-hero {
	background: linear-gradient(
			135deg,
			rgba(255, 111, 97, 0.9),
			rgba(255, 209, 102, 0.9)
		),
		linear-gradient(45deg, #1c1c1e, #2c2c2e);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hp-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hp-contact-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.hp-contact-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #eaeaea;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	animation: hp-fade-in-up 0.8s ease-out;
}

.hp-contact-hero-subtitle {
	font-size: 1.25rem;
	color: #eaeaea;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	animation: hp-fade-in-up 0.8s ease-out 0.2s both;
}

.hp-contact-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: hp-fade-in-up 0.8s ease-out 0.4s both;
}

/* Contact Cards */
.hp-contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.hp-contact-card {
	background: #2c2c2e;
	border-radius: 16px;
	padding: 2.5rem;
	text-align: center;
	border: 1px solid rgba(255, 111, 97, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	animation: hp-fade-in-up 0.6s ease-out forwards;
}

.hp-contact-card:nth-child(1) {
	animation-delay: 0.1s;
}
.hp-contact-card:nth-child(2) {
	animation-delay: 0.2s;
}
.hp-contact-card:nth-child(3) {
	animation-delay: 0.3s;
}
.hp-contact-card:nth-child(4) {
	animation-delay: 0.4s;
}

.hp-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.05),
		rgba(6, 214, 160, 0.05)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hp-contact-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 111, 97, 0.3);
	box-shadow: 0 20px 40px rgba(255, 111, 97, 0.1);
}

.hp-contact-card:hover::before {
	opacity: 1;
}

.hp-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ff6f61, #ffd166);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #1c1c1e;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.hp-contact-card:hover .hp-contact-icon {
	transform: scale(1.1);
	box-shadow: 0 10px 20px rgba(255, 111, 97, 0.3);
}

.hp-contact-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #eaeaea;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.hp-contact-card p {
	color: #b0b0b0;
	line-height: 1.6;
	margin-bottom: 0.75rem;
	position: relative;
	z-index: 2;
}

.hp-contact-card p:last-child {
	margin-bottom: 0;
}

.hp-contact-card a {
	color: #ff6f61;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.hp-contact-card a:hover {
	color: #ffd166;
}

/* Contact Form Grid */
.hp-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 3rem;
}

.hp-contact-info h2 {
	font-size: 2.5rem;
	color: #eaeaea;
	margin-bottom: 1.5rem;
}

.hp-contact-info p {
	color: #b0b0b0;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.hp-contact-benefits {
	margin-top: 2rem;
}

.hp-contact-benefit {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: #b0b0b0;
	padding-left: 1.2rem;
	transform: translateX(-20px);
	animation: hp-slide-in-left 0.6s ease-out forwards;
}

.hp-contact-benefit:nth-child(1) {
	animation-delay: 0.1s;
}
.hp-contact-benefit:nth-child(2) {
	animation-delay: 0.2s;
}
.hp-contact-benefit:nth-child(3) {
	animation-delay: 0.3s;
}
.hp-contact-benefit:nth-child(4) {
	animation-delay: 0.4s;
}

.hp-contact-benefit i {
	color: #06d6a0;
	margin-right: 0.75rem;
	font-size: 1.2rem;
}

/* Contact Form Styling */
.hp-form {
	background: #2c2c2e;
	border-radius: 16px;
	padding: 2.5rem;
	border: 1px solid rgba(255, 111, 97, 0.1);
	position: relative;
	overflow: hidden;
}

.hp-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.03),
		rgba(6, 214, 160, 0.03)
	);
	z-index: 1;
}

.hp-form > * {
	position: relative;
	z-index: 2;
}

.hp-form-group {
	margin-bottom: 1.5rem;
}

.hp-form-label {
	display: block;
	color: #eaeaea;
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.hp-form-input,
.hp-form-select,
.hp-form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: #1c1c1e;
	border: 1px solid rgba(255, 111, 97, 0.2);
	border-radius: 8px;
	color: #eaeaea;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.hp-form-input:focus,
.hp-form-select:focus,
.hp-form-textarea:focus {
	outline: none;
	border-color: #ff6f61;
	box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
	background: rgba(28, 28, 30, 0.8);
}

.hp-form-input::placeholder,
.hp-form-textarea::placeholder {
	color: #666;
}

.hp-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.hp-form-error {
	color: #ff6f61;
	font-size: 0.85rem;
	margin-top: 0.25rem;
	display: none;
}

.hp-form-error.show {
	display: block;
}

.hp-success-message {
	background: rgba(6, 214, 160, 0.1);
	color: #06d6a0;
	border: 1px solid rgba(6, 214, 160, 0.3);
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
	display: none;
	align-items: center;
	gap: 0.5rem;
}

.hp-success-message.show {
	display: flex;
}

.hp-success-message i {
	font-size: 1.2rem;
}

/* Map Section */
.hp-map {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 111, 97, 0.1);
}

.hp-map iframe {
	width: 100%;

	border: none;
	filter: grayscale(20%) contrast(1.1);
}

/* FAQ Styles */
.hp-faq-grid {
	max-width: 900px;
	margin: 0 auto;
}

.hp-faq-item {
	background: #2c2c2e;
	border-radius: 12px;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 111, 97, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	animation: hp-fade-in-up 0.6s ease-out forwards;
}

.hp-faq-item:nth-child(1) {
	animation-delay: 0.1s;
}
.hp-faq-item:nth-child(2) {
	animation-delay: 0.2s;
}
.hp-faq-item:nth-child(3) {
	animation-delay: 0.3s;
}
.hp-faq-item:nth-child(4) {
	animation-delay: 0.4s;
}
.hp-faq-item:nth-child(5) {
	animation-delay: 0.5s;
}
.hp-faq-item:nth-child(6) {
	animation-delay: 0.6s;
}

.hp-faq-item:hover {
	border-color: rgba(255, 111, 97, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 111, 97, 0.1);
}

.hp-faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem 2rem;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #eaeaea;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hp-faq-question:hover {
	background: rgba(255, 111, 97, 0.05);
}

.hp-faq-question h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.hp-faq-toggle {
	color: #ff6f61;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.hp-faq-question[aria-expanded='true'] .hp-faq-toggle {
	transform: rotate(45deg);
}

.hp-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.hp-faq-answer.open {
	max-height: 200px;
	padding: 0 2rem 1.5rem;
}

.hp-faq-answer p {
	color: #b0b0b0;
	line-height: 1.6;
	margin: 0;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
	.hp-contact-hero-title {
		font-size: 2.5rem;
	}

	.hp-contact-hero-subtitle {
		font-size: 1.1rem;
	}

	.hp-contact-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hp-contact-hero-buttons .hp-btn {
		width: 100%;
		max-width: 300px;
	}

	.hp-contact-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hp-contact-card {
		padding: 2rem;
	}

	.hp-contact-icon {
		width: 70px;
		height: 70px;
		font-size: 1.8rem;
	}

	.hp-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hp-contact-info h2 {
		font-size: 2rem;
	}

	.hp-form {
		padding: 2rem;
	}

	.hp-map iframe {
		height: 300px;
	}

	.hp-faq-question {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}

	.hp-faq-question h3 {
		font-size: 1rem;
	}

	.hp-faq-answer.open {
		padding: 0 1.5rem 1rem;
	}
}

@media (max-width: 480px) {
	.hp-contact-hero-title {
		font-size: 2rem;
	}

	.hp-contact-card {
		padding: 1.5rem;
	}

	.hp-contact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.hp-form {
		padding: 1.5rem;
	}

	.hp-contact-info h2 {
		font-size: 1.75rem;
	}
}

.hp-legal-header {
	background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hp-legal-header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 111, 97, 0.05) 0%,
		transparent 50%
	);
	animation: hp-pulse 8s ease-in-out infinite;
}

.hp-legal-title {
	font-size: 3rem;
	font-weight: 700;
	color: #eaeaea;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.hp-legal-subtitle {
	font-size: 1.25rem;
	color: #a0a0a0;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

.hp-legal-content {
	background: #1c1c1e;
	padding: 80px 0;
	min-height: 100vh;
}

.hp-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.hp-legal-section {
	background: #2c2c2e;
	border-radius: 16px;
	padding: 40px;
	margin-bottom: 30px;
	border: 1px solid rgba(255, 111, 97, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hp-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #ff6f61, #ffd166, #06d6a0);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hp-legal-section:hover::before {
	opacity: 1;
}

.hp-legal-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 111, 97, 0.3);
}

.hp-legal-section h2 {
	font-size: 1.8rem;
	font-weight: 600;
	color: #ff6f61;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hp-legal-section h2::before {
	content: '';
	width: 4px;
	height: 25px;
	background: linear-gradient(180deg, #ff6f61, #ffd166);
	border-radius: 2px;
}

.hp-legal-section h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #ffd166;
	margin: 25px 0 15px;
}

.hp-legal-section p {
	color: #eaeaea;
	line-height: 1.7;
	margin-bottom: 15px;
	text-align: justify;
}

.hp-legal-section ul {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.hp-legal-section li {
	color: #eaeaea;
	line-height: 1.6;
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
}

.hp-legal-section li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #06d6a0;
	font-size: 0.8rem;
	top: 2px;
}

.hp-legal-highlight {
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.1),
		rgba(255, 209, 102, 0.1)
	);
	border: 1px solid rgba(255, 111, 97, 0.3);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	position: relative;
}

.hp-legal-highlight p {
	margin: 0;
	font-weight: 500;
	color: #ffd166;
}

.hp-legal-alert {
	background: linear-gradient(
		135deg,
		rgba(255, 111, 97, 0.15),
		rgba(255, 0, 0, 0.05)
	);
	border: 1px solid rgba(255, 111, 97, 0.4);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	position: relative;
}

.hp-legal-alert p {
	margin: 0;
	font-weight: 500;
	color: #ff6f61;
}

.hp-legal-contact {
	background: rgba(6, 214, 160, 0.1);
	border: 1px solid rgba(6, 214, 160, 0.3);
	border-radius: 12px;
	padding: 25px;
	margin: 20px 0;
}

.hp-legal-contact h3 {
	color: #06d6a0;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.hp-legal-contact p {
	margin-bottom: 8px;
	color: #eaeaea;
}

.hp-legal-contact a {
	color: #06d6a0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.hp-legal-contact a:hover {
	color: #ffd166;
	text-decoration: underline;
}

.hp-legal-date {
	text-align: center;
	font-style: italic;
	color: #a0a0a0;
	border-top: 1px solid rgba(255, 111, 97, 0.2);
	padding-top: 20px;
	margin-top: 30px;
}

.hp-legal-footer {
	background: #1a1a1c;
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 111, 97, 0.2);
	margin-top: 30px;
}

.hp-legal-footer p {
	color: #a0a0a0;
	margin-bottom: 15px;
}

.hp-legal-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.hp-legal-link {
	color: #06d6a0;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 5px 10px;
	border-radius: 6px;
}

.hp-legal-link:hover {
	color: #ffd166;
	background: rgba(255, 209, 102, 0.1);
	transform: translateY(-2px);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
	.hp-legal-header {
		padding: 100px 0 60px;
	}

	.hp-legal-title {
		font-size: 2.2rem;
	}

	.hp-legal-subtitle {
		font-size: 1.1rem;
		padding: 0 20px;
	}

	.hp-legal-content {
		padding: 40px 0;
	}

	.hp-legal-section {
		padding: 25px 20px;
		margin-bottom: 20px;
	}

	.hp-legal-section h2 {
		font-size: 1.5rem;
	}

	.hp-legal-section h3 {
		font-size: 1.2rem;
	}

	.hp-legal-links {
		flex-direction: column;
		gap: 15px;
	}

	.hp-legal-contact {
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.hp-legal-title {
		font-size: 1.5rem;
	}

	.hp-legal-section {
		padding: 20px 15px;
	}

	.hp-legal-section h2 {
		font-size: 1.3rem;
	}

	.hp-legal-section li {
		padding-left: 25px;
	}
}
