.safety-page {
	padding: 40px 20px;
	max-width: 1000px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
}

.safety-tab-content img {
	max-width: 100%;
	height: auto;
	border-radius: 36px;
	display: block;
	margin: 20px auto;
}

.safety-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
}

.tab-button {
	padding: 10px 20px;
	border: 1px solid #5865f2;
	background-color: transparent;
	color: #5865f2;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 500;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
	background-color: #5865f2;
	color: white;
}

.safety-tab-content {
	display: none;
	animation: fadeIn 0.3s ease-in-out;
}

.safety-tab-content.active {
	display: block;
}

.safety-tab-content h2 {
	color: #333;
	margin-bottom: 20px;
}

.safety-tab-content h3 {
	margin-top: 25px;
	margin-bottom: 10px;
	font-size: 1.2em;
	color: #5865f2;
}

.safety-tab-content p,
.safety-tab-content li {
	line-height: 1.6;
	color: #444;
}

.safety-tab-content ul {
	padding-left: 20px;
	margin-bottom: 20px;
	list-style: none;
}

.safety-tab-content li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.safety-tab-content li::before {
	content: '•';
	position: absolute;
	left: -7px;
	top: 0.1em;
	color: #222;
	z-index: 1;
	font-size: 1.1em;
}

.safety-tab-content li::after {
	content: '•';
	position: absolute;
	left: -4px;
	top: 0.1em;
	color: #5865f2;
	z-index: 2;
	font-size: 1.1em;
}

.fake-link {
	color: #5865f2;
	text-decoration: underline;
	cursor: pointer;
}

.pdf-list {
	padding-left: 20px;
	list-style: none;
}

.pdf-list li {
	margin-bottom: 12px;
}

.pdf-list a {
	color: #5865f2;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.2s ease;
}

.pdf-list a:hover {
	color: #005599;
}

.safety-tab-content a {
	display: inline-block;
	color: #5865f2;
	text-decoration: none;
	border-bottom: 1px dashed #5865f2;
	transition: all 0.3s ease;
	padding: 2px 0;
}

.safety-tab-content a:hover {
	color: #5865f2;
	border-bottom: 1px solid #5865f2;
	text-decoration: none;
	background-color: rgba(0, 119, 204, 0.1);
	border-radius: 4px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body.dark-theme .safety-tab-content h2,
body.dark-theme .safety-tab-content h3 {
	color: #aad;
}

body.dark-theme .safety-tab-content p,
body.dark-theme .safety-tab-content li {
	color: #ccc;
}

body.dark-theme .tab-button {
	border-color: #8da1ff;
	color: #8da1ff;
	background-color: transparent;
}

body.dark-theme .tab-button.active,
body.dark-theme .tab-button:hover {
	background-color: #8da1ff;
	color: #111;
}

body.dark-theme .safety-tab-content li::before {
	color: #111;
}

body.dark-theme .safety-tab-content li::after {
	color: #8da1ff;
}

body.dark-theme .safety-tab-content a {
	color: #8da1ff;
	border-bottom-color: #8da1ff;
}

body.dark-theme .safety-tab-content a:hover {
	color: #b5c7ff;
	border-bottom-color: #b5c7ff;
	background-color: rgba(141, 161, 255, 0.1);
}

body.dark-theme .pdf-list a {
	color: #8da1ff;
}

body.dark-theme .pdf-list a:hover {
	color: #b5c7ff;
}
