* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color Palette */
	--ep-bg-main: #fafafd;
	--ep-bg-white: #ffffff;
	--ep-accent-blue: #0057ff;
	--ep-accent-pink: #ff4f81;
	--ep-accent-teal: #2ec4b6;
	--ep-text-dark: #222222;
	--ep-text-gray: #666666;
	--ep-footer-bg: #f2f4f8;
	--ep-border-light: #e5e7eb;

	/* Shadows */
	--ep-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--ep-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--ep-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
	--ep-shadow-hover: 0 12px 32px rgba(0, 87, 255, 0.15);

	/* Typography */
	--ep-font-primary: 'Roboto', sans-serif;
	--ep-font-heading: 'Montserrat', sans-serif;

	/* Spacing */
	--ep-spacing-xs: 8px;
	--ep-spacing-sm: 16px;
	--ep-spacing-md: 24px;
	--ep-spacing-lg: 40px;
	--ep-spacing-xl: 64px;
	--ep-spacing-2xl: 96px;

	/* Border Radius */
	--ep-radius-sm: 4px;
	--ep-radius-md: 8px;
	--ep-radius-lg: 16px;

	/* Transitions */
	--ep-transition-fast: 0.2s ease;
	--ep-transition-normal: 0.3s ease;
	--ep-transition-slow: 0.5s ease;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--ep-font-primary);
	background-color: var(--ep-bg-main);
	color: var(--ep-text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========================================
   2. TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ep-font-heading);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: var(--ep-spacing-sm);
	color: var(--ep-text-dark);
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: var(--ep-spacing-md);
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: var(--ep-spacing-md);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: var(--ep-spacing-sm);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: var(--ep-spacing-sm);
	color: var(--ep-text-gray);
	font-size: 1rem;
	line-height: 1.7;
}

a {
	color: var(--ep-accent-blue);
	text-decoration: none;
	transition: all var(--ep-transition-fast);
}

a:hover {
	color: var(--ep-accent-pink);
	text-decoration: underline;
}

/* ========================================
   3. LAYOUT UTILITIES
   ======================================== */

.ep-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--ep-spacing-md);
	width: 100%;
}

.ep-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--ep-spacing-md);
	width: 100%;
}

.ep-container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 var(--ep-spacing-md);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.ep-section {
	padding: var(--ep-spacing-2xl) 0;
}

.ep-section-sm {
	padding: var(--ep-spacing-xl) 0;
}

.ep-grid {
	display: grid;
	gap: var(--ep-spacing-md);
}

.ep-grid-2 {
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.ep-grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.ep-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.ep-flex {
	display: flex;
	gap: var(--ep-spacing-sm);
}

.ep-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ep-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ========================================
   4. BUTTONS
   ======================================== */

.ep-btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--ep-font-heading);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: var(--ep-radius-md);
	cursor: pointer;
	transition: all var(--ep-transition-normal);
	text-decoration: none;
}

.ep-btn-primary {
	background: var(--ep-accent-blue);
	color: var(--ep-bg-white);
	box-shadow: var(--ep-shadow-md);
}

.ep-btn-primary:hover {
	background: #0046cc;
	box-shadow: var(--ep-shadow-hover);
	transform: translateY(-2px);
	text-decoration: none;
}

.ep-btn-secondary {
	background: var(--ep-accent-pink);
	color: var(--ep-bg-white);
	box-shadow: var(--ep-shadow-md);
}

.ep-btn-secondary:hover {
	background: #e63e6f;
	box-shadow: var(--ep-shadow-hover);
	transform: translateY(-2px);
	text-decoration: none;
}

.ep-btn-outline {
	background: transparent;
	color: var(--ep-accent-blue);
	border: 2px solid var(--ep-accent-blue);
}

.ep-btn-outline:hover {
	background: var(--ep-accent-blue);
	color: var(--ep-bg-white);
	text-decoration: none;
}

.ep-btn-lg {
	padding: 18px 40px;
	font-size: 1.125rem;
}

.ep-btn-sm {
	padding: 10px 24px;
	font-size: 0.875rem;
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

.ep-header {
	background: var(--ep-bg-white);
	box-shadow: var(--ep-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all var(--ep-transition-normal);
}

.ep-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--ep-spacing-sm) var(--ep-spacing-md);
	max-width: 1400px;
	margin: 0 auto;
}

.ep-logo {
	font-family: var(--ep-font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--ep-accent-blue);
	text-decoration: none;
	transition: all var(--ep-transition-fast);
}

.ep-logo:hover {
	color: var(--ep-accent-pink);
	text-decoration: none;
	transform: scale(1.05);
}

.ep-nav {
	display: flex;
	align-items: center;
	gap: var(--ep-spacing-md);
}

.ep-nav-list {
	display: flex;
	list-style: none;
	gap: var(--ep-spacing-md);
	margin: 0;
	padding: 0;
}

.ep-nav-item {
	position: relative;
}

.ep-nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	color: var(--ep-text-dark);
	font-weight: 500;
	text-decoration: none;
	transition: all var(--ep-transition-fast);
	border-radius: var(--ep-radius-sm);
}

.ep-nav-link:hover {
	color: var(--ep-accent-blue);
	background: rgba(0, 87, 255, 0.05);
	text-decoration: none;
}

.ep-nav-link.active {
	color: var(--ep-accent-blue);
	background: rgba(0, 87, 255, 0.1);
}

.ep-nav-link i {
	font-size: 1rem;
}

.ep-header-accent {
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--ep-accent-blue) 0%,
		var(--ep-accent-pink) 50%,
		var(--ep-accent-teal) 100%
	);
}

/* Mobile Menu Toggle */
.ep-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	font-size: 1.5rem;
	color: var(--ep-text-dark);
	transition: all var(--ep-transition-fast);
}

.ep-menu-toggle:hover {
	color: var(--ep-accent-blue);
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.ep-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(0, 87, 255, 0.6) 0%,
		rgba(255, 79, 129, 0.6) 100%
	);
	overflow: hidden;
	padding: var(--ep-spacing-2xl) var(--ep-spacing-md);
}

.ep-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.3;
}

.ep-hero-content {
	text-align: center;
	max-width: 900px;
	z-index: 2;
	animation: ep-fade-up 1s ease;
}

.ep-hero h1 {
	color: var(--ep-bg-white);
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: var(--ep-spacing-md);
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ep-hero-subtitle {
	color: var(--ep-bg-white);
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	margin-bottom: var(--ep-spacing-lg);
	opacity: 0.95;
}

.ep-hero-cta {
	display: flex;
	gap: var(--ep-spacing-sm);
	justify-content: center;
	flex-wrap: wrap;
}

/* ========================================
   7. CARDS
   ======================================== */

.ep-card {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	padding: var(--ep-spacing-lg);
	box-shadow: var(--ep-shadow-md);
	transition: all var(--ep-transition-normal);
	height: 100%;
}

.ep-card:hover {
	box-shadow: var(--ep-shadow-lg);
	transform: translateY(-8px);
}

.ep-card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		var(--ep-accent-blue),
		var(--ep-accent-teal)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--ep-spacing-md);
	color: var(--ep-bg-white);
	font-size: 1.75rem;
}

.ep-card-title {
	font-size: 1.5rem;
	color: var(--ep-text-dark);
	margin-bottom: var(--ep-spacing-sm);
}

.ep-card-text {
	color: var(--ep-text-gray);
	line-height: 1.7;
}

.ep-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ep-accent-blue);
	font-weight: 600;
	margin-top: var(--ep-spacing-sm);
	transition: all var(--ep-transition-fast);
}

.ep-card-link:hover {
	gap: 12px;
	text-decoration: none;
}

/* ========================================
   8. EXPERT CARDS
   ======================================== */

.ep-expert-card {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	padding: var(--ep-spacing-lg);
	text-align: center;
	box-shadow: var(--ep-shadow-md);
	transition: all var(--ep-transition-normal);
}

.ep-expert-card:hover {
	box-shadow: var(--ep-shadow-lg);
	transform: translateY(-4px);
}

.ep-expert-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto var(--ep-spacing-md);
	border: 4px solid var(--ep-accent-blue);
	background: var(--ep-footer-bg);
}

.ep-expert-name {
	font-size: 1.25rem;
	color: var(--ep-text-dark);
	margin-bottom: 4px;
}

.ep-expert-title {
	color: var(--ep-text-gray);
	font-size: 0.95rem;
	margin-bottom: var(--ep-spacing-sm);
}

.ep-expert-location {
	color: var(--ep-accent-teal);
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

/* ========================================
   9. TESTIMONIALS
   ======================================== */

.ep-testimonial {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	padding: var(--ep-spacing-lg);
	box-shadow: var(--ep-shadow-md);
	border-left: 4px solid var(--ep-accent-pink);
	transition: all var(--ep-transition-normal);
}

.ep-testimonial:hover {
	box-shadow: var(--ep-shadow-lg);
}

.ep-testimonial-quote {
	font-size: 1.125rem;
	color: var(--ep-text-gray);
	font-style: italic;
	margin-bottom: var(--ep-spacing-md);
	line-height: 1.7;
}

.ep-testimonial-quote::before {
	content: '"';
	font-size: 3rem;
	color: var(--ep-accent-pink);
	line-height: 0;
	display: inline-block;
	margin-right: 8px;
	vertical-align: -0.4em;
}

.ep-testimonial-author {
	font-weight: 600;
	color: var(--ep-text-dark);
	font-size: 1rem;
}

/* ========================================
   10. FORMS
   ======================================== */

.ep-form {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	padding: var(--ep-spacing-lg);
	box-shadow: var(--ep-shadow-md);
}

.ep-form-group {
	margin-bottom: var(--ep-spacing-md);
}

.ep-form-label {
	display: block;
	margin-bottom: 8px;
	color: var(--ep-text-dark);
	font-weight: 500;
	font-size: 0.95rem;
}

.ep-form-input,
.ep-form-textarea,
.ep-form-select {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--ep-border-light);
	border-radius: var(--ep-radius-md);
	font-family: var(--ep-font-primary);
	font-size: 1rem;
	color: var(--ep-text-dark);
	transition: all var(--ep-transition-fast);
	background: var(--ep-bg-white);
}

.ep-form-input:focus,
.ep-form-textarea:focus,
.ep-form-select:focus {
	outline: none;
	border-color: var(--ep-accent-blue);
	box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.ep-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.ep-form-input.error,
.ep-form-textarea.error {
	border-color: var(--ep-accent-pink);
}

.ep-form-error {
	color: var(--ep-accent-pink);
	font-size: 0.875rem;
	margin-top: 4px;
	display: none;
}

.ep-form-error.show {
	display: block;
}

.ep-form-submit {
	width: 100%;
}

/* ========================================
   11. TABLES
   ======================================== */

.ep-table-wrapper {
	overflow-x: auto;
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	box-shadow: var(--ep-shadow-md);
	padding: var(--ep-spacing-md);
}

.ep-table {
	width: 100%;
	border-collapse: collapse;
}

.ep-table thead {
	background: var(--ep-footer-bg);
}

.ep-table th {
	padding: var(--ep-spacing-sm);
	text-align: left;
	font-weight: 600;
	color: var(--ep-text-dark);
	border-bottom: 2px solid var(--ep-accent-blue);
}

.ep-table td {
	padding: var(--ep-spacing-sm);
	border-bottom: 1px solid var(--ep-border-light);
	color: var(--ep-text-gray);
}

.ep-table tr:hover {
	background: rgba(0, 87, 255, 0.03);
}

/* ========================================
   12. FOOTER
   ======================================== */

.ep-footer {
	background: var(--ep-footer-bg);
	padding: var(--ep-spacing-2xl) 0 var(--ep-spacing-md);
	margin-top: var(--ep-spacing-2xl);
}

.ep-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ep-spacing-lg);
	margin-bottom: var(--ep-spacing-xl);
}

.ep-footer-section h4 {
	color: var(--ep-accent-blue);
	margin-bottom: var(--ep-spacing-md);
	font-size: 1.125rem;
}

.ep-footer-section p,
.ep-footer-section li {
	color: var(--ep-text-gray);
	font-size: 0.95rem;
	margin-bottom: 8px;
}

.ep-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ep-footer-menu li {
	margin-bottom: 8px;
}

.ep-footer-menu a {
	color: var(--ep-text-gray);
	text-decoration: none;
	transition: all var(--ep-transition-fast);
}

.ep-footer-menu a:hover {
	color: var(--ep-accent-blue);
	padding-left: 4px;
}

.ep-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: var(--ep-spacing-sm);
}

.ep-footer-contact-item i {
	color: var(--ep-accent-teal);
	font-size: 1.125rem;
	margin-top: 4px;
}

.ep-footer-disclaimer {
	background: rgba(255, 79, 129, 0.1);
	border-left: 4px solid var(--ep-accent-pink);
	padding: var(--ep-spacing-sm);
	border-radius: var(--ep-radius-sm);
	margin-top: var(--ep-spacing-md);
}

.ep-footer-disclaimer p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--ep-text-gray);
}

.ep-footer-bottom {
	border-top: 1px solid var(--ep-border-light);
	padding-top: var(--ep-spacing-md);
	text-align: center;
	color: var(--ep-text-gray);
	font-size: 0.875rem;
}

/* ========================================
   13. COOKIE BANNER
   ======================================== */

.ep-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--ep-bg-white);
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
	padding: var(--ep-spacing-md);
	z-index: 9999;
	transform: translateY(100%);
	transition: transform var(--ep-transition-normal);
}

.ep-cookie-banner.show {
	transform: translateY(0);
}

.ep-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ep-spacing-md);
	flex-wrap: wrap;
}

.ep-cookie-text {
	flex: 1;
	min-width: 300px;
}

.ep-cookie-text p {
	margin: 0;
	color: var(--ep-text-gray);
	font-size: 0.95rem;
}

.ep-cookie-text a {
	color: var(--ep-accent-blue);
	text-decoration: underline;
}

.ep-cookie-actions {
	display: flex;
	gap: var(--ep-spacing-sm);
	flex-wrap: wrap;
}

/* ========================================
   14. MAP CONTAINER
   ======================================== */

.ep-map-container {
	border-radius: var(--ep-radius-lg);
	overflow: hidden;
	box-shadow: var(--ep-shadow-md);
	height: 100%;
	background: var(--ep-footer-bg);
}

.ep-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ep-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ep-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ep-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;
}

/* ========================================
   15. SECTION HEADERS
   ======================================== */

.ep-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto var(--ep-spacing-xl);
}

.ep-section-subtitle {
	color: var(--ep-accent-blue);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.ep-section-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--ep-text-dark);
	margin-bottom: var(--ep-spacing-sm);
}

.ep-section-description {
	font-size: 1.125rem;
	color: var(--ep-text-gray);
	line-height: 1.7;
}

/* ========================================
   16. INFOGRAPHICS
   ======================================== */

.ep-infographic {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	padding: var(--ep-spacing-lg);
	box-shadow: var(--ep-shadow-md);
}

.ep-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--ep-spacing-md);
}

.ep-stat-item {
	text-align: center;
	padding: var(--ep-spacing-md);
	border-radius: var(--ep-radius-md);
	background: var(--ep-footer-bg);
	transition: all var(--ep-transition-normal);
}

.ep-stat-item:hover {
	transform: scale(1.05);
	background: rgba(0, 87, 255, 0.05);
}

.ep-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--ep-accent-blue);
	font-family: var(--ep-font-heading);
	margin-bottom: 8px;
}

.ep-stat-label {
	color: var(--ep-text-gray);
	font-size: 0.95rem;
}

/* ========================================
   17. CONTENT SECTIONS
   ======================================== */

.ep-content-section {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	padding: var(--ep-spacing-lg);
	box-shadow: var(--ep-shadow-md);
}

.ep-content-section h2 {
	color: var(--ep-accent-blue);
	border-bottom: 3px solid var(--ep-accent-blue);
	padding-bottom: var(--ep-spacing-sm);
	margin-bottom: var(--ep-spacing-md);
}

.ep-content-section h3 {
	color: var(--ep-text-dark);
	margin-top: var(--ep-spacing-md);
}

.ep-content-section ul,
.ep-content-section ol {
	margin-left: var(--ep-spacing-md);
	margin-bottom: var(--ep-spacing-md);
}

.ep-content-section li {
	margin-bottom: 8px;
	color: var(--ep-text-gray);
	line-height: 1.7;
}

/* ========================================
   18. ANIMATIONS
   ======================================== */

@keyframes ep-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes ep-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ep-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ep-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ep-scale-up {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ep-fade-in {
	animation: ep-fade-in 0.8s ease;
}

.ep-fade-up {
	animation: ep-fade-up 0.8s ease;
}

.ep-slide-in-left {
	animation: ep-slide-in-left 0.8s ease;
}

.ep-slide-in-right {
	animation: ep-slide-in-right 0.8s ease;
}

.ep-scale-up {
	animation: ep-scale-up 0.6s ease;
}

/* Scroll animations */
.ep-scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.ep-scroll-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   19. ACCORDIONS
   ======================================== */

.ep-accordion {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	box-shadow: var(--ep-shadow-md);
	overflow: hidden;
}

.ep-accordion-item {
	border-bottom: 1px solid var(--ep-border-light);
}

.ep-accordion-item:last-child {
	border-bottom: none;
}

.ep-accordion-header {
	width: 100%;
	padding: var(--ep-spacing-md);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--ep-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--ep-text-dark);
	transition: all var(--ep-transition-fast);
}

.ep-accordion-header:hover {
	background: rgba(0, 87, 255, 0.03);
	color: var(--ep-accent-blue);
}

.ep-accordion-icon {
	font-size: 1.25rem;
	transition: transform var(--ep-transition-fast);
}

.ep-accordion-item.active .ep-accordion-icon {
	transform: rotate(180deg);
}

.ep-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--ep-transition-normal);
}

.ep-accordion-content-inner {
	padding: 1rem var(--ep-spacing-md) var(--ep-spacing-md);
	color: var(--ep-text-gray);
	line-height: 1.7;
}

/* ========================================
   20. TABS
   ======================================== */

.ep-tabs {
	background: var(--ep-bg-white);
	border-radius: var(--ep-radius-lg);
	box-shadow: var(--ep-shadow-md);
	overflow: hidden;
}

.ep-tab-list {
	display: flex;
	background: var(--ep-footer-bg);
	border-bottom: 2px solid var(--ep-border-light);
}

.ep-tab-button {
	flex: 1;
	padding: var(--ep-spacing-md);
	background: none;
	border: none;
	font-family: var(--ep-font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ep-text-gray);
	cursor: pointer;
	transition: all var(--ep-transition-fast);
	border-bottom: 3px solid transparent;
}

.ep-tab-button:hover {
	color: var(--ep-accent-blue);
	background: rgba(0, 87, 255, 0.05);
}

.ep-tab-button.active {
	color: var(--ep-accent-blue);
	border-bottom-color: var(--ep-accent-blue);
	background: var(--ep-bg-white);
}

.ep-tab-content {
	display: none;
	padding: var(--ep-spacing-lg);
}

.ep-tab-content.active {
	display: block;
	animation: ep-fade-up 0.5s ease;
}

/* ========================================
   21. BREADCRUMBS
   ======================================== */

.ep-breadcrumb {
	padding: var(--ep-spacing-md) 0;
	font-size: 0.875rem;
}

.ep-breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}

.ep-breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ep-breadcrumb-item a {
	color: var(--ep-text-gray);
	text-decoration: none;
	transition: color var(--ep-transition-fast);
}

.ep-breadcrumb-item a:hover {
	color: var(--ep-accent-blue);
}

.ep-breadcrumb-separator {
	color: var(--ep-text-gray);
}

.ep-breadcrumb-item.active {
	color: var(--ep-accent-blue);
	font-weight: 500;
}

/* ========================================
   22. UTILITY CLASSES
   ======================================== */

.ep-text-center {
	text-align: center;
}

.ep-text-left {
	text-align: left;
}

.ep-text-right {
	text-align: right;
}

.ep-mb-xs {
	margin-bottom: var(--ep-spacing-xs);
}
.ep-mb-sm {
	margin-bottom: var(--ep-spacing-sm);
}
.ep-mb-md {
	margin-bottom: var(--ep-spacing-md);
}
.ep-mb-lg {
	margin-bottom: var(--ep-spacing-lg);
}
.ep-mb-xl {
	margin-bottom: var(--ep-spacing-xl);
}

.ep-mt-xs {
	margin-top: var(--ep-spacing-xs);
}
.ep-mt-sm {
	margin-top: var(--ep-spacing-sm);
}
.ep-mt-md {
	margin-top: var(--ep-spacing-md);
}
.ep-mt-lg {
	margin-top: var(--ep-spacing-lg);
}
.ep-mt-xl {
	margin-top: var(--ep-spacing-xl);
}

.ep-p-xs {
	padding: var(--ep-spacing-xs);
}
.ep-p-sm {
	padding: var(--ep-spacing-sm);
}
.ep-p-md {
	padding: var(--ep-spacing-md);
}
.ep-p-lg {
	padding: var(--ep-spacing-lg);
}
.ep-p-xl {
	padding: var(--ep-spacing-xl);
}

.ep-bg-white {
	background: var(--ep-bg-white);
}
.ep-bg-light {
	background: var(--ep-footer-bg);
}

.ep-text-blue {
	color: var(--ep-accent-blue);
}
.ep-text-pink {
	color: var(--ep-accent-pink);
}
.ep-text-teal {
	color: var(--ep-accent-teal);
}

.ep-border-blue {
	border-color: var(--ep-accent-blue);
}
.ep-border-pink {
	border-color: var(--ep-accent-pink);
}
.ep-border-teal {
	border-color: var(--ep-accent-teal);
}

/* ========================================
   23. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1060px) {
	.ep-nav-list {
		gap: 0;
	}
}

@media (max-width: 1024px) {
	.ep-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ep-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	.ep-menu-toggle {
		display: block;
	}

	.ep-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: var(--ep-bg-white);
		box-shadow: var(--ep-shadow-lg);
		padding: var(--ep-spacing-xl) var(--ep-spacing-md);
		transition: left var(--ep-transition-normal);
		z-index: 9999;
		flex-direction: column;
		align-items: flex-start;
	}

	.ep-nav.active {
		left: 0;
	}

	.ep-nav-list {
		flex-direction: column;
		width: 100%;
		gap: 2rem;
	}

	.ep-nav-link {
		width: 100%;
		padding: var(--ep-spacing-sm);
		border-radius: var(--ep-radius-sm);
	}
}

@media (max-width: 768px) {
	/* Grids */
	.ep-grid-2,
	.ep-grid-3,
	.ep-grid-4 {
		grid-template-columns: 1fr;
	}

	.ep-footer-grid {
		grid-template-columns: 1fr;
	}

	/* Hero */
	.ep-hero {
		min-height: 500px;
		padding: var(--ep-spacing-xl) var(--ep-spacing-md);
	}

	.ep-hero-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.ep-hero-cta .ep-btn {
		width: 100%;
	}

	/* Cookie Banner */
	.ep-cookie-content {
		flex-direction: column;
		align-items: stretch;
	}

	.ep-cookie-actions {
		width: 100%;
	}

	.ep-cookie-actions .ep-btn {
		flex: 1;
	}

	/* Sections */
	.ep-section {
		padding: var(--ep-spacing-xl) 0;
	}

	/* Tables */
	.ep-table {
		font-size: 0.875rem;
	}

	.ep-table th,
	.ep-table td {
		padding: var(--ep-spacing-xs);
	}
}

@media (max-width: 480px) {
	/* Typography */
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	/* Buttons */
	.ep-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}

	.ep-btn-lg {
		padding: 14px 28px;
		font-size: 1rem;
	}

	.ep-section-title {
		font-size: 1.5rem;
	}

	/* Cards */
	.ep-card {
		padding: var(--ep-spacing-md);
	}

	/* Sections */
	.ep-section {
		padding: var(--ep-spacing-lg) 0;
	}

	.ep-content-section h2,
	.ep-content-section h3 {
		word-wrap: break-word;
		font-size: 1.2rem;
	}

	.ep-hero h1 {
		font-size: 2rem;
	}

	.ep-content-section li {
		word-wrap: break-word;
	}
}

/* Main Container */
.ep-legal-container {
	max-width: 900px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 120px 80px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	margin-top: 40px;
	margin-bottom: 40px;
}

/* Header Section */
.ep-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 2px solid #0057ff;
}

.ep-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: #0057ff;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.ep-legal-subtitle {
	font-size: 16px;
	color: #666666;
	font-weight: 400;
	font-style: italic;
}

/* Content Sections */
.ep-legal-content {
	margin-top: 40px;
}

.ep-legal-section {
	margin-bottom: 45px;
}

.ep-legal-section:last-child {
	margin-bottom: 0;
}

/* Headings */
.ep-legal-heading {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 20px;
	margin-top: 35px;
	padding-left: 12px;
	border-left: 4px solid #2ec4b6;
}

.ep-legal-subheading {
	font-size: 20px;
	font-weight: 600;
	color: #0057ff;
	margin-bottom: 15px;
	margin-top: 25px;
}

/* Text Paragraphs */
.ep-legal-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333333;
	margin-bottom: 18px;
	text-align: justify;
}

.ep-legal-text:last-child {
	margin-bottom: 0;
}

.ep-legal-text strong {
	color: #222222;
	font-weight: 600;
}

/* Lists */
.ep-legal-list {
	margin: 20px 0 20px 35px;
	list-style-type: disc;
	color: #333333;
}

.ep-legal-list li {
	margin-bottom: 12px;
	line-height: 1.7;
	padding-left: 8px;
}

.ep-legal-list li strong {
	color: #0057ff;
	font-weight: 600;
}

/* Contact Box */
.ep-legal-contact-box {
	background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
	border-left: 4px solid #0057ff;
	padding: 25px 30px;
	margin: 25px 0;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 87, 255, 0.08);
}

.ep-legal-contact-box p {
	margin-bottom: 8px;
	color: #333333;
	line-height: 1.6;
}

.ep-legal-contact-box p:last-child {
	margin-bottom: 0;
}

.ep-legal-contact-box strong {
	color: #0057ff;
	font-weight: 600;
}

/* Highlight Box */
.ep-legal-highlight-box {
	background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
	border-left: 4px solid #ff4f81;
	padding: 25px 30px;
	margin: 25px 0;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
}

.ep-legal-highlight-box .ep-legal-subheading {
	color: #ff4f81;
	margin-top: 0;
}

.ep-legal-highlight-box .ep-legal-text {
	margin-bottom: 0;
}

/* Links */
.ep-legal-link {
	color: #0057ff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.ep-legal-link:hover {
	color: #ff4f81;
	border-bottom-color: #ff4f81;
}

.ep-legal-link:active {
	color: #2ec4b6;
}

/* Cookie Table Styling */
.ep-legal-cookie-table {
	margin: 25px 0;
	overflow-x: auto;
}

.ep-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
}

.ep-legal-table thead {
	background: linear-gradient(135deg, #0057ff 0%, #0045cc 100%);
	color: #ffffff;
}

.ep-legal-table thead th {
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ep-legal-table tbody tr {
	border-bottom: 1px solid #e8e8e8;
	transition: background-color 0.2s ease;
}

.ep-legal-table tbody tr:last-child {
	border-bottom: none;
}

.ep-legal-table tbody tr:hover {
	background-color: #f8f9ff;
}

.ep-legal-table tbody td {
	padding: 14px 20px;
	font-size: 14px;
	color: #333333;
}

.ep-legal-table tbody td:first-child {
	font-weight: 600;
	color: #0057ff;
}

/* Last Updated Text */
.ep-legal-last-updated {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 2px solid #e8e8e8;
	text-align: center;
	font-style: italic;
	color: #666666;
	font-size: 1rem;
}

@media screen and (max-width: 768px) {
	.ep-legal-title {
		font-size: 2rem;
	}

	.ep-legal-container {
		margin: 0 20px;
	}

	.ep-legal-subtitle {
		font-size: 14px;
	}

	.ep-legal-heading {
		font-size: 24px;
		padding-left: 10px;
	}

	.ep-legal-subheading {
		font-size: 18px;
	}

	.ep-legal-text {
		font-size: 15px;
		text-align: left;
	}

	.ep-legal-contact-box,
	.ep-legal-highlight-box {
		padding: 20px 25px;
	}

	.ep-legal-list {
		margin-left: 25px;
	}

	.ep-legal-table {
		font-size: 13px;
	}

	.ep-legal-table thead th,
	.ep-legal-table tbody td {
		padding: 12px 15px;
	}
}

/* Responsive Design - Mobile */
@media screen and (max-width: 480px) {
	.ep-legal-header {
		margin-bottom: 35px;
		padding-bottom: 20px;
	}

	.ep-legal-container {
		padding: 120px 20px;
	}

	.ep-legal-title {
		font-size: 1.3rem;
		letter-spacing: -0.3px;
	}

	.ep-legal-subtitle {
		font-size: 13px;
	}

	.ep-legal-heading {
		font-size: 1.2rem;
		margin-top: 30px;
		margin-bottom: 15px;
		padding-left: 8px;
		border-left-width: 3px;
	}

	.ep-legal-subheading {
		font-size: 17px;
		margin-top: 20px;
	}

	.ep-legal-text {
		font-size: 14px;
		line-height: 1.7;
		margin-bottom: 15px;
	}

	.ep-legal-contact-box,
	.ep-legal-highlight-box {
		padding: 18px 20px;
		margin: 20px 0;
	}

	.ep-legal-list {
		margin-left: 20px;
		font-size: 14px;
	}

	.ep-legal-list li {
		margin-bottom: 10px;
	}

	.ep-legal-cookie-table {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.ep-legal-table {
		min-width: 600px;
		font-size: 12px;
	}

	.ep-legal-table thead th {
		padding: 10px 12px;
		font-size: 11px;
	}

	.ep-legal-table tbody td {
		padding: 10px 12px;
		font-size: 12px;
	}

	.ep-legal-section {
		margin-bottom: 35px;
	}

	.ep-legal-last-updated {
		margin-top: 30px;
		padding-top: 20px;
		font-size: 13px;
	}
}
