/* ============================================================================
   MIYUNIM.CO.IL - UNIFIED STYLESHEET
   Single consolidated CSS file for entire website and M3 system
   ============================================================================ */

/* ============================================================================
   GLOBAL RESET & BASE STYLES
   ============================================================================ */

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

body {
	font-family: "Heebo", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #f5f7fa;
	min-height: 100vh;
	color: #24292e;
	font-size: 16px;
	line-height: 1.6;
}

/* ============================================================================
   CONTAINERS
   ============================================================================ */

.main-container,
.container,
.test-container,
.results-container,
.comparison-container {
	max-width: 800px;
	margin: 40px auto;
	background: white;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border: 1px solid #e1e4e8;
	overflow: hidden;
}

.results-container {
	max-width: 900px;
}

.comparison-container {
	max-width: 1000px;
	padding: 20px;
	min-height: 100vh;
}

.test-container {
	max-width: 600px;
}

body.test-page {
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

/* ============================================================================
   HEADERS - NO BLACK BLOCKS
   ============================================================================ */

.header,
.page-header,
.results-header {
	background: white;
	color: #24292e;
	padding: 35px;
	text-align: center;
	border-bottom: 2px solid #0366d6;
}

.header h1,
.page-header h1,
.results-header h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #24292e;
}

.header p,
.page-header p {
	font-size: 17px;
	color: #586069;
	margin-top: 10px;
	line-height: 1.6;
}

.comparison-header {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 3px solid #003366;
}

.comparison-header h1 {
	font-size: 32px;
	color: #003366;
	margin-bottom: 10px;
}

.comparison-header .subtitle {
	font-size: 16px;
	color: #666;
}

/* ============================================================================
   CONTENT AREAS
   ============================================================================ */

.content,
.form-content {
	padding: 40px;
}

.section {
	margin-bottom: 30px;
}

.section h2 {
	font-size: 24px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 15px;
}

.section h3 {
	font-size: 20px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 12px;
}

.section p,
.section li {
	font-size: 16px;
	color: #586069;
	line-height: 1.7;
	margin-bottom: 12px;
}

/* ============================================================================
   BUTTONS - CONSISTENT STYLE
   ============================================================================ */

.btn,
.btn-primary,
.button {
	display: inline-block;
	background: #0366d6;
	color: white;
	padding: 14px 32px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border: 1px solid #0366d6;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.btn:hover,
.btn-primary:hover,
.button:hover {
	background: #0256c7;
	border-color: #0256c7;
	color: white;
}

.btn-secondary {
	background: white;
	color: #24292e;
	border: 1px solid #d1d5da;
	padding: 14px 32px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-block;
}

.btn-secondary:hover {
	background: #f3f4f6;
	border-color: #c3c7cc;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================================================
   BUTTON VARIANTS - SPECIALIZED BUTTONS
   ============================================================================ */

/* Submit buttons (forms) */
.submit-btn {
	display: inline-block;
	padding: 14px 35px;
	background: #0366d6;
	color: white;
	border: 2px solid #0366d6;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
}

.submit-btn:hover:not(:disabled) {
	background: #0256c7;
	border-color: #0256c7;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(3, 102, 214, 0.3);
}

.submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Start test button (prominent CTA) */
.btn-start {
	display: inline-block;
	padding: 18px 50px;
	background: #ff9800;
	color: white;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
	border: none;
	cursor: pointer;
}

.btn-start,
a.btn-start,
.container a.btn-start,
.article-content a.btn-start {
	color: #ffffff;
	text-decoration: none;
}

.btn-start:visited,
a.btn-start:visited,
.container a.btn-start:visited,
.article-content a.btn-start:visited {
	color: #ffffff;
	text-decoration: none;
}

.btn-start:active,
a.btn-start:active,
.container a.btn-start:active,
.article-content a.btn-start:active {
	color: #ffffff;
	text-decoration: none;
}

.btn-start:visited,
.btn-start:active {
	color: white;
	background: #ff9800;
}

.btn-start:hover {
	background: #f57c00;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(255, 152, 0, 0.5);
}

/* Smaller orange CTA (e.g., "חזור למבחן") */
.btn-start.btn-sm {
	padding: 10px 24px;
	font-size: 15px;
	box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);
}

/* Danger buttons (delete, block, etc.) */
.btn-danger {
	background: #dc3545;
	color: white;
	border-color: #dc3545;
}

.btn-danger:hover {
	background: #c82333;
	border-color: #bd2130;
	transform: translateY(-2px);
}

/* Admin action buttons */
.action-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 16px;
	background: #f5f7fa;
	border: 1px solid #d1d5da;
	border-radius: 6px;
	font-size: 14px;
	color: #24292e;
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
}

.action-btn:hover {
	background: #e1e4e8;
	transform: translateY(-1px);
}

.action-btn .material-icons {
	font-size: 18px;
}

/* ============================================================================
   ADMIN PAGES (m3/admin/*)
   ============================================================================ */

.header-actions {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.stats-bar {
	max-width: 1400px;
	margin: 20px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.stat-card {
	background: white;
	border: 1px solid #e1e4e8;
	border-radius: 8px;
	padding: 16px 18px;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.stat-card .label {
	font-size: 13px;
	color: #6a737d;
	margin-bottom: 8px;
}

.stat-card .value {
	font-size: 28px;
	font-weight: 700;
	color: #24292e;
}

.users-table-container {
	max-width: 1400px;
	margin: 20px auto 60px;
	padding: 0 20px;
	overflow-x: auto;
}

.users-table-container table {
	width: 100%;
	min-width: 980px;
	border-collapse: collapse;
	background: white;
	border: 1px solid #e1e4e8;
	border-radius: 8px;
	overflow: hidden;
}

.users-table-container th,
.users-table-container td {
	padding: 14px 16px;
	border-bottom: 1px solid #e1e4e8;
	font-size: 14px;
	text-align: right;
	vertical-align: middle;
}

.users-table-container thead th {
	background: #fafbfc;
	font-weight: 600;
	color: #24292e;
	white-space: nowrap;
}

.users-table-container tbody tr:hover {
	background: #f6fbff;
}

.users-table-container tbody tr:last-child td {
	border-bottom: none;
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #d1d5db;
	white-space: nowrap;
}

.badge-success {
	background: #dcfce7;
	color: #166534;
	border-color: #86efac;
}

.badge-warning {
	background: #fef3c7;
	color: #92400e;
	border-color: #fbbf24;
}

.badge-info {
	background: #e0f2fe;
	color: #0c4a6e;
	border-color: #7dd3fc;
}

.badge-admin {
	background: #ede9fe;
	color: #5b21b6;
	border-color: #c4b5fd;
}

.badge-user {
	background: #f3f4f6;
	color: #374151;
	border-color: #d1d5db;
}

.messages-section {
	max-width: 1400px;
	margin: 20px auto;
	width: calc(100% - 40px);
	background: white;
	border: 1px solid #e1e4e8;
	border-radius: 8px;
	overflow: hidden;
}

.messages-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: #fafbfc;
	border-bottom: 1px solid #e1e4e8;
}

.messages-header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.message-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 20px;
	border-bottom: 1px solid #e1e4e8;
}

.message-item:last-of-type {
	border-bottom: none;
}

.message-info h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
}

.message-meta {
	font-size: 13px;
	color: #6a737d;
	margin-bottom: 10px;
}

.message-preview {
	font-size: 14px;
	color: #24292e;
	background: #f6f8fa;
	border: 1px solid #e1e4e8;
	padding: 10px 12px;
	border-radius: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 900px;
}

.no-data {
	padding: 50px 20px;
	text-align: center;
	color: #6a737d;
}

@media (max-width: 768px) {
	.users-table-container {
		padding: 0 10px;
	}

	.users-table-container table {
		min-width: 900px;
	}

	.messages-section {
		width: calc(100% - 20px);
	}

	.messages-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.message-item {
		flex-direction: column;
	}

	.message-preview {
		max-width: 100%;
		white-space: normal;
	}
}

/* Export button */
.export-btn {
	background: #0366d6;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.export-btn:hover {
	background: #0256c7;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(3, 102, 214, 0.3);
}

/* View all button */
.view-all-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #ffc107;
	color: #000;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.view-all-btn:hover {
	background: #ffb300;
	transform: translateY(-2px);
}

/* Back link navigation */
.back-link {
	display: inline-block;
	color: #0366d6;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	transition: color 0.2s ease;
}

.back-link:hover {
	color: #0256c7;
	text-decoration: underline;
}

/* Article card link */
.article-card-link,
.related-article-card {
	text-decoration: none;
	color: inherit;
	background: white;
	padding: 25px;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	display: block;
}

.related-article-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	border-color: #0366d6;
}

.related-article-card h3 {
	font-size: 18px;
	color: #0D47A1;
	margin-bottom: 12px;
	font-weight: 600;
}

.related-article-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* ============================================================================
   FORMS
   ============================================================================ */

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5da;
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
	transition: border-color 0.2s;
	background: white;
	color: #24292e;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #0366d6;
	box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
}

/* Admin filters and inline selects */
.filters select,
.filters input[type="text"],
.submission-actions select,
form select:not(.form-group select) {
	padding: 8px 12px;
	border: 1px solid #d1d5da;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	background: white;
	color: #24292e;
	margin-right: 10px;
}

.filters {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.filters select:focus,
.filters input:focus {
	outline: none;
	border-color: #0366d6;
}

.form-group small {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: #6a737d;
}

/* ============================================================================
   ALERTS & MESSAGES
   ============================================================================ */

.alert {
	padding: 15px 20px;
	border-radius: 4px;
	margin-bottom: 20px;
	font-size: 15px;
	border: 1px solid transparent;
}

.alert-success {
	background: #dcfce7;
	color: #166534;
	border-color: #86efac;
}

.alert-error {
	background: #fee2e2;
	color: #991b1b;
	border-color: #fca5a5;
}

.alert-warning {
	background: #fef3c7;
	color: #92400e;
	border-color: #fbbf24;
}

.alert-info {
	background: #e0f2fe;
	color: #0c4a6e;
	border-color: #7dd3fc;
}

/* ============================================================================
   LOADING & ERROR SCREENS
   ============================================================================ */

.loading-screen,
.error-screen,
.test-screen,
.completion-screen,
.results-screen {
	padding: 60px 30px;
	text-align: center;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.test-screen,
.completion-screen {
	justify-content: flex-start;
	align-items: stretch;
	padding: 40px 30px;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #e1e4e8;
	border-top: 4px solid #0366d6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loading-screen p,
.error-screen p {
	font-size: 17px;
	color: #586069;
	margin: 10px 0;
}

.error-icon {
	font-size: 70px;
	color: #d73a49;
	font-weight: bold;
	margin-bottom: 20px;
}

.error-icon .material-icons,
.success-icon .material-icons {
	font-size: 70px;
}

.success-icon {
	width: 100px;
	height: 100px;
	background: #27ae60;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	font-weight: bold;
	color: white;
	margin-bottom: 30px;
}

.error-screen h2,
.completion-screen h2 {
	font-size: 28px;
	color: #24292e;
	font-weight: 600;
	margin-bottom: 15px;
}

/* ============================================================================
   RESULTS PAGE - TEST HISTORY (top section)
   ============================================================================ */

.test-history-section {
	width: 100%;
	margin-bottom: 25px;
}

.test-history-section h3 {
	font-size: 18px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 12px;
}

.test-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.test-item {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #e1e4e8;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.test-item:hover {
	border-color: #c8d1db;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.test-item.active {
	border-color: #0366d6;
	background: #f6fbff;
}

.test-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.test-item-date {
	margin-top: 6px;
	font-size: 14px;
	color: #6a737d;
}

.test-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid transparent;
}

.test-status.complete {
	background: #dcfce7;
	color: #166534;
	border-color: #86efac;
}

.test-status.incomplete {
	background: #fef3c7;
	color: #92400e;
	border-color: #fbbf24;
}

.comparison-link-box {
	margin-bottom: 10px;
}

.comparison-link {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 6px;
	background: #0366d6;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.comparison-link:hover {
	filter: brightness(0.95);
}

/* ============================================================================
   TEST PAGE SPECIFIC STYLES
   ============================================================================ */

.progress-bar-container {
	width: 100%;
	height: 8px;
	background: #e0e0e0;
	border-radius: 3px;
	overflow: hidden;
}

.progress-bar {
	height: 100%;
	background: #0366d6;
	width: 0%;
	transition: width 0.4s ease;
}

.progress-text {
	padding: 20px 30px 10px;
	text-align: center;
	font-size: 16px;
	color: #666;
	font-weight: 500;
}

.question-card {
	padding: 30px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.question-text {
	font-size: 22px;
	line-height: 1.6;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 40px;
	font-weight: 500;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}

.answers-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 100%;
}

.answer-btn {
	background: #f8f9fa;
	border: 2px solid #e0e0e0;
	border-radius: 3px;
	padding: 18px 20px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 15px;
	font-family: inherit;
	text-align: right;
	width: 100%;
	min-height: 60px;
	box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
	.answer-btn:hover {
		background: #0366d6;
		border-color: #0366d6;
		color: white;
		transform: translateX(-5px);
		box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	}

	.answer-btn:hover .answer-number {
		background: white;
		color: #0366d6;
	}
}

.answer-btn.selected {
	background: #0366d6;
	border-color: #0366d6;
	color: white;
	transform: translateX(-5px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.answer-btn:active {
	transform: translateX(-5px) scale(0.98);
}

.answer-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.answer-number {
	width: 32px;
	height: 32px;
	background: #0366d6;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	flex-shrink: 0;
	order: 2;
}

.answer-btn.selected .answer-number {
	background: white;
	color: #0366d6;
}

.answer-label {
	flex: 1;
	font-weight: 500;
	text-align: right;
	line-height: 1.4;
	order: 1;
}

.controls {
	padding: 20px 30px 30px;
	text-align: center;
}

/* ============================================================================
   SPEED TRAP MODAL
   ============================================================================ */

.speed-trap-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9998;
	display: none;
	pointer-events: auto;
}

.speed-trap-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 9999;
	display: none;
}

.speed-trap-content {
	padding: 40px 30px;
	text-align: center;
}

.speed-trap-icon {
	font-size: 80px;
	color: #ff9800;
	margin-bottom: 20px;
}

.speed-trap-icon .material-icons {
	font-size: 80px;
}

.speed-trap-modal h2 {
	font-size: 24px;
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 600;
}

.speed-trap-modal p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}

.speed-trap-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.speed-trap-options button {
	width: 100%;
	padding: 16px 24px;
	font-size: 16px;
}

.feedback-textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 3px;
	font-family: inherit;
	font-size: 15px;
	resize: vertical;
	margin-bottom: 20px;
	direction: rtl;
}

.feedback-textarea:focus {
	outline: none;
	border-color: #0366d6;
}

.speed-trap-notification {
	position: fixed;
	top: 20px;
	right: 50%;
	transform: translateX(50%) translateY(-100px);
	background: white;
	padding: 16px 24px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	font-size: 16px;
	font-weight: 500;
	opacity: 0;
	transition: all 0.3s ease;
	max-width: 90%;
	text-align: center;
	border-right: 4px solid #0366d6;
}

.speed-trap-notification.show {
	opacity: 1;
	transform: translateX(50%) translateY(0);
}

.speed-trap-notification.success {
	border-right-color: #27ae60;
	background: #d4edda;
	color: #155724;
}

.speed-trap-notification.error {
	border-right-color: #e74c3c;
	background: #f8d7da;
	color: #721c24;
}

.speed-trap-notification.warning {
	border-right-color: #ff9800;
	background: #fff3cd;
	color: #856404;
}

/* ============================================================================
   RESULTS PAGE STYLES
   ============================================================================ */

.progress-info {
	font-size: 17px;
	margin-bottom: 18px;
	opacity: 1;
}

/* Results content wrapper injected by JS */
.results-content {
	width: 100%;
}

/* Insufficient data state (results.php when not enough answers) */
.insufficient-data-message {
	width: 100%;
	max-width: 720px;
	margin: 20px auto 0;
	padding: 28px 24px;
	background: #ffffff;
	border: 1px solid #e1e4e8;
	border-radius: 8px;
	text-align: center;
}

.insufficient-data-message h2 {
	margin: 0 0 10px;
	font-size: 26px;
	font-weight: 700;
	color: #24292e;
}

.insufficient-data-message .message-text {
	margin: 0 0 14px;
	color: #586069;
	font-size: 16px;
}

.insufficient-data-message .progress-status {
	margin-top: 10px;
	color: #586069;
	font-size: 16px;
	line-height: 1.8;
}

.insufficient-data-message .message-actions {
	margin-top: 18px;
	display: flex;
	justify-content: center;
}

.progress-info strong {
	font-weight: 600;
}

.consistency-badge {
	display: inline-block;
	background: #f0f9ff;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 16px;
	border: 1px solid #0366d6;
	color: #0366d6;
}

.badge-value {
	font-weight: 600;
	font-size: 18px;
	margin-right: 5px;
}

.consistency-badge.good {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.consistency-badge.medium {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fcd34d;
}

.consistency-badge.low {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

.controls-top {
	padding: 20px 30px;
	text-align: center;
	border-bottom: 1px solid #e1e4e8;
	background: #fafbfc;
}

.traits-container {
	padding: 20px 30px 40px;
	background: #fafbfc;
}

.trait-card {
	background: white;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid #e1e4e8;
}

.trait-card:hover {
	border-color: #d1d5da;
}

.trait-header {
	padding: 20px;
	background: white;
	cursor: pointer;
	user-select: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e1e4e8;
}

.trait-info {
	flex: 1;
}

.trait-name {
	font-size: 22px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 8px;
}

.trait-description {
	font-size: 15px;
	color: #586069;
	line-height: 1.6;
}

.trait-score-display {
	text-align: left;
	padding-left: 20px;
}

.score-number {
	font-size: 32px;
	font-weight: 600;
	color: #0366d6;
}

.score-label {
	font-size: 11px;
	color: #6a737d;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.trait-body {
	padding: 20px;
	display: none;
	background: #fafbfc;
}

.trait-card.expanded .trait-body {
	display: block;
}

.expand-icon {
	font-size: 20px;
	color: #6a737d;
	transition: transform 0.2s ease;
}

.trait-card.expanded .expand-icon {
	transform: rotate(180deg);
}

.facet-item {
	background: white;
	border-radius: 4px;
	padding: 18px;
	margin-bottom: 15px;
	border: 1px solid #e1e4e8;
}

.facet-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.facet-name {
	font-size: 18px;
	font-weight: 600;
	color: #24292e;
}

.facet-score {
	font-size: 24px;
	font-weight: 600;
	color: #0366d6;
}

.facet-description {
	font-size: 15px;
	color: #586069;
	margin-bottom: 12px;
	line-height: 1.6;
}

.score-bar-container {
	width: 100%;
	height: 8px;
	background: #e1e4e8;
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 15px;
}

.score-bar {
	height: 100%;
	background: #0366d6;
	border-radius: 2px;
	transition: width 0.4s ease;
}

.results-footer {
	padding: 20px 30px;
	background: #fafbfc;
	border-top: 1px solid #e1e4e8;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Results page: AUTH (authenticity) explanation toggle */
.auth-detailed-feedback {
	margin-top: 14px;
	text-align: center;
}

.auth-detail-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f5f7fa;
	color: #24292e;
	border: 1px solid #d1d5da;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
	font-family: inherit;
}

.auth-detail-toggle:hover {
	background: #e1e4e8;
	border-color: #c3c7cc;
}

.auth-detail-toggle:active {
	transform: translateY(1px);
}

.auth-detail-toggle:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.15);
	border-color: #0366d6;
}

.auth-detail-toggle .toggle-icon {
	font-size: 14px;
	line-height: 1;
}

.auth-detail-content {
	margin-top: 12px;
	text-align: right;
}

/* ============================================================================
   COMPARISON PAGE STYLES
   ============================================================================ */

.summary-card {
	background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
	color: white;
	padding: 30px;
	border-radius: 4px;
	margin-bottom: 30px;
	box-shadow: 0 8px 25px rgba(0, 51, 102, 0.3);
}

.summary-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.stat-item {
	text-align: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
	backdrop-filter: blur(10px);
}

.stat-value {
	font-size: 36px;
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	opacity: 0.9;
}

.traits-comparison {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.trait-comparison-card {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 3px;
	border: 1px solid #e0e0e0;
}

.trait-comparison-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
}

.trait-name-large {
	font-weight: 600;
	font-size: 20px;
	color: #2c3e50;
}

.improvement-badge {
	font-weight: bold;
	font-size: 22px;
	padding: 8px 20px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.improvement-badge.positive {
	color: #27ae60;
	background: #d4edda;
}

.improvement-badge.negative {
	color: #e74c3c;
	background: #f8d7da;
}

.improvement-badge.neutral {
	color: #666;
	background: #f0f0f0;
}

.improvement-arrow {
	font-size: 28px;
}

.test-scores {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.test-score-row {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: white;
	border-radius: 8px;
	transition: all 0.3s;
}

.test-score-row:hover {
	transform: translateX(-3px);
	box-shadow: 0 2px 8px rgba(0, 51, 102, 0.1);
}

.test-label {
	min-width: 80px;
	font-size: 15px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
}

.test-label:hover {
	color: #003366;
}

.test-bar-container {
	flex: 1;
	height: 35px;
	background: #f0f0f0;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.test-bar {
	height: 100%;
	transition: width 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 10px;
	color: white;
	font-weight: 600;
	font-size: 14px;
}

.test-score-value {
	min-width: 60px;
	text-align: left;
	font-weight: 600;
	font-size: 18px;
	color: #2c3e50;
}

.score-change-indicator {
	min-width: 70px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}

.score-change-indicator.up {
	color: #27ae60;
}

.score-change-indicator.down {
	color: #e74c3c;
}

.score-change-indicator.neutral {
	color: #999;
}

.comparison-footer {
	padding: 25px;
	background: #f8f9fa;
	border-top: 2px solid #e0e0e0;
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
	border-radius: 3px;
}

/* ============================================================================
   AI REPORT SECTION
   ============================================================================ */

.ai-report-section {
	margin: 20px 30px 30px 30px;
	background: white;
	border-radius: 4px;
	overflow: hidden;
	border: 2px solid #0366d6;
}

.ai-report-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	background: #f6f8fa;
	cursor: pointer;
	border-bottom: 1px solid #d1d5da;
	transition: background 0.2s;
}

.ai-report-header:hover {
	background: #e1e4e8;
}

.ai-report-header.expanded {
	background: #0366d6;
}

.ai-report-header.expanded .ai-report-title h2,
.ai-report-header.expanded .ai-notice,
.ai-report-header.expanded .expand-icon {
	color: white;
}

.ai-report-title h2 {
	color: #24292e;
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 4px 0;
}

.ai-notice {
	color: #586069;
	font-size: 13px;
	font-style: italic;
	display: flex;
	align-items: center;
	gap: 5px;
}

.ai-report-body {
	padding: 20px;
	background: white;
}

.ai-report-loading {
	text-align: center;
	padding: 40px 20px;
}

.thinking-brain {
	font-size: 50px;
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	gap: 4px;
}

.thinking-brain span {
	animation: dotPulse 1.4s ease-in-out infinite;
	opacity: 0.3;
}

.thinking-brain span:nth-child(1) {
	animation-delay: 0s;
}

.thinking-brain span:nth-child(2) {
	animation-delay: 0.2s;
}

.thinking-brain span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes dotPulse {
	0%, 60%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	30% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.ai-report-text {
	background: white;
	padding: 20px;
	border-radius: 4px;
	line-height: 1.8;
	color: #24292e;
	direction: rtl;
	text-align: right;
	unicode-bidi: plaintext;
	white-space: pre-wrap;
	word-wrap: break-word;
	border: 1px solid #e1e4e8;
	font-size: 16px;
}

/* AI report typography: more space above headings than below */
.ai-report-text h1,
.ai-report-text h2,
.ai-report-text h3 {
	margin: 34px 0 6px;
	line-height: 1.25;
}

.ai-report-text h1:first-child,
.ai-report-text h2:first-child,
.ai-report-text h3:first-child {
	margin-top: 0;
}

.ai-report-text p {
	margin: 0 0 14px;
}

/* When the formatter creates "subtitles" as a bold-only paragraph */
.ai-report-text p > strong:only-child {
	display: block;
	margin: 30px 0 6px;
	font-size: 20px;
	line-height: 1.25;
	color: #24292e;
}

.ai-report-text p:first-child > strong:only-child {
	margin-top: 0;
}

/* Prevent extra whitespace from empty paragraphs created by formatting */
.ai-report-text p:empty {
	display: none;
	margin: 0;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
	background: white;
	color: #586069;
	text-align: center;
	padding: 30px;
	border-top: 1px solid #e1e4e8;
	font-size: 14px;
}

.footer a {
	color: #0366d6;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

/* ============================================================================
   CARDS & BOXES
   ============================================================================ */

.card {
	background: white;
	border: 1px solid #e1e4e8;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
}

.card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 12px;
}

.card p {
	font-size: 15px;
	color: #586069;
	line-height: 1.6;
}

/* ============================================================================
   FEATURE SECTIONS
   ============================================================================ */

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 30px;
}

.feature-item {
	background: white;
	border: 1px solid #e1e4e8;
	border-radius: 4px;
	padding: 25px;
	text-align: center;
}

.feature-icon {
	font-size: 40px;
	margin-bottom: 15px;
	color: #0366d6;
}

.feature-title,
.feature-item h3 {
	font-size: 18px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 10px;
}

.feature-desc,
.feature-item p {
	font-size: 15px;
	color: #586069;
	line-height: 1.6;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.hidden {
	display: none;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media print {
	body {
		background: white;
		padding: 0;
	}

	.results-container {
		box-shadow: none;
		border-radius: 0;
		border: none;
	}

	.controls-top,
	.results-footer,
	.expand-icon,
	.ai-report-section {
		display: none;
	}

	.trait-body {
		display: block !important;
	}
}

@media (max-width: 768px) {
	.main-container,
	.container,
	.test-container,
	.results-container {
		margin: 20px 10px;
		border-radius: 4px;
	}

	.comparison-container {
		padding: 10px;
	}

	.header,
	.page-header,
	.results-header {
		padding: 25px 20px;
	}

	.header h1,
	.page-header h1,
	.results-header h1 {
		font-size: 24px;
	}

	.comparison-header h1 {
		font-size: 24px;
	}

	.content,
	.form-content {
		padding: 25px 20px;
	}

	.features {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.btn,
	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}

	.question-text {
		font-size: 19px;
		min-height: 80px;
		margin-bottom: 30px;
	}

	.answer-btn {
		padding: 15px 18px;
		font-size: 15px;
	}

	.answer-number {
		width: 28px;
		height: 28px;
		font-size: 14px;
	}

	.progress-text {
		font-size: 14px;
		padding: 15px 20px 10px;
	}

	.question-card {
		padding: 20px;
	}

	.controls {
		padding: 15px 20px 20px;
	}

	.traits-container {
		padding: 15px 20px 30px;
	}

	.trait-header {
		padding: 18px;
		flex-direction: column;
		align-items: flex-start;
	}

	.trait-score-display {
		padding-left: 0;
		margin-top: 12px;
		text-align: right;
		width: 100%;
	}

	.results-footer {
		padding: 18px;
		flex-direction: column;
	}

	.summary-stats {
		grid-template-columns: 1fr 1fr;
	}

	.stat-value {
		font-size: 28px;
	}

	.trait-name-large {
		font-size: 18px;
	}

	.improvement-badge {
		font-size: 18px;
		padding: 6px 15px;
	}

	.test-score-row {
		flex-wrap: wrap;
	}

	.test-label {
		min-width: 100%;
	}

	.speed-trap-modal {
		width: 95%;
		max-width: none;
	}

	.speed-trap-content {
		padding: 30px 20px;
	}

	.ai-report-section {
		margin: 20px 15px;
	}
}

@media (max-width: 400px) {
	.question-text {
		font-size: 17px;
	}

	.answer-btn {
		padding: 12px 15px;
		font-size: 14px;
		gap: 10px;
	}

	.answer-number {
		width: 26px;
		height: 26px;
		font-size: 13px;
	}

	.results-header h1,
	.comparison-header h1 {
		font-size: 20px;
	}

	.trait-name {
		font-size: 16px;
	}

	.score-number {
		font-size: 24px;
	}

	.facet-name {
		font-size: 14px;
	}
}

/* ============================================================================
   LANDING PAGE & SITE-WIDE STYLES (from site_header.php)
   ============================================================================ */

:root {
	--primary-blue: #0D47A1;
	--secondary-blue: #1565C0;
	--light-blue: #2196F3;
	--accent-color: #FF6B35;
	--text-dark: #1a1a1a;
	--text-medium: #4a4a4a;
	--text-light: #666666;
	--bg-light: #f8f9fa;
	--white: #ffffff;
	--border-light: #e0e0e0;
	--shadow: rgba(0, 0, 0, 0.1);
	--shadow-hover: rgba(0, 0, 0, 0.15);
}

body.site-page {
	font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--white);
	overflow-x: hidden;
}

/* Site Header (scrolls with page) */
.header.site-header {
	position: static;
	background: var(--white);
	box-shadow: none !important;
	border: none !important;
	border-bottom: none !important;
	z-index: 1000;
	transition: all 0.3s ease;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.logo-container {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.logo-img {
	height: 50px;
	width: auto;
}

.header-nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	padding: 8px 16px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	background: var(--bg-light);
	color: var(--primary-blue);
}

.nav-link.btn-primary {
	background: var(--primary-blue);
	color: var(--white);
}

.nav-link.btn-primary:hover {
	background: var(--secondary-blue);
	transform: translateY(-2px);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	margin-top: 70px;
	background: 
		linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(26, 77, 128, 0.4) 100%),
		url('/images/taking-test.png') center center / cover no-repeat;
	background-attachment: fixed;
	color: var(--white);
	padding: 80px 20px;
	text-align: center;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 0;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 24px;
	font-weight: 300;
	opacity: 0.95;
	margin-bottom: 40px;
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	opacity: 0.9;
}

/* Main Content */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

.section {
	margin-bottom: 80px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 40px;
	text-align: center;
}

/* Cards Grid */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.card {
	background: var(--white);
	border: 1px solid rgba(224, 224, 224, 0.3);
	border-radius: 12px;
	padding: 24px 20px;
	transition: all 0.3s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Clickable card link */
.card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	cursor: pointer;
}

.card-link:hover,
.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-blue);
}

.card-icon {
	width: 60px;
	height: 60px;
	background: transparent;
	border-radius: 12px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--text-medium);
	text-align: center;
	line-height: 1.3;
	padding: 8px;
}

.card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
	text-align: center;
}

.card p {
	font-size: 14px;
	color: var(--text-medium);
	line-height: 1.6;
	text-align: center;
}

/* CTA Buttons */
.btn.site-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	text-align: center;
}

.btn-primary.site-btn-primary {
	background: var(--accent-color);
	color: var(--white);
}

.btn-primary.site-btn-primary:hover {
	background: #e55a28;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary.site-btn-secondary {
	background: var(--primary-blue);
	color: var(--white);
}

.btn-secondary.site-btn-secondary:hover {
	background: var(--secondary-blue);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary-blue);
	color: var(--primary-blue);
}

.btn-outline:hover {
	background: var(--primary-blue);
	color: var(--white);
}

.cta-container {
	text-align: center;
	margin: 40px 0;
}

/* Free Test Section */
.free-test {
	background: var(--bg-light);
	padding: 60px 40px;
	border-radius: 16px;
	text-align: center;
}

.free-test h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 15px;
}

.free-test .article-link {
	display: inline-block;
	font-size: 18px;
	color: var(--primary-blue);
	text-decoration: none;
	margin-bottom: 20px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.free-test .article-link:hover {
	color: var(--secondary-blue);
	text-decoration: underline;
}

.free-test p {
	font-size: 18px;
	color: var(--text-medium);
	margin-bottom: 30px;
}

/* IRPA Section */
.irpa-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 60px 40px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.irpa-content {
	flex: 1;
}

.irpa-logo {
	width: 200px;
	height: auto;
}

.irpa-section h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 16px;
}

.irpa-section p {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.8;
	margin-bottom: 24px;
}

/* Site Footer */
.footer.site-footer {
	background: var(--text-dark);
	color: var(--white);
	padding: 40px 20px 20px;
	margin-top: 80px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-link {
	color: var(--white);
	text-decoration: none;
	font-size: 14px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.footer-link:hover {
	opacity: 1;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	opacity: 0.7;
}

/* Cookie Consent Banner */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ebeff3;
	color: #3f3f3f;
	padding: 20px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	display: none;
	animation: slideUp 0.4s ease;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.cookie-content {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cookie-text {
	flex: 1;
	font-size: 14px;
	line-height: 1.5;
}

.cookie-actions {
	display: flex;
	gap: 10px;
}

.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-btn.accept {
	background: var(--primary-blue);
	color: var(--white);
}

.cookie-btn.accept:hover {
	background: var(--secondary-blue);
}

.cookie-btn.decline {
	background: #374151;
	color: var(--white);
}

.cookie-btn.decline:hover {
	background: #1f2937;
}

/* ============================================================================
   PAGE-SPECIFIC STYLES
   ============================================================================ */

/* Contact Page */
.contact-hero {
	margin-top: 70px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: var(--white);
	padding: 60px 20px;
	text-align: center;
}

.contact-hero h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 16px;
}

.contact-hero p {
	font-size: 18px;
	opacity: 0.95;
	max-width: 600px;
	margin: 0 auto;
}

.contact-content {
	max-width: 800px;
	margin: 60px auto;
	padding: 0 20px;
}

.contact-form-container {
	background: var(--white);
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 2px 8px var(--shadow);
}

/* Articles Page */
.articles-hero {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: white;
	padding: 60px 20px;
	text-align: center;
	margin-top: 70px;
}

.articles-hero h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 16px;
}

.articles-hero p {
	font-size: 18px;
	opacity: 0.95;
}

.articles-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.article-card {
	background: white;
	border: 1px solid var(--border-light);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px var(--shadow);
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
	color: inherit;
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px var(--shadow-hover);
	border-color: #0366d6;
}

.article-card-header {
	padding: 30px 30px 20px;
	background: #f8f9fa;
	border-bottom: 2px solid #e1e4e8;
}

.article-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #0D47A1;
	line-height: 1.4;
	margin: 0;
}

.article-card-body {
	padding: 25px 30px 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.article-card-excerpt {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.article-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	border-top: 1px solid #e1e4e8;
}

.article-card-meta {
	font-size: 14px;
	color: #666;
	background: #f0f0f0;
	padding: 4px 12px;
	border-radius: 12px;
	font-weight: 500;
}

.article-card-link {
	font-size: 15px;
	color: #0366d6;
	font-weight: 600;
	transition: color 0.2s;
}

.article-card:hover .article-card-link {
	color: #0256c7;
}

/* No articles message */
.no-articles {
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
}

/* Prereg Page */
.prereg-hero {
	margin-top: 70px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: var(--white);
	padding: 60px 20px;
	text-align: center;
}

.prereg-hero h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 16px;
}

.prereg-hero p {
	font-size: 18px;
	opacity: 0.95;
	max-width: 600px;
	margin: 0 auto;
}

.prereg-content {
	max-width: 800px;
	margin: 60px auto;
	padding: 0 20px;
}

.form-container {
	background: var(--white);
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 2px 8px var(--shadow);
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

/* ============================================================================
   RESPONSIVE DESIGN FOR LANDING PAGES
   ============================================================================ */

@media (max-width: 768px) {
	.logo-img {
		height: 40px;
	}

	.header-content {
		height: 60px;
	}

	.header-nav {
		position: fixed;
		top: 60px;
		right: -100%;
		width: 70%;
		height: calc(100vh - 60px);
		background: var(--white);
		flex-direction: column;
		padding: 40px 20px;
		box-shadow: -2px 0 8px var(--shadow);
		z-index: 2000;
		transition: right 0.3s ease;
		gap: 0;
	}

	.header-nav.active {
		right: 0;
	}

	.nav-link {
		width: 100%;
		padding: 15px 20px;
		text-align: right;
		border-bottom: 1px solid var(--border-light);
	}

	.hamburger {
		display: flex;
		position: relative;
		z-index: 2001;
	}

	.hero {
		margin-top: 60px;
		padding: 60px 20px;
		background-attachment: scroll;
	}

	.hero h1 {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-description {
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
	}

	.cards-grid {
		grid-template-columns: 1fr;
	}

	.irpa-section {
		flex-direction: column;
		text-align: center;
	}

	.irpa-logo {
		width: 150px;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-actions {
		width: 100%;
		flex-direction: column;
	}

	.cookie-btn {
		width: 100%;
	}

	.contact-hero h1,
	.articles-hero h1,
	.prereg-hero h1 {
		font-size: 32px;
	}

	.articles-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.hero h1 {
		font-size: 40px;
	}

	.section-title {
		font-size: 32px;
	}
}

/* ============================================================================
   ARTICLE PAGES
   ============================================================================ */

/* Breadcrumbs navigation */
.breadcrumbs {
	max-width: 1200px;
	margin: 20px auto;
	padding: 12px 20px;
	font-size: 14px;
	color: #666;
	background: white;
	border-radius: 8px;
}

.breadcrumbs a {
	color: #0366d6;
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumbs a:hover {
	color: #0256c7;
	text-decoration: underline;
}

.breadcrumbs span {
	margin: 0 8px;
	color: #999;
}

/* Article container */
.article-container {
	max-width: 900px;
	margin: 30px auto;
	padding: 0 20px 60px;
}

/* Article content styling */
.article-content {
	background: white;
	padding: 50px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	line-height: 1.8;
}

.article-content h1 {
	font-size: 36px !important;
	color: #0D47A1 !important;
	margin-bottom: 30px !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	display: block !important;
	visibility: visible !important;
}

.article-content h2 {
	font-size: 28px;
	color: #0D47A1;
	margin-top: 40px;
	margin-bottom: 20px;
	font-weight: 600;
	border-bottom: 2px solid #e1e4e8;
	padding-bottom: 10px;
}

.article-content h3 {
	font-size: 22px;
	color: #24292e;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
}

.article-content p {
	font-size: 17px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.8;
}

.article-content ul,
.article-content ol {
	margin: 20px 0;
	padding-right: 30px;
}

.article-content li {
	font-size: 17px;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.7;
}

.article-content strong {
	color: #0D47A1;
	font-weight: 600;
}

.article-content a {
	color: #0366d6;
	text-decoration: underline;
}

.article-content a:hover {
	color: #0256c7;
}

.article-content section {
	margin: 40px 0;
}

/* Back to articles link */
.back-to-articles {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid #e1e4e8;
	text-align: center;
}

.back-to-articles a {
	color: #0366d6;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.2s;
}

.back-to-articles a:hover {
	color: #0256c7;
	text-decoration: underline;
}

/* Article pages responsive */
@media (max-width: 768px) {
	.article-content {
		padding: 30px 20px;
	}
	
	.article-content h1 {
		font-size: 28px !important;
	}
	
	.article-content h2 {
		font-size: 24px;
	}
	
	.article-content h3 {
		font-size: 20px;
	}
	
	.breadcrumbs {
		font-size: 12px;
		padding: 10px 15px;
	}
}

/* M3 Landing Page - CTA Section */
.cta-section {
	text-align: center;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

/* Article page spacing and CTA */
.article-page .cta-container {
	margin: 30px 0 15px;
	text-align: center;
}

.logout-container {
	display: none;
	margin-top: 10px;
}

.logout-container.show {
	display: block;
}

.logout-link {
	display: inline-block;
	color: #666;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.3s;
	cursor: pointer;
	padding: 8px 16px;
}

.logout-link:hover {
	color: #d32f2f;
	text-decoration: underline;
}

.info-link-container {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e1e4e8;
	width: 100%;
	max-width: 500px;
}

.info-link {
	display: inline-block;
	color: #0366d6;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s;
	padding: 12px 24px;
	border-radius: 8px;
	background: #f5f7fa;
}

.info-link:hover {
	color: #0256c7;
	background: #e1e4e8;
	text-decoration: none;
}

/* M3 Article/Guide Pages */
.container {
	max-width: 900px;
	margin: 40px auto;
	padding: 50px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	line-height: 1.8;
}

.container h1 {
	font-size: 32px;
	color: #0D47A1;
	margin-top: 40px;
	margin-bottom: 25px;
	font-weight: 700;
	line-height: 1.3;
}

.container h1:first-of-type {
	margin-top: 0;
}

.container h2 {
	font-size: 26px;
	color: #0D47A1;
	margin-top: 35px;
	margin-bottom: 20px;
	font-weight: 600;
	border-bottom: 2px solid #e1e4e8;
	padding-bottom: 10px;
}

.container h3 {
	font-size: 22px;
	color: #24292e;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
}

.container p {
	font-size: 17px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.8;
}

.container ul,
.container ol {
	margin: 20px 0;
	padding-right: 30px;
}

.container li {
	font-size: 17px;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.7;
}

.container strong {
	color: #0D47A1;
	font-weight: 600;
}

.container a {
	color: #0366d6;
	text-decoration: underline;
}

.container a:hover {
	color: #0256c7;
}

/* Highlight boxes for important info */
.highlight-box {
	background: #f0f7ff;
	border-left: 4px solid #0366d6;
	padding: 20px 25px;
	margin: 25px 0;
	border-radius: 6px;
}

.highlight-box strong {
	display: block;
	font-size: 18px;
	color: #0D47A1;
	margin-bottom: 10px;
}

/* Responsive for M3 article pages */
@media (max-width: 768px) {
	.container {
		padding: 30px 20px;
		margin: 20px auto;
	}
	
	.container h1 {
		font-size: 26px;
	}
	
	.container h2 {
		font-size: 22px;
	}
	
	.container h3 {
		font-size: 20px;
	}
	
	.container p,
	.container li {
		font-size: 16px;
	}
}

/* Prereg Page - Missing Elements */
.required {
	color: #dc3545;
	font-weight: bold;
	margin-left: 4px;
}

.privacy-consent {
	margin: 30px 0;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e1e4e8;
}

.privacy-consent .checkbox-group {
	margin-bottom: 0;
}

.privacy-consent label {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.privacy-consent a {
	color: #0366d6;
	text-decoration: underline;
}

.privacy-consent a:hover {
	color: #0256c7;
}

.conditional-field {
	display: none;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e1e4e8;
}

.conditional-field.show {
	display: block;
}

.conditional-field label {
	font-size: 15px;
	font-weight: 600;
	color: #24292e;
	margin-bottom: 8px;
	display: block;
}

.conditional-field input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5da;
	border-radius: 6px;
	font-size: 15px;
}

.prereg-info {
	margin-top: 40px;
	padding: 30px;
	background: #f0f7ff;
	border-radius: 12px;
	border-left: 4px solid #0366d6;
}

.prereg-info h2 {
	font-size: 24px;
	color: #0D47A1;
	margin-bottom: 15px;
	font-weight: 600;
}

.prereg-info p {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

/* Message alerts */
.message {
	padding: 15px 20px;
	border-radius: 8px;
	margin: 20px 0;
	font-size: 16px;
	font-weight: 500;
}

.message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.form-container {
		padding: 25px 20px;
	}
	
	.privacy-consent {
		padding: 15px;
	}
	
	.privacy-consent label {
		font-size: 14px;
	}
	
	.prereg-info {
		padding: 20px;
	}
}

/* ============================================================================
   DESKTOP OPTIMIZATIONS (PC/Large Screens)
   ============================================================================ */

/* Tablet and above (768px+) */
@media (min-width: 769px) {
	/* Wider containers for better space utilization */
	.main-container,
	.test-container {
		max-width: 1000px;
		padding: 40px;
	}
	
	.results-container,
	.comparison-container {
		max-width: 1100px;
		padding: 40px;
	}
	
	.container {
		max-width: 1000px;
		padding: 50px 60px;
	}
	
	/* Form containers with optimal width */
	.form-container {
		max-width: 600px;
		margin: 0 auto;
		padding: 50px;
	}
	
	.contact-form-container {
		max-width: 700px;
	}
	
	/* Better grid layouts for cards */
	.cards-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
	
	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	/* Stats in rows */
	.stats {
		display: flex;
		gap: 20px;
		flex-wrap: nowrap;
	}
	
	.stat-card {
		flex: 1;
	}
	
	.stats-bar {
		display: flex;
		gap: 30px;
	}
	
	/* Better typography */
	body {
		font-size: 17px;
		line-height: 1.7;
	}
	
	h1 {
		font-size: 42px;
	}
	
	h2 {
		font-size: 32px;
	}
	
	.hero h1 {
		font-size: 56px;
	}
	
	.hero-subtitle {
		font-size: 24px;
	}
	
	.hero-description {
		font-size: 18px;
		max-width: 800px;
		margin: 0 auto;
	}
	
	/* Buttons with better sizing */
	.btn-start,
	.btn-primary,
	.btn-secondary {
		padding: 16px 40px;
		font-size: 18px;
		min-width: 200px;
	}
	
	/* Form inputs with better sizing */
	.form-group input,
	.form-group textarea,
	.form-group select {
		font-size: 17px;
		padding: 14px 18px;
	}
	
	/* Admin tables with more space */
	.users-table-container table {
		font-size: 15px;
	}
	
	.users-table-container td,
	.users-table-container th {
		padding: 16px 20px;
	}
	
	/* Better spacing for sections */
	.section {
		padding: 60px 0;
	}
	
	.hero {
		padding: 100px 20px;
	}
	
	/* Optimal line length for readability */
	.article-content p,
	.article-content li {
		max-width: 70ch;
	}
	
	.container p {
		max-width: 75ch;
	}
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
	/* Even wider for large displays */
	.main-container,
	.test-container {
		max-width: 1200px;
		padding: 50px;
	}
	
	.results-container,
	.comparison-container {
		max-width: 1300px;
		padding: 50px 60px;
	}
	
	.container {
		max-width: 1100px;
		padding: 60px 80px;
	}
	
	/* 3-column article grid */
	.articles-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}
	
	/* Larger hero */
	.hero h1 {
		font-size: 64px;
	}
	
	.hero-subtitle {
		font-size: 28px;
	}
	
	.hero {
		padding: 120px 20px;
	}
	
	/* Better form layout */
	.form-container {
		max-width: 650px;
		padding: 60px;
	}
	
	/* Multi-column forms for wide screens */
	.prereg-content .form-container {
		max-width: 800px;
	}
	
	/* Stats in single row */
	.stats {
		justify-content: center;
		max-width: 1200px;
		margin: 0 auto;
	}
	
	/* Admin grids */
	.grid-2 {
		gap: 40px;
	}
	
	.messages-section {
		padding: 30px;
	}
}

/* Extra Large Desktop (1600px+) */
@media (min-width: 1600px) {
	/* Maximum comfortable reading width */
	.container {
		max-width: 1200px;
		padding: 80px 100px;
	}
	
	.main-container,
	.test-container,
	.results-container,
	.comparison-container {
		max-width: 1400px;
	}
	
	/* Body text optimization */
	body {
		font-size: 18px;
		line-height: 1.8;
	}
	
	/* Larger headings for impact */
	h1 {
		font-size: 48px;
	}
	
	h2 {
		font-size: 36px;
	}
	
	.hero h1 {
		font-size: 72px;
	}
	
	/* More generous spacing */
	.section {
		padding: 80px 0;
	}
	
	.hero {
		padding: 140px 40px;
	}
}

/* ============================================================================
   REGISTRATION PAGE (register.php)
   ============================================================================ */

/* Hide OTP section by default */
#otp-section {
	display: none;
}

/* OTP actions layout (verify button + resend link) */
#otp-section .otp-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

#otp-section .otp-resend-link {
	display: inline-block;
	color: #0366d6;
	text-decoration: none;
	font-weight: 600;
}

#otp-section .otp-resend-link:hover {
	color: #0256c7;
	text-decoration: underline;
}

/* Registration sections */
#register-section,
#otp-section {
	margin: 30px 0;
}

/* Consent section styling */
.consent-section {
	margin: 30px 0;
	padding: 25px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e1e4e8;
}

.consent-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.consent-checkbox-group input[type="checkbox"] {
	margin-top: 4px;
	min-width: 20px;
	min-height: 20px;
}

.consent-checkbox-group label {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	cursor: pointer;
}

.consent-checkbox-group a {
	color: #0366d6;
	text-decoration: underline;
}

.consent-checkbox-group a:hover {
	color: #0256c7;
}

/* Consent error state */
.consent-checkbox-group.error {
	border: 2px solid #dc3545;
	padding: 15px;
	border-radius: 6px;
	background: #fff5f5;
}

.consent-error-message {
	display: none;
	margin-top: 15px;
	padding: 12px 16px;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
}

.consent-error-message.show {
	display: block;
}

/* OTP Input styling */
.otp-input {
	font-size: 28px !important;
	letter-spacing: 8px;
	text-align: center;
	font-weight: 600;
	padding: 20px !important;
}

/* Optional text */
.optional {
	font-weight: normal;
	color: #6a737d;
	font-size: 14px;
}

/* Loading spinner for button */
.loading {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Back link in OTP section */
#otp-section .back-link {
	margin-top: 20px;
	text-align: center;
}

#otp-section .back-link a {
	color: #0366d6;
	text-decoration: none;
	font-weight: 500;
}

#otp-section .back-link a:hover {
	text-decoration: underline;
}

/* Message container */
#message-container {
	margin-bottom: 20px;
}

/* Home link on register page - center & push down */
.home-back-link {
	margin-top: 70px;
	text-align: center;
}

.home-back-link a {
	display: inline-block;
}

#message-container .message {
	padding: 15px 20px;
	border-radius: 8px;
	margin: 15px 0;
	font-size: 16px;
	font-weight: 500;
	animation: slideIn 0.3s ease-out;
}

#message-container .message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

#message-container .message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

#message-container .message.info {
	background: #d1ecf1;
	color: #0c5460;
	border: 1px solid #bee5eb;
}

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

/* Responsive adjustments for register page */
@media (max-width: 768px) {
	.consent-section {
		padding: 15px;
	}
	
	.consent-checkbox-group label {
		font-size: 14px;
	}
	
	.otp-input {
		font-size: 24px !important;
		letter-spacing: 6px;
		padding: 16px !important;
	}
}

/* ============================================================================
   ARTICLES PAGE - DESKTOP SPACING FIX
   ============================================================================ */

/* More space above hero on desktop/tablet */
@media (min-width: 769px) {
	.articles-hero {
		margin-top: 100px;
		padding: 80px 40px;
	}
	
	.articles-hero h1 {
		font-size: 48px;
	}
	
	.articles-hero p {
		font-size: 20px;
	}
}

/* Even more space on large desktop */
@media (min-width: 1200px) {
	.articles-hero {
		margin-top: 120px;
		padding: 100px 60px;
	}
	
	.articles-hero h1 {
		font-size: 56px;
	}
	
	.articles-hero p {
		font-size: 22px;
	}
}

/* ============================================================================
   CONSENT TEXT CONTAINER (register.php)
   ============================================================================ */

.consent-text-container {
	max-height: 150px;
	overflow-y: auto;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px;
	background: #f9f9f9;
	margin-bottom: 15px;
}

.consent-text-container h2 {
	font-size: 20px;
	color: #003366;
	margin-bottom: 10px;
}

.consent-text-container h3 {
	font-size: 16px;
	color: #1a4d80;
	margin-top: 15px;
	margin-bottom: 8px;
}

.consent-text-container p,
.consent-text-container ul {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 10px;
}

.consent-text-container ul {
	padding-right: 20px;
}

.consent-text-container li {
	margin-bottom: 5px;
}

.consent-text-container strong {
	font-weight: 700;
}

.btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

