:root {
	--color-primary: #0e7490;
	--color-primary-dark: #155e75;
	--color-primary-light: #0891b2;
	--color-bg: #e0f2f1;
	--color-card: #f8fafb;
	--color-text: #0f172a;
	--color-text-secondary: #475569;
	--color-border: #b2dfdb;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;
	--font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
	--font-brand: 'Orbitron', sans-serif;
	--radius: 0.5rem;
	--shadow-sm: 0 1px 3px rgba(14, 116, 144, 0.15);
	--shadow-md: 0 4px 12px rgba(14, 116, 144, 0.2);
	--shadow-lg: 0 8px 24px rgba(14, 116, 144, 0.25);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: 5rem;
}

body {
	position: relative;
	
	width: 100%;
	max-width: 100vw;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: auto !important;
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
	z-index: 10000;
	transition: width 0.1s ease-out;
	box-shadow: 0 2px 8px rgba(14, 116, 144, 0.4);
}

body {
	font-family: var(--font-sans);
	background: linear-gradient(135deg, #e0f2f1 0%, #cfe9e5 100%);
	color: var(--color-text);
	line-height: 1.6;
	min-height: 100vh;

	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: auto !important;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	width: 100%;
	

	overflow-x: visible !important;
}

header {
	background: #000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 10001;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	width: 100%;
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: visible !important;
	max-height: none !important;
	height: auto !important;
}

header::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
	opacity: 0.6;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 5rem;
	gap: var(--spacing-md);
	position: relative;
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: visible !important;
	max-height: none !important;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	transition: transform var(--transition);
}

.brand-name {
	font-family: var(--font-brand);
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.logo-link:hover {
	transform: scale(1.02);
}

.logo-link img {
	height: 7.5rem;
	width: auto;
	filter: drop-shadow(0 4px 8px rgba(14, 116, 144, 0.3));
	transition: all var(--transition);
}

.logo-link:hover img {
	transform: scale(1.05) rotate(2deg);
	filter: drop-shadow(0 6px 12px rgba(14, 116, 144, 0.4));
}

nav {
	display: flex;
	gap: var(--spacing-md);
	align-items: center;
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: visible !important;
	max-height: none !important;
	height: auto !important;
	position: relative;
}

nav a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	padding: var(--spacing-xs) var(--spacing-md);
	border-radius: var(--radius);
	font-weight: 500;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	touch-action: manipulation;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
	width: 80%;
}

nav a:hover {
	color: #fff;
	transform: translateY(-2px);
}

nav a:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 4px;
	border-radius: var(--radius);
}

nav .nav-dropdown {
	position: relative;
}

nav .nav-dropdown > a {
	position: relative;
	z-index: 1001;
}

nav .nav-dropdown > a:not(.no-link)::after {
	content: ' ▼';
	font-size: 0.7em;
	opacity: 0.7;
	margin-left: 2px;
	transition: opacity 0.1s ease;
}

nav .nav-dropdown:hover > a::after {
	opacity: 1;
}

nav .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), 
	            visibility 0.15s cubic-bezier(0.4, 0, 0.2, 1), 
	            transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
	z-index: 1000;
	margin-top: 0.25rem;
	padding: 0.5rem 0;
	pointer-events: none;
	white-space: nowrap;
	will-change: opacity, transform;
}

nav .dropdown-menu::before {
	content: '';
	position: absolute;
	top: -0.5rem;
	left: -0.5rem;
	right: -0.5rem;
	height: 0.75rem;
	background: transparent;
	pointer-events: all;
}

nav .nav-dropdown:hover .dropdown-menu,
nav .nav-dropdown .dropdown-menu:hover,
nav .nav-dropdown:hover .dropdown-menu::before {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
	transition-delay: 0.05s;
	z-index: 1002;
	box-shadow: 0 12px 32px rgba(14, 116, 144, 0.2);
}

nav .nav-dropdown:not(:hover) .dropdown-menu {
	transition-delay: 0.2s;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

nav .dropdown-menu a {
	display: block;
	padding: 0.75rem var(--spacing-md);
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0;
	position: relative;
}

nav .dropdown-menu a:hover {
	color: #fff;
	background: rgba(14, 116, 144, 0.2);
	padding-left: calc(var(--spacing-md) + 0.5rem);
}

nav .dropdown-menu a:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: -2px;
	border-radius: var(--radius);
}

	.language-selector {
		background: rgba(255, 255, 255, 0.1);
		border: 2px solid rgba(255, 255, 255, 0.3);
		border-radius: var(--radius);
		padding: var(--spacing-xs) var(--spacing-sm);
		cursor: pointer;
		color: #fff;
		font-weight: 600;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		font-family: var(--font-sans);
		font-size: 0.875rem;
		min-width: 3.5rem;
		flex-shrink: 0;
	}

.language-selector:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.15);
	transform: scale(1.05);
}

.language-selector option {
	background: #000;
	color: #fff;
}

.language-selector:focus {
	outline: 3px solid rgba(14, 116, 144, 0.3);
	outline-offset: 2px;
}

.mobile-menu-toggle {
	display: none;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius);
	padding: 0;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	will-change: transform;
	flex-direction: column;
	gap: 5px;
	position: relative;
	z-index: 10002;
	flex-shrink: 0;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
	background: #fff;
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
	width: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
	background: #fff;
}

.mobile-menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-toggle:hover span {
	background: #fff;
}

.mobile-menu-toggle:active {
	transform: scale(0.95);
}

.mobile-menu-toggle:focus {
	outline: 3px solid rgba(14, 116, 144, 0.3);
	outline-offset: 2px;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	flex-direction: column;
	gap: 0;
	padding: 0;
	background: #000;
	opacity: 0;
	transform: translateX(-100%);
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	z-index: 10000;
	will-change: opacity, transform;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
	display: flex !important;
	opacity: 1;
	transform: translateX(0);
	pointer-events: all;
}

/* Header du menu mobile */
.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem var(--spacing-lg);
	border-bottom: 1px solid #0e7490;
	background: #000;
}

.mobile-menu-header .logo-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: #fff;
}

.mobile-menu-header .logo-link img {
	height: 2.5rem;
	width: auto;
}

.mobile-menu-header .logo-link .brand-name {
	font-family: var(--font-brand);
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #9b51e0;
	line-height: 1.2;
}

.mobile-menu-close {
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	background: transparent;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	padding: 0;
}

.mobile-menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Contenu du menu centré verticalement */
.mobile-menu-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	gap: 0;
}

.mobile-menu a {
	padding: 1.5rem 2rem;
	text-decoration: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: 400;
	position: relative;
	font-size: 1.1rem;
	width: 100%;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mobile-menu a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #0e7490;
	margin-top: 1rem;
}

.mobile-menu a::before {
	content: '▶';
	display: block;
	color: #666;
	font-size: 0.6rem;
	margin-top: 0.5rem;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}

.mobile-menu a:active {
	background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .mobile-dropdown {
	width: 100%;
}

.mobile-menu .mobile-dropdown > a {
	font-weight: 400;
	font-size: 1.1rem;
}

.mobile-menu .mobile-dropdown-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
	            opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.mobile-menu .mobile-dropdown.active .mobile-dropdown-menu {
	max-height: 1000px;
	opacity: 1;
}

.mobile-menu .mobile-dropdown-menu a {
	padding: 1rem 2rem;
	font-size: 0.95rem;
	font-weight: 400;
	position: relative;
}

.mobile-menu .mobile-dropdown-menu a::before {
	content: '▶';
	display: block;
	color: #666;
	font-size: 0.6rem;
	margin-top: 0.5rem;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}

.mobile-menu .mobile-dropdown-menu a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #0e7490;
	margin-top: 1rem;
}

main {
	padding: var(--spacing-2xl) 0;
	min-height: calc(100vh - 5rem);
}

.hero {
	text-align: center;
	padding: var(--spacing-2xl) 0;
	min-height: calc(100vh - 9rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hero-logo {
	margin-bottom: var(--spacing-xl);
	animation: fadeInUp 0.8s ease-out;
}

.hero-logo img {
	height: 25rem;
	width: auto;
	filter: drop-shadow(0 12px 24px rgba(14, 116, 144, 0.3));
	transition: all var(--transition);
}

.hero-logo:hover img {
	transform: scale(1.08) rotate(3deg);
	filter: drop-shadow(0 16px 32px rgba(14, 116, 144, 0.4));
}

.hero h1 {
	font-size: clamp(2.5rem, 7vw, 5rem);
	margin-bottom: var(--spacing-md);
	color: var(--color-primary);
	font-weight: 800;
	letter-spacing: -0.03em;
	animation: fadeInUp 0.8s ease-out 0.2s both;
	text-shadow: 2px 4px 8px rgba(6, 182, 212, 0.1);
}

.hero-subtitle {
	font-size: clamp(1.125rem, 3vw, 1.75rem);
	color: var(--color-text-secondary);
	max-width: 800px;
	margin: 0 auto var(--spacing-xl);
	line-height: 1.8;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: white;
	text-decoration: none;
	border-radius: calc(var(--radius) * 1.2);
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.01em;
	box-shadow: var(--shadow-md);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	will-change: transform, box-shadow;
	border: none;
	cursor: pointer;
	transform: translateZ(0);
}

.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.6s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 28px rgba(14, 116, 144, 0.35);
}

.btn:active {
	transform: translateY(-2px) scale(1);
	box-shadow: 0 6px 16px rgba(14, 116, 144, 0.3);
}

.btn:focus {
	outline: 3px solid rgba(14, 116, 144, 0.3);
	outline-offset: 2px;
}

.btn-secondary {
	background: white;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background: var(--color-primary-light);
	color: white;
}

.btn-what-is {
	background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
	color: white;
	border: 2px solid transparent;
	box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.btn-what-is:hover {
	background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
	box-shadow: 0 12px 28px rgba(147, 51, 234, 0.4);
	transform: translateY(-4px) scale(1.02);
}

.btn-what-is:active {
	transform: translateY(-2px) scale(1);
	box-shadow: 0 6px 16px rgba(147, 51, 234, 0.3);
}

.btn-what-is:focus {
	outline: 3px solid rgba(147, 51, 234, 0.3);
	outline-offset: 2px;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
}

.card-grid .card {
	opacity: 0;
	transform: translateY(30px);
}

.card {
	background: white;
	border: 2px solid var(--color-border);
	border-radius: calc(var(--radius) * 1.5);
	padding: var(--spacing-lg);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
	will-change: transform, box-shadow;
	contain: layout style paint;
	display: flex;
	flex-direction: column;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(14, 116, 144, 0.03) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.card:hover::before {
	opacity: 1;
}

.card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 12px 32px rgba(14, 116, 144, 0.25);
	border-color: var(--color-primary);
}

.card:active {
	transform: translateY(-4px) scale(1.01);
}

.card h2 {
	position: relative;
	z-index: 1;
}

.card h2 {
	font-size: 1.75rem;
	margin-bottom: var(--spacing-sm);
	color: var(--color-primary);
	font-weight: 700;
}

.card p {
	color: var(--color-text-secondary);
	margin-bottom: var(--spacing-md);
	line-height: 1.7;
	flex-grow: 1;
}

.card .btn {
	margin-top: auto;
	align-self: flex-start;
}

.content-section .btn,
.card .btn {
	color: white !important;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
	border: none !important;
	text-decoration: none !important;
}

.content-section .btn:hover,
.card .btn:hover {
	background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%) !important;
	color: white !important;
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 28px rgba(14, 116, 144, 0.35) !important;
}

.content-section .btn:active,
.card .btn:active {
	transform: translateY(-2px) scale(1);
	box-shadow: 0 6px 16px rgba(14, 116, 144, 0.3) !important;
}

.content-section .btn:focus,
.card .btn:focus {
	outline: 3px solid rgba(14, 116, 144, 0.3) !important;
	outline-offset: 2px;
}

.content-section {
	max-width: 680px;
	margin: 0 auto;
	padding: var(--spacing-xl) var(--spacing-lg);
	background: white;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.content-section h1 {
	font-size: 2.25rem;
	margin-bottom: var(--spacing-lg);
	margin-top: 0;
	color: var(--color-text);
	border-bottom: none;
	padding-bottom: 0;
	font-weight: 700;
	line-height: 1.3;
}

.content-section h2 {
	font-size: 1.75rem;
	margin-top: var(--spacing-xl);
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
	font-weight: 700;
	line-height: 1.4;
}

.content-section h3 {
	font-size: 1.375rem;
	margin-top: var(--spacing-lg);
	margin-bottom: var(--spacing-sm);
	color: var(--color-text);
	font-weight: 600;
	line-height: 1.4;
}

.content-section p {
	margin-bottom: 1.5rem;
	color: var(--color-text);
	line-height: 1.75;
	font-size: 1.0625rem;
}

.content-section ul,
.content-section ol {
	margin-bottom: var(--spacing-md);
	padding-left: var(--spacing-lg);
}

.content-section li {
	margin-bottom: var(--spacing-xs);
	color: var(--color-text);
}

.content-section a:not(.btn) {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.content-section a:not(.btn):hover {
	border-bottom-color: var(--color-primary);
	color: var(--color-primary-dark);
	transform: translateX(2px);
}

.content-section a:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

.content-section blockquote {
	border-left: 4px solid var(--color-border);
	padding-left: var(--spacing-md);
	margin: var(--spacing-lg) 0;
	font-style: italic;
	color: var(--color-text-secondary);
	background: transparent;
	padding: var(--spacing-md);
	border-radius: 0;
}

.content-section code {
	background: var(--color-bg);
	padding: 0.25rem 0.5rem;
	border-radius: calc(var(--radius) / 2);
	font-family: 'Courier New', monospace;
	color: var(--color-primary-dark);
	font-size: 0.9em;
}

.content-section figure {
	margin: var(--spacing-xl) 0;
	text-align: center;
}

	.content-section img {
		max-width: 100%;
		height: auto;
		border-radius: 8px;
		box-shadow: var(--shadow-md);
		margin: var(--spacing-md) 0;
		display: block;
		object-fit: contain;
	}
	
	.content-section table {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		display: block;
		-webkit-overflow-scrolling: touch;
		margin: var(--spacing-md) 0;
		border-collapse: collapse;
	}
	
	.content-section table thead,
	.content-section table tbody {
		display: table;
		width: 100%;
		min-width: 500px;
	
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: auto !important;
}
	
	.content-section table th,
	.content-section table td {
		padding: var(--spacing-xs) var(--spacing-sm);
		text-align: left;
		border: 1px solid var(--color-border);
		word-wrap: break-word;
	}

.content-section figcaption {
	margin-top: var(--spacing-xs);
	color: var(--color-text-secondary);
	font-size: 0.9rem;
	font-style: italic;
}

.content-section aside {
	background: transparent;
	padding: var(--spacing-md) 0;
	border-radius: 0;
	border-left: none;
	margin: var(--spacing-md) 0;
	font-style: normal;
	color: var(--color-text-secondary);
	font-size: 0.95rem;
}

.content-section hr {
	border: none;
	border-top: 1px solid var(--color-border);
	margin: var(--spacing-xl) 0;
}

.back-button {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--color-primary);
	color: white;
	border: none;
	border-radius: 50%;
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 999;
	will-change: transform;
}

.back-button:hover {
	background: var(--color-primary-dark);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 16px 40px rgba(14, 116, 144, 0.4);
}

.back-button:active {
	transform: translateY(-2px) scale(1.05);
}

.back-button:focus {
	outline: 3px solid rgba(255, 255, 255, 0.5);
	outline-offset: 3px;
}

footer {
	background: #000;
	padding: var(--spacing-xl) 0 var(--spacing-lg);
	color: #fff;
	position: relative;
	z-index: 10001;
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
	opacity: 0.6;
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.footer-sections {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-xl);
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 var(--spacing-md);
}

.footer-section h3 {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: var(--spacing-xs);
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.8;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
}

.footer-section ul li {
	margin: 0;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	font-size: 0.9375rem;
	padding: 2px 0;
}

.footer-section a:hover {
	color: #fff;
	padding-left: 4px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
	padding-top: var(--spacing-md);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: var(--spacing-lg);
	position: relative;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--spacing-md);
	padding-right: var(--spacing-md);
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
	opacity: 0.5;
}

.footer-bottom p {
	margin: 0;
	text-align: right;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
}

.update-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 2px solid transparent;
	font-size: 0.875rem;
}

.update-link:hover {
	color: #fff;
	border-bottom-color: var(--color-primary);
}

.table-of-contents {
	background: rgba(14, 116, 144, 0.05);
	padding: 2rem;
	border-radius: 8px;
	margin: 2rem 0;
	border: 1px solid var(--color-border);
}

.table-of-contents h2 {
	margin-top: 0;
	color: var(--color-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.table-of-contents ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.table-of-contents li {
	margin: 0.75rem 0;
}

.table-of-contents a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all var(--transition);
	display: inline-block;
	padding: 0.25rem 0;
}

.table-of-contents a:hover {
	color: var(--color-primary-dark);
	padding-left: 0.5rem;
}

@media (max-width: 768px) {
	.footer-sections {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-lg);
		padding: 0 var(--spacing-sm);
	}
	
	header {
		
		
		
		
		
	
	overflow: visible !important;
	max-height: none !important;
}
	
	.header-content {
		height: 4rem;
		padding: 0 var(--spacing-sm);
		gap: var(--spacing-xs);
		min-height: 4rem;
		overflow: visible !important;
		overflow-x: visible !important;
		overflow-y: visible !important;
		max-height: none !important;
	}
	
	nav {
		overflow: visible !important;
		overflow-x: visible !important;
		overflow-y: visible !important;
		max-height: none !important;
		height: auto !important;
	}

	.logo-link {
		font-size: 1rem;
		gap: var(--spacing-xs);
		flex-shrink: 0;
		min-width: 0;
		overflow: hidden;
	}

	.logo-link span {
		display: none;
	}

	.logo-link img {
		height: 3rem;
		width: auto;
		max-width: 3rem;
		object-fit: contain;
	}

	.back-button {
		bottom: 1rem;
		right: 1rem;
		width: 3rem;
		height: 3rem;
		font-size: 1.25rem;
		padding: 0;
	}

	.mobile-menu-toggle {
		display: flex;
		padding: 0;
		min-width: 2.5rem;
		min-height: 2.5rem;
		width: 2.5rem;
		height: 2.5rem;
		flex-shrink: 0;
	}

	nav:not(.mobile-menu) {
		display: none;
	}

	nav .dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		margin: 0;
		padding: 0;
		background: transparent;
	}

	.mobile-menu {
		position: absolute;
		top: 100%;
		width: 100%;
		left: 0;
		right: 0;
		
		overflow: visible !important;
		overflow-y: visible !important;
		overflow-x: visible !important;
		height: auto;
	}

	.mobile-menu a {
		padding: var(--spacing-sm) var(--spacing-md);
		text-align: left;
		border-radius: 0;
		font-size: 1rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown > a {
		font-weight: 600;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown-menu a {
		font-size: 0.9rem;
		padding-left: calc(var(--spacing-md) * 2);
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.hero {
		padding: var(--spacing-lg) var(--spacing-sm);
		min-height: calc(100vh - 8rem);
	}

	.hero-logo {
		margin-bottom: var(--spacing-md);
	}

	.hero-logo img {
		height: 15rem;
		max-width: 90vw;
	}

	.hero h1 {
		font-size: clamp(2rem, 8vw, 3.5rem);
		margin-bottom: var(--spacing-sm);
		padding: 0 var(--spacing-sm);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: clamp(1rem, 4vw, 1.25rem);
		padding: 0 var(--spacing-sm);
		line-height: 1.7;
		margin-bottom: var(--spacing-lg);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		gap: var(--spacing-sm);
		padding: 0 var(--spacing-sm);
		box-sizing: border-box;
	}
	
	@media (min-width: 768px) {
		.hero-actions {
			flex-direction: row;
			justify-content: center;
			gap: var(--spacing-md);
		}
	}

	.table-of-contents {
		padding: 1.5rem;
		margin: 1.5rem 0;
	}

	.table-of-contents h2 {
		font-size: 1.25rem;
	}

	.table-of-contents li {
		margin: 0.5rem 0;
	}

	.content-section img {
		border-radius: 6px;
		max-width: 100%;
		height: auto;
		display: block;
		margin: var(--spacing-sm) auto;
	}
	
	.content-section table {
		width: 100%;
		overflow-x: auto;
		display: block;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	
	.content-section table thead,
	.content-section table tbody,
	.content-section table tr {
		display: table;
		width: 100%;
		table-layout: fixed;
	}
	
	.content-section figure {
		width: 100%;
		max-width: 100%;
		overflow-x: auto;
		margin: var(--spacing-sm) 0;
	}
	
	.content-section code {
		word-break: break-all;
		overflow-wrap: break-word;
		display: inline-block;
		max-width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 1rem;
		box-sizing: border-box;
		max-width: 100%;
	}

	.card-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
		padding: 0 var(--spacing-sm);
		overflow: visible !important;
	}

	.card {
		padding: var(--spacing-md);
		overflow: visible !important;
	}

	.content-section {
		padding: var(--spacing-md) var(--spacing-sm);
		margin: 0;
		width: 100%;
		max-width: 100%;
		overflow-x: visible !important;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.content-section h1 {
		font-size: clamp(1.75rem, 6vw, 2rem);
		margin-bottom: var(--spacing-md);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.3;
	}

	.content-section h2 {
		font-size: clamp(1.5rem, 5vw, 1.75rem);
		margin-top: var(--spacing-lg);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section h3 {
		font-size: clamp(1.25rem, 4vw, 1.375rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section p {
		font-size: 1rem;
		line-height: 1.7;
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.container {
		padding: 0 var(--spacing-sm);
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	
	overflow-x: visible !important;
}

	footer {
		padding: var(--spacing-md) var(--spacing-sm);
	}

	.footer-sections {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
		width: 100%;
		max-width: 100%;
		overflow-x: visible !important;
	}

	.footer-section h3 {
		font-size: 0.9375rem;
		margin-bottom: var(--spacing-xs);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.footer-section a {
		font-size: 0.875rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		display: block;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: var(--spacing-xs);
		width: 100%;
	}

	.footer-bottom p {
		font-size: 0.8125rem;
		text-align: center;
		width: 100%;
		word-wrap: break-word;
		overflow-wrap: break-word;
		margin: 0;
	}

	.update-link {
		font-size: 0.8125rem;
	}

	.mobile-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		
		overflow: visible;
		overflow-y: visible !important;
		overflow-x: visible !important;
		max-height: none !important;
		height: auto;
		height: auto;
		overflow-y: visible;
		overflow-x: visible;
	}

	.container {
		max-width: 100%;
		
		padding: 0 var(--spacing-sm);
	
	overflow-x: visible !important;
}

	body {
		
		width: 100%;
		max-width: 100vw;
		position: relative;
	
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: auto !important;
}
	
	main {
		overflow-x: visible !important;
		overflow-y: visible !important;
		width: 100%;
		max-width: 100vw;
		min-height: auto;
	}
	
	.content-section table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		max-width: 100%;
	}
	
	.content-section table thead,
	.content-section table tbody {
		display: table;
		width: 100%;
		min-width: 600px;
	
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: auto !important;
}

	* {
		box-sizing: border-box;
	}

	.mobile-menu .mobile-dropdown > a.no-link {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.mobile-menu .mobile-dropdown > a.no-link::after {
		margin-left: auto;
	}
}

@media (max-width: 768px) and (orientation: landscape) {
	header {
		
		
		
		
		
	
	overflow: visible !important;
	max-height: none !important;
}
	
	.header-content {
		height: 3.5rem;
		overflow: visible !important;
		overflow-x: visible !important;
		overflow-y: visible !important;
		max-height: none !important;
	}
	
	nav {
		overflow: visible !important;
		overflow-x: visible !important;
		overflow-y: visible !important;
		max-height: none !important;
		height: auto !important;
	}
	
	.logo-link img {
		height: 2.5rem;
	}
}

@media (max-width: 480px) {
	header {
		
		
		
		
		
	
	overflow: visible !important;
	max-height: none !important;
}
	
	.header-content {
		height: 3.5rem;
		padding: 0 var(--spacing-xs);
		gap: var(--spacing-xs);
		overflow: visible !important;
		overflow-x: visible !important;
		overflow-y: visible !important;
		max-height: none !important;
	}
	
	nav {
		overflow: visible !important;
		overflow-x: visible !important;
		overflow-y: visible !important;
		max-height: none !important;
		height: auto !important;
	}

	.logo-link {
		font-size: 0.95rem;
	}

	.logo-link span {
		display: none;
	}

	.logo-link img {
		height: 3rem;
		width: auto;
	}

	.mobile-menu-toggle {
		width: 2.25rem;
		height: 2.25rem;
		min-width: 2.25rem;
		min-height: 2.25rem;
	}

	.mobile-menu-toggle span {
		width: 18px;
		height: 2px;
	}

	.mobile-menu a {
		padding: var(--spacing-xs) var(--spacing-sm);
		font-size: 0.9375rem;
	}

	.mobile-menu .mobile-dropdown > a {
		font-size: 1rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown-menu a {
		font-size: 0.875rem;
		padding-left: calc(var(--spacing-sm) * 2);
	}

	.mobile-menu-toggle {
		min-width: 2.25rem;
		min-height: 2.25rem;
		width: 2.25rem;
		height: 2.25rem;
		flex-shrink: 0;
	}

	.mobile-menu-toggle span {
		width: 20px;
		height: 2.5px;
	}

	.mobile-menu a {
		padding: var(--spacing-sm) var(--spacing-md);
		font-size: 1rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown > a {
		font-weight: 600;
		font-size: 1.05rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown-menu a {
		padding-left: calc(var(--spacing-md) * 2);
		font-size: 0.95rem;
		font-weight: 400;
	}

	.hero {
		padding: var(--spacing-md) var(--spacing-xs);
		min-height: calc(100vh - 7rem);
	}

	.hero-logo img {
		height: 12rem;
		max-width: 85vw;
	}

	.hero h1 {
		font-size: clamp(1.75rem, 7vw, 2.5rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
		padding: 0 var(--spacing-xs);
		line-height: 1.65;
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.hero-actions .btn {
		padding: var(--spacing-xs) var(--spacing-sm);
		font-size: 0.9375rem;
		box-sizing: border-box;
		max-width: 100%;
		width: 100%;
	}

	.content-section {
		padding: var(--spacing-sm) var(--spacing-xs);
		margin: 0;
		width: 100%;
		max-width: 100%;
		overflow-x: visible !important;
		box-sizing: border-box;
	}

	.content-section h1 {
		font-size: clamp(1.5rem, 5.5vw, 1.875rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.3;
	}

	.content-section h2 {
		font-size: clamp(1.25rem, 4.5vw, 1.5rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section h3 {
		font-size: clamp(1.125rem, 4vw, 1.25rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section p {
		font-size: 0.9375rem;
		line-height: 1.65;
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.content-section ul,
	.content-section ol {
		padding-left: var(--spacing-md);
		margin-left: 0;
		width: 100%;
		overflow-x: visible !important;
	}
	
	.content-section li {
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.btn {
		padding: 0.875rem 1.75rem;
		font-size: 0.9375rem;
	}
}

@media (max-width: 360px) {
	.header-content {
		height: 3.25rem;
		padding: 0 var(--spacing-xs);
	}

	.logo-link img {
		height: 2.75rem;
	}

	.mobile-menu-toggle {
		width: 2rem;
		height: 2rem;
		min-width: 2rem;
		min-height: 2rem;
	}

	.mobile-menu-toggle span {
		width: 16px;
		height: 2px;
	}

	.hero-logo img {
		height: 10rem;
		max-width: 80vw;
	}

	.hero h1 {
		font-size: clamp(1.5rem, 6vw, 2rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: clamp(0.875rem, 3vw, 1rem);
		line-height: 1.6;
	}

	.hero-actions .btn {
		font-size: 0.875rem;
		padding: var(--spacing-xs) var(--spacing-sm);
		width: 100%;
		box-sizing: border-box;
		max-width: 100%;
	}

	.content-section {
		padding: var(--spacing-xs);
		margin: 0;
		width: 100%;
		max-width: 100%;
		overflow-x: visible !important;
		box-sizing: border-box;
	}

	.content-section h1 {
		font-size: clamp(1.375rem, 5vw, 1.75rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.3;
	}

	.content-section h2 {
		font-size: clamp(1.125rem, 4.5vw, 1.5rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section h3 {
		font-size: clamp(1rem, 4vw, 1.25rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section p {
		font-size: 0.875rem;
		line-height: 1.6;
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.card-grid {
		gap: var(--spacing-sm);
		padding: 0 var(--spacing-xs);
	}

	.card {
		padding: var(--spacing-sm);
	}

	.footer-sections {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
		width: 100%;
		max-width: 100%;
		overflow-x: visible !important;
		padding: 0 var(--spacing-xs);
	}

	.footer-section h3 {
		font-size: 0.875rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.footer-section a {
		font-size: 0.8125rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		display: block;
	}

	.footer-bottom p {
		font-size: 0.75rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		text-align: center;
		width: 100%;
	}

	.mobile-menu {
		position: absolute;
		top: 100%;
		
		overflow: visible;
		overflow-y: visible !important;
		overflow-x: visible !important;
		max-height: none !important;
		height: auto;
	}

	.mobile-menu a {
		padding: var(--spacing-xs) var(--spacing-sm);
		font-size: 0.9375rem;
	}

	.mobile-menu .mobile-dropdown > a {
		font-size: 0.975rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown-menu a {
		font-size: 0.875rem;
		padding-left: calc(var(--spacing-sm) * 2);
	}

	.btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 320px) {
	.header-content {
		height: 3rem;
		padding: 0 calc(var(--spacing-xs) / 2);
	}

	.logo-link img {
		height: 2.5rem;
	}

	.mobile-menu-toggle {
		width: 1.875rem;
		height: 1.875rem;
		min-width: 1.875rem;
		min-height: 1.875rem;
	}

	.mobile-menu-toggle span {
		width: 14px;
		height: 2px;
	}

	.hero-logo img {
		height: 8rem;
		max-width: 75vw;
	}

	.hero h1 {
		font-size: clamp(1.25rem, 5.5vw, 1.75rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.content-section h1 {
		font-size: clamp(1.25rem, 4.5vw, 1.625rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.3;
	}

	.content-section h2 {
		font-size: clamp(1.0625rem, 4vw, 1.375rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section h3 {
		font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
		line-height: 1.4;
	}

	.content-section p {
		font-size: 0.8125rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	
	.content-section pre {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		word-wrap: normal;
		white-space: pre;
		max-width: 100%;
	}
	
	.content-section pre code {
		display: block;
		white-space: pre;
		overflow-x: auto;
	}

	.footer-section h3 {
		font-size: 0.8125rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		max-width: 100%;
	}

	.footer-section a {
		font-size: 0.75rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		display: block;
	}

	.mobile-menu {
		position: absolute;
		top: 100%;
		
		overflow: visible;
		overflow-y: visible !important;
		overflow-x: visible !important;
		max-height: none !important;
		height: auto;
	}

	.mobile-menu a {
		padding: calc(var(--spacing-xs) / 2) var(--spacing-xs);
		font-size: 0.875rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown > a {
		font-size: 0.9375rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.mobile-menu .mobile-dropdown-menu a {
		font-size: 0.8125rem;
		padding-left: var(--spacing-sm);
		word-wrap: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}

	.btn {
		padding: 0.6875rem 1.25rem;
		font-size: 0.8125rem;
	}
}

.highlight-section {
	animation: highlightPulse 2s ease-out;
	background: linear-gradient(90deg, transparent, rgba(14, 116, 144, 0.2), transparent);
	border-left: 4px solid var(--color-primary);
	padding-left: 1rem;
	margin-left: -1rem;
	transition: all 0.3s ease;
	border-radius: 4px;
	box-shadow: 0 0 20px rgba(14, 116, 144, 0.2);
}

@keyframes highlightPulse {
	0% {
		background: linear-gradient(90deg, transparent, rgba(14, 116, 144, 0.4), transparent);
		border-left-color: var(--color-primary-light);
		box-shadow: 0 0 30px rgba(14, 116, 144, 0.4);
		transform: scale(1);
	}
	50% {
		background: linear-gradient(90deg, transparent, rgba(14, 116, 144, 0.25), transparent);
		border-left-color: var(--color-primary);
		box-shadow: 0 0 25px rgba(14, 116, 144, 0.3);
		transform: scale(1.005);
	}
	100% {
		background: linear-gradient(90deg, transparent, rgba(14, 116, 144, 0.1), transparent);
		border-left-color: var(--color-primary-dark);
		box-shadow: 0 0 15px rgba(14, 116, 144, 0.2);
		transform: scale(1);
	}
}

nav .nav-dropdown > a.no-link {
	cursor: default;
	pointer-events: none;
	opacity: 0.9;
	user-select: none;
}

nav .nav-dropdown > a.no-link::after {
	content: ' ▼';
	font-size: 0.7em;
	opacity: 0.7;
	margin-left: 2px;
	transition: opacity 0.1s ease;
}

nav .nav-dropdown:hover > a.no-link::after {
	opacity: 0.9;
}

@media (max-width: 768px) {
	.mobile-dropdown > a.no-link {
		cursor: pointer;
		pointer-events: auto;
		opacity: 1;
		user-select: none;
	}
	
	.mobile-dropdown > a.no-link:hover {
		background: var(--color-bg);
		color: var(--color-primary);
	}
}

