/* ===== Reset & Base Styles ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: keep-all;
	overflow-wrap: break-word;
}

:root {
	--primary-color: #577bf7;
	--secondary-color: #6e8ff9;
	--primary-dark: #3d5fd9;
	--accent-red: #ff5757;
	--text-primary: #1a1a1a;
	--text-secondary: #666;
	--text-light: #999;
	--bg-white: #ffffff;
	--bg-light: #f8f9fa;
	--bg-gray: #f5f5f5;
	--bg-dark: #2d2d2d;
	--border-color: #e0e0e0;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--transition: all 0.3s ease;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
		Arial, sans-serif;
	color: var(--text-primary);
	line-height: 1.6;
	background: var(--bg-white);
	scroll-behavior: smooth;
	padding-top: 126px; /* Offset for fixed header */
}

/* Scroll margin for sticky header offset */
section[id],
div[id] {
	scroll-margin-top: 140px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.highlight {
	color: var(--primary-color);
}

/* ===== Header ===== */
.header {
	background: var(--bg-white);
	border-bottom: 1px solid var(--border-color);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	max-width: 180px !important;
	height: 45px !important;
	width: auto;
	display: block;
}

.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

/* Navigation Wrapper */
.nav-wrapper {
	background: var(--bg-white);
	border-bottom: 1px solid var(--border-color);
	position: fixed;
	top: 87px; /* Adjusted for header height */
	left: 0;
	right: 0;
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: center;
	gap: 60px;
	padding: 20px 0;
}

.nav-link {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-secondary);
	transition: var(--transition);
	position: relative;
	padding-bottom: 8px;
	display: inline-block;
}

.nav-link:hover {
	color: var(--primary-color);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-link:hover::after {
	width: 100%;
}

/* Mega Dropdown */
.mega-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--bg-white);
	border-top: 1px solid var(--border-color);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 999;
}

.mega-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-content {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
	padding: 40px 0;
}

.dropdown-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dropdown-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary-color);
}

.dropdown-link {
	font-size: 14px;
	color: var(--text-secondary);
	transition: var(--transition);
	padding: 8px 0;
	position: relative;
	padding-left: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dropdown-link:hover {
	color: var(--primary-color);
	padding-left: 20px;
}

.dropdown-link::before {
	content: "→";
	position: absolute;
	left: 0;
	opacity: 0;
	transition: var(--transition);
	font-size: 16px;
}

.dropdown-link:hover::before {
	opacity: 1;
}

.header-cta-btn {
	padding: 10px 20px;
	background: var(--primary-color);
	color: #ffffff !important;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin-left: auto;
	margin-right: 20px;
	border: 2px solid var(--primary-color);
}

.header-cta-btn:hover {
	background: #ffffff;
	color: var(--primary-color) !important;
	border-color: var(--primary-color);
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}

.mobile-menu-btn span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero-section {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	background-size: cover;
	background-position: center;
	animation: fadeIn 0.8s ease;
}

.hero-slide.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: none;
}

.hero-content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
	z-index: 1;
}

.hero-content .container {
	margin: 0 auto;
	text-align: left;
}

.hero-title {
	font-size: 50px;
	font-weight: 700;
	color: var(--bg-white);
	line-height: 1.3;
	text-align: left;
	max-width: 1000px;
	text-shadow:
		2px 2px 8px rgba(0, 0, 0, 0.7),
		0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-video-slide {
	position: relative;
}

.hero-controls {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 10;
}

.hero-control {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--text-primary);
	transition: var(--transition);
}

.hero-control:hover {
	background: var(--bg-white);
	transform: scale(1.1);
}

.hero-pagination {
	display: flex;
	gap: 12px;
}

.pagination-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: var(--transition);
}

.pagination-dot.active,
.pagination-dot:hover {
	background: var(--bg-white);
	transform: scale(1.2);
}

/* ===== Features Section ===== */
.features-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.feature-card {
	text-align: center;
	padding: 24px 16px;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-color);
}

.feature-icon {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-height: 280px;
}

.feature-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.feature-subtitle {
	font-size: 14px;
	color: var(--text-secondary);
}

/* ===== Stats Section ===== */
.stats-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.stats-header {
	margin-bottom: 32px;
}

.stats-date {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.stats-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
}

.stats-total {
	margin-bottom: 40px;
}

.stats-number {
	font-size: 48px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.stats-label {
	font-size: 16px;
	color: var(--text-secondary);
}

.stats-bars {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.stat-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	background: var(--bg-white);
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
}

.stat-bar.highlighted {
	background: linear-gradient(135deg, #ffe5e5 0%, #ffd5d5 100%);
}

.stat-info {
	display: flex;
	align-items: center;
	gap: 16px;
}

.stat-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	flex-shrink: 0;
}

.stat-icon.blue {
	background: #4a9eff;
}

.stat-icon.light-blue {
	background: #7cb8ff;
}

.stat-icon.red {
	background: var(--accent-red);
}

.stat-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.stat-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
}

.stat-detail {
	font-size: 13px;
	color: var(--text-secondary);
}

.stat-value {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
}

/* ===== Content Sections ===== */
.content-sections {
	padding: 80px 0;
	background: var(--bg-white);
}

.content-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.content-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.content-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-color);
}

.content-heading {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	padding: 24px;
	border-bottom: 1px solid var(--border-color);
}

.content-image {
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-light);
}

.content-image img {
	max-height: 100%;
	object-fit: contain;
}

/* ===== Notice Section ===== */
.notice-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.notice-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.notice-card {
	display: flex;
	gap: 20px;
	padding: 32px;
	background: var(--bg-white);
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
}

.notice-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--bg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.notice-icon.red {
	background: var(--accent-red);
}

.notice-content {
	flex: 1;
}

.notice-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.notice-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.notice-list li {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.notice-question {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.notice-answer {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 16px;
}

.notice-link {
	font-size: 14px;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.faq-accordion {
	margin-top: 20px;
}

.faq-item {
	border-bottom: 1px solid var(--border-color);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-primary);
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--primary-color);
}

.faq-question span {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
	color: var(--text-secondary);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: var(--primary-color);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-bottom: 16px;
}

.faq-answer p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
	padding: 100px 0;
	background: var(--bg-dark);
	color: var(--bg-white);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: start;
}

.contact-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
}

.contact-phone {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 16px;
}

.contact-hours {
	font-size: 15px;
	opacity: 0.8;
	line-height: 1.8;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-input {
	padding: 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: var(--bg-white);
	font-size: 15px;
}

.form-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-input.full {
	width: 100%;
}

.form-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.form-checkbox {
	width: 18px;
	height: 18px;
}

.required {
	color: var(--accent-red);
	font-weight: 600;
}

.form-terms {
	font-size: 13px;
	opacity: 0.8;
	line-height: 1.6;
}

.checkbox-inline {
	margin-left: 12px;
}

.form-submit {
	padding: 16px 48px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition);
	align-self: flex-start;
}

.form-submit:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* ===== Footer ===== */
.footer {
	background: var(--bg-dark);
	color: var(--bg-white);
	padding: 60px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
	display: grid;
	grid-template-columns: 3fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.footer .footer-logo,
.page-edu .footer .footer-logo {
	height: 50px !important;
	width: auto;
}

.footer-address {
	font-size: 14px;
	opacity: 0.7;
	line-height: 1.8;
}

.footer-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.footer-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 14px;
	opacity: 0.6;
}

.footer-legal {
	display: flex;
	gap: 24px;
}

.footer-legal a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.footer-legal a:hover {
	opacity: 1;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 42px;
	}

	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.content-row {
		grid-template-columns: 1fr;
	}

	.notice-row {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.nav {
		gap: 40px;
	}

	.dropdown-content {
		gap: 30px;
		padding: 30px 0;
	}

	.dropdown-title {
		font-size: 15px;
	}

	.dropdown-link {
		font-size: 13px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.header-cta-btn {
		padding: 8px 16px;
		font-size: 12px;
		margin-right: 12px;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.nav-wrapper {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
	}

	.nav-wrapper.active {
		display: block;
	}

	.nav {
		display: none;
		flex-direction: column;
		padding: 0;
		gap: 0;
		background: var(--bg-white);
		height: 100%;
		width: 80%;
		max-width: 300px;
		overflow-y: auto;
		position: fixed;
		right: 0;
		top: 0;
		box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
		transform: translateX(100%);
		transition: transform 0.3s ease;
	}

	.nav.active {
		display: flex;
		transform: translateX(0);
	}

	.nav-link {
		padding: 16px 20px;
		display: block;
		border-bottom: 1px solid var(--border-color);
	}

	.nav-link::after {
		display: none;
	}

	.mega-dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		display: none;
	}

	.nav-wrapper:hover .mega-dropdown {
		display: none;
	}

	.nav.active ~ .mega-dropdown {
		display: block;
	}

	.dropdown-content {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}

	.dropdown-column {
		gap: 8px;
	}

	.dropdown-title {
		font-size: 15px;
		margin-bottom: 4px;
		padding-bottom: 8px;
	}

	.dropdown-link {
		padding: 8px 0 8px 12px;
		font-size: 13px;
	}

	.dropdown-link:hover {
		padding-left: 16px;
	}

	.dropdown-link::before {
		opacity: 1;
	}

	.hero-section {
		height: 500px;
	}

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

	.hero-controls {
		bottom: 20px;
		gap: 12px;
	}

	.hero-control {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-number {
		font-size: 36px;
	}

	.stat-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.stat-value {
		align-self: flex-end;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-phone {
		font-size: 36px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.hero-title {
		font-size: 24px;
	}

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

	.stats-number {
		font-size: 28px;
	}

	.contact-phone {
		font-size: 28px;
	}
}

/* ===== Required Documents Section ===== */
.required-docs-section {
	margin-top: 80px;
	padding: 60px 40px;
	background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
	border-radius: 16px;
}

.docs-header {
	text-align: center;
	margin-bottom: 50px;
}

.docs-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

.docs-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 12px;
	line-height: 1.6;
}

.highlight-text {
	color: var(--primary-color);
	font-weight: 600;
}

.docs-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.docs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}

.doc-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.doc-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), #7b9eff);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.doc-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(87, 123, 247, 0.15);
	border-color: var(--primary-color);
}

.doc-card:hover::before {
	transform: scaleX(1);
}

.doc-number {
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	background: linear-gradient(135deg, var(--primary-color), #7b9eff);
	color: var(--bg-white);
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.doc-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
	line-height: 1.4;
}

.doc-subtitle {
	font-size: 14px;
	color: var(--primary-color);
	margin-bottom: 16px;
	font-weight: 500;
}

.doc-description {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Responsive for Required Documents */
@media (max-width: 1200px) {
	.docs-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.required-docs-section {
		margin-top: 40px;
		padding: 40px 20px;
	}

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

	.docs-subtitle {
		font-size: 16px;
	}

	.docs-description {
		font-size: 14px;
	}

	.docs-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.doc-card {
		padding: 24px 16px;
	}

	.doc-number {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 16px;
		margin-bottom: 16px;
	}

	.doc-title {
		font-size: 16px;
	}

	.doc-subtitle {
		font-size: 13px;
	}

	.doc-description {
		font-size: 13px;
	}
}

/* ===== CTA Section (7dehaccim.html) ===== */
.page-safety-system .cta-section {
	position: relative;
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/sevencore2.jpg") center/cover no-repeat;
	padding: 80px 20px;
	margin-top: 0;
}

.page-safety-system .cta-overlay {
	display: none;
}

.page-safety-system .cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--bg-white);
	max-width: 1000px;
	padding: 0 24px;
}

.page-safety-system .cta-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--bg-white);
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
	.page-safety-system .cta-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.page-safety-system .cta-section {
		min-height: 250px;
		padding: 60px 20px;
	}

	.page-safety-system .cta-title {
		font-size: 28px;
		line-height: 1.6;
	}
}

@media (max-width: 480px) {
	.page-safety-system .cta-section {
		min-height: 200px;
		padding: 40px 16px;
	}

	.page-safety-system .cta-title {
		font-size: 22px;
		line-height: 1.6;
	}
}

/* ===== Page Specific Styles ===== */

/* ===== Page: Company Overview (source: 2.css) ===== */
/* ===== Reset & Base Styles ===== */
.page-company * {
	box-sizing: border-box;
}

html.page-company {
	scroll-behavior: smooth;
	font-size: 16px;
}

body.page-company {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
		Arial, sans-serif;
	line-height: 1.6;
	color: #1d1d1d;
	background-color: #f4f4f4;
	overflow-x: hidden;
}

.page-company img {
	max-width: 100%;
	height: auto;
	display: block;
}

.page-company a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s ease;
}

.page-company a:hover {
	opacity: 0.8;
}

.page-company .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Hero Section ===== */
.page-company .hero-section {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/Introduction1.jpg") center/cover no-repeat;
	overflow: hidden;
	margin-top: 25px;
}

.page-company .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-company .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #ffffff;
	max-width: 1234px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.page-company .hero-title {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 48px !important;
	display: block;
}

.page-company .hero-description {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	opacity: 0.95;
	display: block;
	margin-top: 24px;
}

/* ===== Main Content Section ===== */
.page-company .main-content {
	background-color: #f5f5f5;
	padding: 80px 0;
}

.page-company .content-header {
	text-align: center;
	margin-bottom: 60px;
}

.page-company .section-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.39;
	letter-spacing: -0.36px;
	color: #1d1d1d;
	margin-bottom: 24px;
}

.page-company .section-subtitle {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.8;
	color: #1d1d1d;
	opacity: 0.9;
}

.page-company .feature-image {
	width: 100%;
	max-width: 1200px;
	height: 550px;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.page-company .feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
}

/* ===== Services Carousel Section ===== */
.page-company .services-section {
	background-color: #f5f5f5;
	padding: 80px 0 100px;
}

.page-company .carousel-wrapper {
	margin-top: 60px;
}

.page-company .carousel {
	overflow: hidden;
	position: relative;
	margin-bottom: 40px;
}

.page-company .carousel-track {
	display: flex;
	gap: 16px;
	transition: transform 0.5s ease-in-out;
}

.page-company .carousel-item {
	flex: 0 0 calc((100% - 48px) / 4);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #dddddd;
	background: #fff;
	position: relative;
}

.page-company .carousel-item img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.page-company .carousel-item:hover img {
	transform: scale(1.05);
}

/* Carousel Navigation */
.page-company .carousel-nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
}

.page-company .nav-arrow {
	width: 20px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3f3f3f;
	transition: color 0.3s ease;
}

.page-company .nav-arrow:hover {
	color: #000;
}

.page-company .carousel-dots {
	display: flex;
	gap: 10px;
}

.page-company .dot {
	width: 25px;
	height: 25px;
	border-radius: 4px;
	background-color: #3f3f3f;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.page-company .dot::after {
	content: attr(data-index);
	counter-increment: dot-counter;
}

.page-company .dot:nth-child(1)::after {
	content: "1";
}
.page-company .dot:nth-child(2)::after {
	content: "2";
}
.page-company .dot:nth-child(3)::after {
	content: "3";
}
.page-company .dot:nth-child(4)::after {
	content: "4";
}
.page-company .dot:nth-child(5)::after {
	content: "5";
}

.page-company .dot.active {
	background-color: #155dfc;
	transform: scale(1.1);
}

.page-company .dot:hover {
	opacity: 0.8;
}

/* ===== CTA Section ===== */
.page-company .cta-section {
	position: relative;
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/Introduction2.jpg") center/cover no-repeat;
	padding: 80px 20px;
	margin-top: 0;
}

.page-company .cta-overlay {
	display: none;
}

.page-company .cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--bg-white);
	max-width: 1000px;
	padding: 0 24px;
}

.page-company .cta-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--bg-white);
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Footer ===== */
.page-company .footer {
	background-color: #1a1a1a;
	color: #99a1af;
	padding: 60px 0 30px;
}

.page-company .footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.page-company .footer-col {
	display: flex;
	flex-direction: column;
}

.page-company .footer-brand {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.page-company .footer-desc {
	font-size: 14px;
	line-height: 1.43;
	color: #99a1af;
}

.page-company .footer-logo {
	height: 50px !important;
	width: auto;
}

.page-company .footer-heading {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.page-company .footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-company .footer-links a {
	font-size: 14px;
	color: #99a1af;
}

.page-company .footer-links a:hover {
	color: #ffffff;
}

.page-company .footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid #364153;
	flex-wrap: wrap;
	gap: 16px;
}

.page-company .copyright {
	font-size: 14px;
	color: #99a1af;
}

.page-company .footer-legal {
	display: flex;
	gap: 24px;
}

.page-company .footer-legal a {
	font-size: 14px;
	color: #99a1af;
}

.page-company .footer-legal a:hover {
	color: #ffffff;
}

/* ===== Responsive Design ===== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
	.page-company .container {
		padding: 0 24px;
	}

	.page-company .hero-title {
		font-size: 36px;
		letter-spacing: -1.8px;
	}

	.page-company .hero-description {
		font-size: 20px;
	}

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

	.page-company .section-subtitle {
		font-size: 18px;
	}

	.page-company .feature-image {
		height: 400px;
	}

	.page-company .carousel-item {
		flex: 0 0 calc((100% - 16px) / 2);
	}

	.page-company .footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.page-company .cta-title {
		font-size: 36px;
	}
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
	.page-company .container {
		padding: 0 16px;
	}

	.page-company .hero-section {
		height: 350px;
	}

	.page-company .hero-title {
		font-size: 28px;
		letter-spacing: -1.4px;
		margin-bottom: 20px;
	}

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

	.page-company .main-content {
		padding: 60px 0;
	}

	.page-company .content-header {
		margin-bottom: 40px;
	}

	.page-company .section-title {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.page-company .section-subtitle {
		font-size: 16px;
	}

	.page-company .feature-image {
		height: 300px;
	}

	.page-company .services-section {
		padding: 60px 0 80px;
	}

	.page-company .carousel-wrapper {
		margin-top: 40px;
	}

	.page-company .carousel-item {
		flex: 0 0 100%;
	}

	.page-company .carousel-nav {
		justify-content: center;
	}

	.page-company .cta-section {
		min-height: 250px;
		padding: 60px 20px;
	}

	.page-company .cta-title {
		font-size: 28px;
		line-height: 1.6;
	}

	.page-company .footer {
		padding: 40px 0 24px;
	}

	.page-company .footer-content {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.page-company .footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* Small Mobile (390px and below) */
@media (max-width: 390px) {
	.page-company .hero-section {
		height: 400px;
	}

	.page-company .hero-title {
		font-size: 24px;
		letter-spacing: -1.2px;
	}

	.page-company .hero-description {
		font-size: 14px;
	}

	.page-company .section-title {
		font-size: 20px;
	}

	.page-company .section-subtitle {
		font-size: 14px;
	}

	.page-company .feature-image {
		height: 250px;
	}

	.page-company .carousel-item {
	}

	.page-company .dot {
		width: 20px;
		height: 20px;
		font-size: 12px;
	}

	.page-company .cta-section {
		min-height: 200px;
		padding: 40px 16px;
	}

	.page-company .cta-title {
		font-size: 22px;
		line-height: 1.6;
	}

	.page-company .footer-brand {
		font-size: 16px;
	}

	.page-company .footer-heading {
		font-size: 14px;
	}

	.page-company .footer-links a,
	.page-company .footer-desc,
	.page-company .copyright,
	.page-company .footer-legal a {
		font-size: 12px;
	}
}

/* ===== Page: Serious Accident Prevention (source: lean1.css) ===== */
/* ===== Reset & Base Styles ===== */
.page-serious * {
	box-sizing: border-box;
}

html.page-serious {
	--primary-color: #577bf7;
	--secondary-color: #6e8ff9;
	--primary-dark: #3d5fd9;
	--accent-red: #ff5757;
	--text-primary: #1a1a1a;
	--text-secondary: #666;
	--text-light: #999;
	--bg-white: #ffffff;
	--bg-light: #f8f9fa;
	--bg-gray: #f5f5f5;
	--bg-dark: #2d2d2d;
	--border-color: #e0e0e0;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--transition: all 0.3s ease;
}

body.page-serious {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
		Arial, sans-serif;
	color: var(--text-primary);
	line-height: 1.6;
	background: var(--bg-white);
}

.page-serious img {
	max-width: 100%;
	height: auto;
	display: block;
}

.page-serious a {
	text-decoration: none;
	color: inherit;
}

.page-serious button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.page-serious .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.page-serious .highlight {
	color: var(--primary-color);
}

/* ===== Hero Section ===== */
.page-serious .hero-section {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/disaster1.jpg") center/cover;
	overflow: hidden;
	margin-top: 25px;
}

.page-serious .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.page-serious .hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--bg-white);
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.page-serious .hero-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 48px !important;
	display: block;
	line-height: 1.3;
}

.page-serious .hero-subtitle {
	font-size: 22px;
	opacity: 0.95;
	font-weight: 400;
	line-height: 1.8;
	display: block;
	margin-top: 24px;
}

/* ===== Main Content ===== */
.page-serious .main-content {
	background: var(--bg-white);
	padding: 80px 0;
}

/* ===== Tab Navigation ===== */
.page-serious .tab-navigation {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
	border-bottom: 2px solid var(--border-color);
}

.page-serious .tab-btn {
	padding: 16px 32px;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-secondary);
	background: transparent;
	border-bottom: 3px solid transparent;
	transition: var(--transition);
	position: relative;
	bottom: -2px;
}

.page-serious .tab-btn:hover {
	color: var(--primary-color);
}

.page-serious .tab-btn.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

/* ===== Tab Content ===== */
.page-serious .tab-content {
	display: none;
	animation: fadeIn 0.4s ease;
}

.page-serious .tab-content.active {
	display: block;
}

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

/* ===== Introduction Section ===== */
.page-serious .intro-section {
	margin-bottom: 80px;
}

.page-serious .intro-list {
	list-style: none;
	margin: 24px 0;
	padding-left: 0;
}

.page-serious .intro-list li {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 2;
	padding-left: 24px;
	position: relative;
}

.page-serious .intro-list li::before {
	content: "•";
	position: absolute;
	left: 8px;
	color: var(--primary-color);
	font-weight: 700;
}

/* ===== Definition Section ===== */
.page-serious .definition-section {
	margin-bottom: 80px;
}

.page-serious .section-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.page-serious .section-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
}

/* ===== Concept Box ===== */
.page-serious .concept-box {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}

.page-serious .concept-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary-color);
}

.page-serious .concept-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin: 20px 0 12px;
}

.page-serious .concept-text {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 16px;
}

.page-serious .concept-list {
	list-style: none;
	margin: 16px 0;
	padding-left: 0;
}

.page-serious .concept-list li {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
}

.page-serious .concept-list li::before {
	content: "▪";
	position: absolute;
	left: 8px;
	color: var(--primary-color);
	font-weight: 700;
}

/* ===== Law Item ===== */
.page-serious .law-item {
	margin-bottom: 24px;
}

.page-serious .law-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.page-serious .law-quote {
	background: var(--bg-light);
	border-left: 4px solid var(--primary-color);
	padding: 16px 20px;
	margin: 12px 0;
	font-size: 15px;
	color: var(--text-secondary);
	font-style: italic;
	line-height: 1.8;
}

.page-serious .running-safe-role {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
}

.page-serious .running-safe-role p {
	font-size: 16px;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.page-serious .running-safe-role blockquote {
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--secondary-color) 100%
	);
	color: var(--bg-white);
	padding: 20px 24px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.8;
	margin: 0;
	font-style: normal;
}

.page-serious .info-box {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 32px;
	border-radius: 12px;
	margin-top: 32px;
	box-shadow: var(--shadow-sm);
}

.page-serious .info-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.page-serious .info-text {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 24px;
}

.page-serious .info-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin: 24px 0 16px;
}

.page-serious .info-list {
	list-style: none;
	margin: 16px 0;
}

.page-serious .info-list li {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 2;
}

.page-serious .info-highlight {
	font-size: 15px;
	color: var(--text-primary);
	font-weight: 600;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
}

/* ===== Statistics Section ===== */
/* ===== Statistics Section (재해 발생 환경) ===== */
.page-serious .statistics-section {
	margin-bottom: 80px;
}

.page-serious .comparison-section {
	margin-bottom: 80px;
}

.page-serious .comparison-image-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-serious .comparison-image-wrapper picture {
	width: 100%;
	display: flex;
	justify-content: center;
}

.page-serious .comparison-image {
	width: 100%;
	height: auto;
	max-width: 100%;
	border-radius: 12px;
}

.page-serious .stats-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 40px;
}

/* 왼쪽: 재해 발생 환경 */
.page-serious .environment-section {
	background: var(--bg-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.page-serious .environment-header {
	background: var(--bg-white);
	padding: 24px 32px;
	border-bottom: 1px solid var(--border-color);
}

.page-serious .environment-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.page-serious .environment-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	font-style: italic;
}

.page-serious .circular-chart-container {
	padding: 40px;
	background: linear-gradient(
		135deg,
		rgba(87, 123, 247, 0.03) 0%,
		rgba(87, 123, 247, 0.01) 100%
	);
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Stats Slider */
.page-serious .stats-slider-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	overflow: hidden;
}

.page-serious .stats-slider-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.page-serious .stats-slide {
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-serious .stats-slide-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Slider Dots */
.page-serious .stats-slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.page-serious .stats-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d0d0d0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.page-serious .stats-dot:hover {
	background: #a0a0a0;
	transform: scale(1.2);
}

.page-serious .stats-dot.active {
	background: #696cff;
	width: 24px;
	border-radius: 5px;
}

/* 오른쪽: 재해 유형 카드 */
.page-serious .disaster-types-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	height: 100%;
}

.page-serious .disaster-type-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 24px 28px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	box-shadow: var(--shadow-sm);
	flex: 1;
	min-height: 100px;
}

.page-serious .disaster-type-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-serious .disaster-icon {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.page-serious .disaster-icon-orange {
	background: #fa8241;
}

.page-serious .disaster-icon-blue {
	background: #696cff;
}

.page-serious .disaster-icon-cyan {
	background: #37b9d6;
}

.page-serious .disaster-icon-red {
	background: #ff6363;
}

.page-serious .disaster-type-content {
	flex: 1;
}

.page-serious .disaster-type-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 4px;
	line-height: 1.3;
}

.page-serious .disaster-type-desc {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.4;
}

.page-serious .comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 32px;
	margin-top: 40px;
}

.page-serious .severity-item {
	width: 100%;
	padding: 24px;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-serious .severity-item.high {
	background: var(--accent-red);
	color: var(--bg-white);
}

.page-serious .severity-item.medium {
	background: var(--primary-color);
	color: var(--bg-white);
}

.page-serious .severity-label {
	font-size: 18px;
	font-weight: 600;
}

.page-serious .severity-value {
	font-size: 32px;
	font-weight: 700;
}

/* ===== Legal/Penalty Section ===== */
.page-serious .legal-section,
.page-serious .penalty-section {
	margin-bottom: 80px;
}

.page-serious .legal-table,
.page-serious .penalty-table {
	margin-top: 40px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.page-serious .table-row,
.page-serious .penalty-row {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
	border-bottom: 1px solid var(--border-color);
}

.page-serious .table-row:last-child,
.page-serious .penalty-row:last-child {
	border-bottom: none;
}

.page-serious .table-row.table-header,
.page-serious .penalty-header {
	background: var(--bg-light);
	font-weight: 700;
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
}

.page-serious .table-cell,
.page-serious .penalty-cell {
	padding: 20px;
	font-size: 14px;
	border-right: 1px solid var(--border-color);
	display: flex;
	align-items: center;
}

.page-serious .table-cell:last-child,
.page-serious .penalty-cell:last-child {
	border-right: none;
}

.page-serious .legal-note,
.page-serious .notice-box {
	margin-top: 24px;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.page-serious .legal-note-question,
.page-serious .notice-question {
	padding: 20px;
	padding-right: 50px;
	font-size: 15px;
	color: var(--text-primary);
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
	user-select: none;
	line-height: 1.6;
}

.page-serious .legal-note-question:hover,
.page-serious .notice-question:hover {
	background: var(--bg-light);
}

.page-serious .legal-note-question::after,
.page-serious .notice-question::after {
	content: "▼";
	font-size: 12px;
	color: var(--primary-color);
	transition: transform 0.3s ease;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.page-serious .legal-note-question.active::after,
.page-serious .notice-question.active::after {
	transform: translateY(-50%) rotate(180deg);
}

.page-serious .legal-note-answer,
.page-serious .notice-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease,
		padding 0.3s ease;
	padding: 0 20px;
	background: var(--bg-light);
}

.page-serious .legal-note-answer.active,
.page-serious .notice-answer.active {
	max-height: 200px;
	padding: 20px;
	border-top: 1px solid var(--border-color);
}

.page-serious .legal-note p,
.page-serious .notice-box p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.page-serious .note-detail,
.page-serious .notice-detail {
	margin-top: 8px;
	font-size: 13px;
	color: var(--text-light);
}

/* ===== Punishment Section ===== */
.page-serious .punishment-section {
	margin-bottom: 80px;
}

.page-serious .punishment-intro {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 40px;
	margin-bottom: 16px;
}

.page-serious .punishment-badge {
	width: 36px;
	height: 36px;
	background: #696cff;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
}

.page-serious .punishment-subtitle {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.page-serious .punishment-description {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.6;
}

.page-serious .punishment-table {
	margin-top: 24px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.page-serious .punishment-row {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
	border-bottom: 1px solid var(--border-color);
}

.page-serious .punishment-row:last-child {
	border-bottom: none;
}

.page-serious .punishment-row.punishment-header {
	background: var(--bg-light);
	font-weight: 700;
}

.page-serious .punishment-cell {
	padding: 16px 20px;
	font-size: 15px;
	color: var(--text-secondary);
	border-right: 1px solid var(--border-color);
	line-height: 1.6;
}

.page-serious .punishment-cell:last-child {
	border-right: none;
}

.page-serious .punishment-row.punishment-header .punishment-cell {
	color: var(--text-primary);
	font-weight: 700;
}

/* 4칸 표를 위한 스타일 */
.page-serious .punishment-row:has(.punishment-cell:nth-child(4)) {
	grid-template-columns: 1fr 1.5fr 2fr 1fr;
}

/* ===== Additional/Risk Section ===== */
.page-serious .additional-section,
.page-serious .risk-section {
	margin-bottom: 80px;
}

.page-serious .check-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 32px 0;
}

.page-serious .check-list li {
	font-size: 15px;
	color: var(--text-secondary);
	padding: 12px 0;
}

.page-serious .info-block,
.page-serious .block-info {
	background: var(--bg-light);
	padding: 24px;
	border-radius: 8px;
	margin-bottom: 16px;
}

.page-serious .block-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.page-serious .block-text {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.8;
}

.page-serious .risk-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.page-serious .risk-item {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--bg-light);
	border-radius: 8px;
	transition: var(--transition);
	align-items: center;
}

.page-serious .risk-item:hover {
	background: var(--bg-gray);
	transform: translateX(4px);
}

.page-serious .risk-number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
}

.page-serious .risk-content {
	flex: 1;
}

.page-serious .risk-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
/*	margin-bottom: 8px;*/
}

.page-serious .risk-text {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* ===== Q&A Section ===== */
.page-serious .qna-section {
	margin-bottom: 60px;
}

/* ===== Chart Section ===== */
.page-serious .chart-section {
	margin-bottom: 80px;
}

.page-serious .process-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.page-serious .process-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.page-serious .process-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.page-serious .process-icon {
	background: var(--primary-color);
	color: var(--bg-white);
	padding: 16px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
}

.page-serious .process-content {
	height: 200px;
	background: var(--bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.page-serious .process-text {
	font-size: 14px;
	color: var(--text-secondary);
	text-align: center;
	line-height: 1.6;
}

.page-serious .placeholder-text {
	font-size: 16px;
	color: var(--text-light);
	text-align: center;
}

/* ===== CTA Section ===== */
.page-serious .cta-section {
	position: relative;
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/disaster2.jpg") center/cover no-repeat;
	padding: 80px 20px;
	margin-top: 0;
}

.page-serious .cta-overlay {
	display: none;
}

.page-serious .cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--bg-white);
	max-width: 1000px;
	padding: 0 24px;
}

.page-serious .cta-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--bg-white);
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-serious .cta-subtitle {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--bg-white);
}

.page-serious .cta-description {
	font-size: 18px;
	opacity: 0.9;
	color: var(--bg-white);
}

/* ===== Footer ===== */
.page-serious .footer {
	background: var(--bg-dark);
	color: var(--bg-white);
	padding: 60px 0 24px;
}

.page-serious .footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.page-serious .footer-brand {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.page-serious .footer-address {
	font-size: 14px;
	opacity: 0.7;
	line-height: 1.8;
}

.page-serious .footer-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.page-serious .footer-links {
	list-style: none;
}

.page-serious .footer-links li {
	margin-bottom: 10px;
}

.page-serious .footer-links a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-serious .footer-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

.page-serious .footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-serious .footer-copyright {
	font-size: 14px;
	opacity: 0.6;
}

.page-serious .footer-legal {
	display: flex;
	gap: 24px;
}

.page-serious .footer-legal a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-serious .footer-legal a:hover {
	opacity: 1;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
	.page-serious .hero-title {
		font-size: 38px;
	}

	.page-serious .section-title {
		font-size: 36px;
	}

	.page-serious .stats-two-column {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.page-serious .environment-title {
		font-size: 24px;
	}

	.page-serious .environment-subtitle {
		font-size: 16px;
	}

	.page-serious .stats-slider-wrapper {
		max-width: 400px;
	}

	.page-serious .disaster-type-title {
		font-size: 16px;
	}

	.page-serious .disaster-type-desc {
		font-size: 13px;
	}

	.page-serious .comparison-grid {
		grid-template-columns: 1fr;
	}

	.page-serious .table-row,
	.page-serious .penalty-row,
	.page-serious .table-row.table-header,
	.page-serious .penalty-header {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.page-serious .table-cell,
	.page-serious .penalty-cell {
		padding: 16px;
		font-size: 13px;
	}

	.page-serious .process-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-serious .check-list {
		grid-template-columns: 1fr;
	}

	.page-serious .footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.page-serious .hero-section {
		height: 400px;
	}

	.page-serious .hero-title {
		font-size: 28px;
	}

	.page-serious .hero-subtitle {
		font-size: 16px;
	}

	.page-serious .main-content {
		padding: 60px 0;
	}

	.page-serious .tab-navigation {
		margin-bottom: 40px;
	}

	.page-serious .tab-btn {
		padding: 12px 20px;
		font-size: 18px;
	}

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

	.page-serious .section-description {
		font-size: 15px;
	}

	.page-serious .info-box {
		padding: 24px;
	}

	.page-serious .definition-section,
	.page-serious .statistics-section,
	.page-serious .comparison-section,
	.page-serious .legal-section,
	.page-serious .penalty-section,
	.page-serious .punishment-section,
	.page-serious .additional-section,
	.page-serious .risk-section,
	.page-serious .qna-section,
	.page-serious .chart-section {
		margin-bottom: 60px;
	}

	.page-serious .punishment-intro {
		margin-top: 32px;
	}

	.page-serious .punishment-badge {
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.page-serious .punishment-subtitle {
		font-size: 20px;
	}

	.page-serious .punishment-cell {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
		padding: 14px 16px;
	}

	.page-serious .punishment-cell:last-child {
		border-bottom: none;
	}

	.page-serious .stats-two-column {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.page-serious .environment-header {
		padding: 20px 24px;
	}

	.page-serious .environment-title {
		font-size: 22px;
	}

	.page-serious .environment-subtitle {
		font-size: 15px;
	}

	.page-serious .circular-chart-container {
		padding: 30px 20px;
		min-height: auto;
	}

	.page-serious .stats-slider-wrapper {
		max-width: 100%;
	}

	.page-serious .stats-slider-dots {
		margin-top: 16px;
		gap: 8px;
	}

	.page-serious .stats-dot {
		width: 8px;
		height: 8px;
	}

	.page-serious .stats-dot.active {
		width: 20px;
	}

	.page-serious .disaster-types-section {
		gap: 16px;
	}

	.page-serious .disaster-type-card {
		padding: 16px 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.page-serious .disaster-icon {
		width: 50px;
		height: 50px;
	}

	.page-serious .disaster-icon svg {
		width: 50px;
		height: 50px;
	}

	.page-serious .disaster-type-title {
		font-size: 16px;
	}

	.page-serious .disaster-type-desc {
		font-size: 13px;
	}

	.page-serious .table-cell,
	.page-serious .penalty-cell {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
	}

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

	.page-serious .risk-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.page-serious .cta-section {
		min-height: 250px;
		padding: 60px 20px;
	}

	.page-serious .cta-title {
		font-size: 28px;
		line-height: 1.6;
	}

	.page-serious .cta-subtitle {
		font-size: 24px;
	}

	.page-serious .cta-description {
		font-size: 16px;
	}

	.page-serious .footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.page-serious .footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.page-serious .container {
		padding: 0 16px;
	}

	.page-serious .hero-title {
		font-size: 24px;
	}

	.page-serious .hero-subtitle {
		font-size: 14px;
	}

	.page-serious .tab-btn {
		padding: 10px 16px;
		font-size: 16px;
	}

	.page-serious .section-title {
		font-size: 24px;
	}

	.page-serious .info-box {
		padding: 20px;
	}

	.page-serious .cta-section {
		min-height: 200px;
		padding: 40px 16px;
	}

	.page-serious .cta-title {
		font-size: 22px;
		line-height: 1.6;
	}

	.page-serious .cta-subtitle {
		font-size: 20px;
	}
}

/* ===== Page: Safety Management System (source: 7dehaccim.css) ===== */
/* ===== Reset & Base Styles ===== */
.page-safety-system * {
	box-sizing: border-box;
}

html.page-safety-system {
	--primary-color: #577bf7;
	--secondary-color: #6e8ff9;
	--primary-dark: #3d5fd9;
	--text-primary: #1a1a1a;
	--text-secondary: #666;
	--text-light: #999;
	--bg-white: #ffffff;
	--bg-light: #f8f9fa;
	--bg-dark: #2d2d2d;
	--border-color: #e0e0e0;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--transition: all 0.3s ease;
}

body.page-safety-system {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
		Arial, sans-serif;
	color: var(--text-primary);
	line-height: 1.6;
	background: var(--bg-white);
}

.page-safety-system img {
	max-width: 100%;
	height: auto;
	display: block;
}

.page-safety-system a {
	text-decoration: none;
	color: inherit;
}

.page-safety-system button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.page-safety-system .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Hero Section ===== */
.page-safety-system .hero-section {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/sevencore1.jpg") center/cover no-repeat;
	overflow: hidden;
	margin-top: 25px;
}

.page-safety-system .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.page-safety-system .hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--bg-white);
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.page-safety-system .hero-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 48px !important;
	display: block;
	line-height: 1.3;
}

.page-safety-system .hero-subtitle {
	font-size: 22px;
	opacity: 0.95;
	font-weight: 400;
	line-height: 1.8;
	display: block;
	margin-top: 24px;
}

/* ===== Main Content ===== */
.page-safety-system .main-content {
	background: var(--bg-light);
	padding: 80px 0;
	min-height: calc(100vh - 400px);
	scroll-margin-top: 140px;
}

/* ===== Tab Navigation ===== */
.page-safety-system .tab-navigation {
	display: flex;
	gap: 8px;
	margin-bottom: 60px;
	background: var(--bg-white);
	padding: 8px;
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
	overflow-x: auto;
	flex-wrap: nowrap;
}

.page-safety-system .tab-navigation::-webkit-scrollbar {
	height: 4px;
}

.page-safety-system .tab-navigation::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 2px;
}

.page-safety-system .tab-btn {
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-secondary);
	background: transparent;
	border-radius: 8px;
	transition: var(--transition);
	white-space: nowrap;
	flex-shrink: 0;
}

.page-safety-system .tab-btn:hover {
	color: var(--primary-color);
	background: var(--bg-light);
}

.page-safety-system .tab-btn.active {
	color: var(--bg-white);
	background: var(--primary-color);
	box-shadow: var(--shadow-sm);
}

/* ===== Tab Content ===== */
.page-safety-system .tab-content {
	display: none;
	animation: fadeIn 0.4s ease;
	scroll-margin-top: 240px;
}

.page-safety-system .tab-content.active {
	display: block;
}

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

/* ===== Content Section ===== */
.page-safety-system .content-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.page-safety-system .text-content {
	padding: 40px;
	background: var(--bg-white);
	border-radius: 16px;
	box-shadow: var(--shadow-md);
}

.page-safety-system .content-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 24px;
	line-height: 1.3;
}

.page-safety-system .content-description {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 32px;
}

.page-safety-system .content-list {
	list-style: none;
	padding-left: 0;
}

.page-safety-system .content-list li {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 2;
	padding-left: 24px;
	position: relative;
	margin-bottom: 8px;
}

.page-safety-system .content-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 16px;
}

/* ===== Slider Content ===== */
.page-safety-system .slider-content {
	position: relative;
	padding: 20px 60px;
}

.page-safety-system .slider-wrapper {
	overflow: hidden;
	border-radius: 16px;
}

.page-safety-system .slider-track {
	display: flex;
	gap: 24px;
	transition: transform 0.5s ease;
}

.page-safety-system .slide-card {
	min-width: 100%;
	flex-shrink: 0;
	background: var(--bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.page-safety-system .slide-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.page-safety-system .card-image {
	width: 100%;
	height: 320px;
	background-size: cover;
	background-position: center;
	background-color: var(--bg-light);
}

.page-safety-system .card-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	padding: 24px 24px 12px;
}

.page-safety-system .card-text {
	font-size: 15px;
	color: var(--text-secondary);
	padding: 0 24px 24px;
}

/* ===== Slider Buttons ===== */
.page-safety-system .slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bg-white);
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 10;
}

.page-safety-system .slider-btn:hover {
	background: var(--primary-color);
	color: var(--bg-white);
	transform: translateY(-50%) scale(1.1);
}

.page-safety-system .slider-btn.prev-btn {
	left: 0;
}

.page-safety-system .slider-btn.next-btn {
	right: 0;
}

.page-safety-system .slider-btn svg {
	width: 24px;
	height: 24px;
}

/* ===== Footer ===== */
.page-safety-system .footer {
	background: var(--bg-dark);
	color: var(--bg-white);
	padding: 60px 0 24px;
}

.page-safety-system .footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.page-safety-system .footer-brand {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.page-safety-system .footer-text {
	font-size: 14px;
	opacity: 0.7;
	line-height: 1.8;
}

.page-safety-system .footer-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
}

.page-safety-system .footer-links {
	list-style: none;
}

.page-safety-system .footer-links li {
	margin-bottom: 10px;
}

.page-safety-system .footer-links a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-safety-system .footer-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

.page-safety-system .footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-safety-system .footer-copyright {
	font-size: 14px;
	opacity: 0.6;
}

.page-safety-system .footer-legal {
	display: flex;
	gap: 24px;
}

.page-safety-system .footer-legal a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-safety-system .footer-legal a:hover {
	opacity: 1;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
	.page-safety-system .hero-title {
		font-size: 36px;
	}

	.page-safety-system .tab-navigation {
		flex-wrap: wrap;
	}

	.page-safety-system .content-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.page-safety-system .slider-content {
		padding: 20px 50px;
	}

	.page-safety-system .footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.page-safety-system .hero-section {
		height: 400px;
	}

	.page-safety-system .hero-title {
		font-size: 28px;
	}

	.page-safety-system .hero-subtitle {
		font-size: 16px;
	}

	.page-safety-system .main-content {
		padding: 60px 0;
	}

	.page-safety-system .tab-navigation {
		gap: 6px;
		padding: 6px;
	}

	.page-safety-system .tab-btn {
		padding: 12px 16px;
		font-size: 14px;
	}

	.page-safety-system .text-content {
		padding: 32px 24px;
	}

	.page-safety-system .content-title {
		font-size: 28px;
	}

	.page-safety-system .content-description {
		font-size: 15px;
	}

	.page-safety-system .slider-content {
		padding: 20px 40px;
	}

	.page-safety-system .slider-btn {
		width: 40px;
		height: 40px;
	}

	.page-safety-system .card-image {
		height: 240px;
	}

	.page-safety-system .card-title {
		font-size: 20px;
	}

	.page-safety-system .footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.page-safety-system .footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.page-safety-system .container {
		padding: 0 16px;
	}

	.page-safety-system .hero-title {
		font-size: 24px;
	}

	.page-safety-system .hero-subtitle {
		font-size: 14px;
	}

	.page-safety-system .tab-btn {
		padding: 10px 12px;
		font-size: 13px;
	}

	.page-safety-system .text-content {
		padding: 24px 20px;
	}

	.page-safety-system .content-title {
		font-size: 24px;
	}

	.page-safety-system .slider-content {
		padding: 20px 35px;
	}

	.page-safety-system .card-image {
		height: 200px;
	}
}

/* ===== Page: Community Hub (source: community.css) ===== */
/* ===== Reset & Base Styles ===== */
.page-community * {
	box-sizing: border-box;
}

html.page-community {
	--primary-color: #577bf7;
	--secondary-color: #6e8ff9;
	--primary-dark: #3d5fd9;
	--primary-light: #7b9bf9;
	--primary-lighter: #a5bdfb;
	--accent-color: #ff6b6b;
	--text-primary: #1a1a1a;
	--text-secondary: #666;
	--text-light: #999;
	--bg-light: #f8f9fa;
	--bg-white: #ffffff;
	--bg-gray: #f5f5f5;
	--border-color: #e0e0e0;
	--border-light: #f0f0f0;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--transition: all 0.3s ease;
}

body.page-community {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue",
		Arial, sans-serif;
	color: var(--text-primary);
	line-height: 1.6;
	background: var(--bg-white);
}

.page-community img {
	max-width: 100%;
	height: auto;
	display: block;
}

.page-community a {
	text-decoration: none;
	color: inherit;
}

.page-community button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.page-community .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== Header - Using unified header from style.css ===== */
.page-community /* Header styles removed to prevent conflicts with style.css */ {
}
/* ===== Hero Section ===== */
.hero-section {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/commu1.jpg") center/cover no-repeat;
	overflow: hidden;
	margin-top: 25px;
}

.page-community .hero-overlay {
	display: none;
}

.page-community .hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--bg-white);
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.page-community .hero-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 48px !important;
	display: block;
	line-height: 1.3;
}

.page-community .hero-subtitle {
	font-size: 22px;
	opacity: 0.95;
	font-weight: 400;
	line-height: 1.8;
	display: block;
	margin-top: 24px;
}

/* ===== Main Content ===== */
.page-community .main-content {
	padding: 60px 0 80px;
	background: var(--bg-gray);
}

.page-community .content-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
	align-items: start;
}

/* ===== Sidebar Navigation ===== */
.page-community .sidebar-nav {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 24px;
	position: sticky;
	top: 170px;
}

.page-community .sidebar-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.page-community .sidebar-menu {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.page-community .sidebar-link {
	padding: 12px 16px;
	text-align: left;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-secondary);
	background: var(--bg-white);
	border-radius: 8px;
	transition: var(--transition);
	border: 1px solid transparent;
}

.page-community .sidebar-link:hover {
	background: var(--bg-light);
	color: var(--text-primary);
}

.page-community .sidebar-link.active {
	background: var(--primary-color);
	color: var(--bg-white);
	font-weight: 600;
}

/* ===== Content Area ===== */
.page-community .content-area {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 40px;
}

/* Breadcrumb */
.page-community .breadcrumb {
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-community .breadcrumb a {
	color: var(--text-secondary);
	transition: var(--transition);
}

.page-community .breadcrumb a:hover {
	color: var(--primary-color);
}

.page-community .breadcrumb-current {
	color: var(--text-primary);
	font-weight: 500;
}

/* Content Sections */
.page-community .content-section {
	display: none;
}

.page-community .content-section.active {
	display: block;
}

.page-community .section-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text-primary);
}

.page-community .section-description {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.7;
}

/* ===== Industry Tabs ===== */
.page-community .industry-tabs {
	display: flex;
	gap: 12px;
	margin: 32px 0 24px;
	border-bottom: 2px solid var(--border-light);
}

.page-community .tab-btn {
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-secondary);
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: var(--transition);
	cursor: pointer;
}

.page-community .tab-btn:hover {
	color: var(--text-primary);
}

.page-community .tab-btn.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

/* ===== Search Section ===== */
.page-community .search-section {
	margin: 24px 0;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 8px;
}

.page-community .search-filters {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.page-community .search-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	min-width: 50px;
}

.page-community .filter-select {
	padding: 10px 16px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: var(--bg-white);
	font-size: 14px;
	color: var(--text-primary);
	cursor: pointer;
	transition: var(--transition);
	min-width: 120px;
}

.page-community .filter-select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(66, 61, 197, 0.1);
}

.page-community .search-input {
	flex: 1;
	min-width: 200px;
	padding: 10px 16px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-size: 14px;
	transition: var(--transition);
}

.page-community .search-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(66, 61, 197, 0.1);
}

.page-community .search-input::placeholder {
	color: var(--text-light);
}

.page-community .search-btn {
	padding: 10px 28px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: var(--transition);
}

.page-community .search-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}

/* ===== Results Info ===== */
.page-community .results-info {
	padding: 16px 0;
	font-size: 14px;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border-light);
}

.page-community .results-info strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* ===== Case List ===== */
.page-community .case-list {
	margin: 24px 0;
}

.page-community .case-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-light);
	transition: var(--transition);
	cursor: pointer;
}

.page-community .case-item:hover {
	background: var(--bg-light);
}

.page-community .case-number {
	flex-shrink: 0;
	width: 50px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-secondary);
	text-align: center;
}

.page-community .case-title {
	flex: 1;
	font-size: 15px;
	color: var(--text-primary);
}

.page-community .case-attachment {
	flex-shrink: 0;
	font-size: 18px;
	color: var(--text-light);
}

/* ===== Pagination ===== */
.page-community .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
}

.page-community .page-numbers {
	display: flex;
	gap: 8px;
}

.page-community .page-btn {
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: var(--bg-white);
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	transition: var(--transition);
	cursor: pointer;
}

.page-community .page-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: var(--bg-light);
}

.page-community .page-btn.active {
	background: var(--primary-color);
	color: var(--bg-white);
	border-color: var(--primary-color);
	font-weight: 600;
}

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

/* ===== Placeholder Content ===== */
.page-community .placeholder-content {
	padding: 60px 40px;
	text-align: center;
	color: var(--text-light);
	font-size: 16px;
	background: var(--bg-light);
	border-radius: 8px;
	margin-top: 24px;
}

/* ===== View Container ===== */
.page-community .view-container {
	display: none;
}

.page-community .view-container.active {
	display: block;
}

/* ===== Detail View ===== */
.page-community .back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	transition: var(--transition);
	margin-bottom: 24px;
}

.page-community .back-btn:hover {
	background: var(--bg-white);
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateX(-4px);
}

.page-community .back-btn svg {
	flex-shrink: 0;
}

.page-community .detail-content {
	animation: fadeIn 0.3s ease;
}

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

.page-community .detail-header {
	padding-bottom: 24px;
	border-bottom: 2px solid var(--border-light);
	margin-bottom: 32px;
}

.page-community .detail-badge {
	display: inline-block;
	padding: 6px 16px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}

.page-community .detail-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.4;
	margin: 0;
}

.page-community .detail-body {
	margin-bottom: 40px;
}

.page-community .detail-section {
	margin-bottom: 40px;
}

.page-community .detail-section:last-child {
	margin-bottom: 0;
}

.page-community .detail-section-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--primary-color);
}

.page-community .detail-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.page-community .detail-info-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 10px;
	border: 1px solid var(--border-light);
}

.page-community .detail-text {
	font-size: 16px;
	line-height: 1.9;
	color: var(--text-secondary);
	margin: 0;
}

.page-community .detail-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-community .detail-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 14px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-secondary);
}

.page-community .detail-list li:before {
	content: "•";
	position: absolute;
	left: 12px;
	color: var(--accent-color);
	font-size: 22px;
	font-weight: 700;
}

.page-community .detail-list-improvement li:before {
	content: "✓";
	color: #4caf50;
	font-size: 20px;
}

.page-community .detail-attachments {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-community .detail-navigation {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-top: 32px;
	border-top: 2px solid var(--border-light);
	margin-top: 40px;
}

.page-community .nav-case-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 24px;
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	transition: var(--transition);
}

.page-community .nav-case-btn:hover {
	background: var(--primary-color);
	color: var(--bg-white);
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.page-community .nav-case-btn svg {
	flex-shrink: 0;
}

/* ===== News Section ===== */
.page-community .news-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 32px;
}

.page-community .news-item {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
}

.page-community .news-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.page-community .news-content {
	padding: 32px;
}

.page-community .news-header {
	margin-bottom: 20px;
}

.page-community .news-badge {
	display: inline-block;
	padding: 6px 16px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}

.page-community .news-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	line-height: 1.4;
}

.page-community .news-title-highlight {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.4;
}

.page-community .news-text {
	margin: 20px 0;
}

.page-community .news-preview {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

.page-community .news-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--border-light);
	gap: 16px;
}

.page-community .news-meta {
	flex: 1;
}

.page-community .news-category {
	font-size: 14px;
	color: var(--text-light);
}

.page-community .news-detail-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	transition: var(--transition);
	white-space: nowrap;
}

.page-community .news-detail-btn:hover {
	background: var(--secondary-color);
	transform: translateX(4px);
	box-shadow: var(--shadow-sm);
}

.page-community .news-detail-btn svg {
	flex-shrink: 0;
}

/* News More Items - Initially Hidden */
.page-community .news-more-items {
	display: none;
	flex-direction: column;
	gap: 24px;
	margin-top: 24px;
	animation: fadeInDown 0.5s ease;
}

.page-community .news-more-items.show {
	display: flex;
}

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

/* Load More Button */
.page-community .news-load-more {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.page-community .load-more-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 40px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.page-community .load-more-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.page-community .load-more-btn svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.page-community .load-more-btn:hover svg {
	transform: translateY(2px);
}

.page-community .news-load-more.hidden {
	display: none;
}

/* ===== Attachment Item ===== */
.page-community .attachment-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: var(--bg-light);
	border-radius: 8px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	text-decoration: none;
	color: var(--text-primary);
}

.page-community .attachment-item:hover {
	background: var(--bg-white);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-sm);
}

.page-community .attachment-icon {
	font-size: 24px;
}

.page-community .attachment-name {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
}

.page-community .info-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.page-community .info-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
}

/* ===== CTA Section ===== */
.page-community .cta-section {
	position: relative;
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/commu2.jpg") center/cover no-repeat;
	padding: 80px 20px;
	margin-top: 0;
}

.page-community .cta-overlay {
	display: none;
}

.page-community .cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--bg-white);
	max-width: 1000px;
	padding: 0 24px;
}

.page-community .cta-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--bg-white);
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Footer ===== */
.page-community .site-footer {
	background: var(--text-primary);
	color: var(--bg-white);
	padding: 60px 0 24px;
}

.page-community .footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.page-community .footer-brand {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--bg-white);
}

.page-community .footer-desc {
	font-size: 14px;
	opacity: 0.7;
	line-height: 1.6;
}

.page-community .footer-logo {
	height: 50px !important;
	width: auto;
}

.page-community .footer-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--bg-white);
}

.page-community .footer-links {
	list-style: none;
}

.page-community .footer-links li {
	margin-bottom: 10px;
}

.page-community .footer-links a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-community .footer-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

.page-community .footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-community .copyright {
	font-size: 14px;
	opacity: 0.6;
}

.page-community .footer-legal {
	display: flex;
	gap: 24px;
}

.page-community .footer-legal a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-community .footer-legal a:hover {
	opacity: 1;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
	.page-community .content-layout {
		grid-template-columns: 200px 1fr;
		gap: 24px;
	}

	.page-community .sidebar-nav {
		padding: 20px;
	}

	.page-community .content-area {
		padding: 32px;
	}

	.page-community .hero-title {
		font-size: 38px;
	}

	.page-community .hero-subtitle {
		font-size: 16px;
	}

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

	.page-community .cta-title {
		font-size: 36px;
	}

	.page-community .footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.page-community .hero-section {
		height: 400px;
	}

	.page-community .hero-title {
		font-size: 28px;
	}

	.page-community .hero-subtitle {
		font-size: 15px;
	}

	.page-community .main-content {
		padding: 40px 0 60px;
	}

	.page-community .content-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.page-community .sidebar-nav {
		position: static;
		padding: 20px;
	}

	.page-community .sidebar-menu {
		flex-direction: row;
		overflow-x: auto;
		gap: 8px;
	}

	.page-community .sidebar-link {
		white-space: nowrap;
		padding: 10px 20px;
	}

	.page-community .content-area {
		padding: 24px;
	}

	.page-community .section-title {
		font-size: 24px;
	}

	.page-community .industry-tabs {
		gap: 8px;
		overflow-x: auto;
	}

	.page-community .tab-btn {
		padding: 10px 20px;
		font-size: 14px;
		white-space: nowrap;
	}

	.page-community .search-filters {
		flex-direction: column;
		align-items: stretch;
	}

	.page-community .search-label {
		min-width: auto;
	}

	.page-community .filter-select,
	.page-community .search-input {
		width: 100%;
		min-width: auto;
	}

	.page-community .search-btn {
		width: 100%;
	}

	.page-community .case-item {
		flex-wrap: wrap;
		gap: 12px;
		padding: 14px 16px;
	}

	.page-community .case-number {
		width: 40px;
		font-size: 14px;
	}

	.page-community .case-title {
		font-size: 14px;
	}

	.page-community .pagination {
		gap: 6px;
		flex-wrap: wrap;
	}

	.page-community .page-btn {
		min-width: 36px;
		height: 36px;
		padding: 0 8px;
		font-size: 13px;
	}

	.page-community .footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.page-community .footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	/* Detail view responsive */
	.page-community .detail-title {
		font-size: 24px;
	}

	.page-community .detail-section-title {
		font-size: 18px;
	}

	.page-community .detail-info-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.page-community .detail-info-item {
		padding: 16px;
	}

	.page-community .detail-text {
		font-size: 15px;
	}

	.page-community .detail-list li {
		font-size: 15px;
	}

	.page-community .detail-navigation {
		flex-direction: column;
	}

	.page-community .nav-case-btn {
		width: 100%;
	}

	.page-community .cta-section {
		min-height: 250px;
		padding: 60px 20px;
	}

	.page-community .cta-title {
		font-size: 28px;
		line-height: 1.6;
	}

	/* News section responsive */
	.page-community .news-content {
		padding: 24px;
	}

	.page-community .news-title,
	.page-community .news-title-highlight {
		font-size: 20px;
	}

	.page-community .news-preview {
		font-size: 14px;
	}

	.page-community .news-category {
		font-size: 13px;
	}

	.page-community .news-detail-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.page-community .load-more-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.page-community .container {
		padding: 0 16px;
	}

	.page-community .hero-title {
		font-size: 24px;
	}

	.page-community .hero-subtitle {
		font-size: 14px;
	}

	.page-community .content-area {
		padding: 20px;
	}

	.page-community .section-title {
		font-size: 20px;
	}

	.page-community .breadcrumb {
		font-size: 12px;
	}

	.page-community .case-item {
		padding: 12px;
	}

	.page-community .page-numbers {
		gap: 4px;
	}

	.page-community .page-btn {
		min-width: 32px;
		height: 32px;
		font-size: 12px;
	}

	/* Detail view small mobile */
	.page-community .back-btn {
		padding: 8px 16px;
		font-size: 13px;
	}

	.page-community .detail-badge {
		font-size: 12px;
		padding: 4px 12px;
	}

	.page-community .detail-title {
		font-size: 20px;
	}

	.page-community .detail-section {
		margin-bottom: 28px;
	}

	.page-community .detail-section-title {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.page-community .detail-info-item {
		padding: 14px;
	}

	.page-community .info-label {
		font-size: 12px;
	}

	.page-community .info-value {
		font-size: 14px;
	}

	.page-community .detail-text {
		font-size: 14px;
		line-height: 1.7;
	}

	.page-community .detail-list li {
		font-size: 14px;
		padding-left: 26px;
	}

	.page-community .attachment-item {
		padding: 12px;
	}

	.page-community .attachment-icon {
		font-size: 20px;
	}

	.page-community .attachment-name {
		font-size: 13px;
	}

	.page-community .detail-navigation {
		margin-top: 32px;
		padding-top: 24px;
	}

	.page-community .nav-case-btn {
		padding: 14px 20px;
		font-size: 14px;
	}

	.page-community .cta-section {
		min-height: 200px;
		padding: 40px 16px;
	}

	.page-community .cta-title {
		font-size: 22px;
		line-height: 1.6;
	}

	/* News section small mobile */
	.page-community .news-content {
		padding: 20px;
	}

	.page-community .news-badge {
		font-size: 12px;
		padding: 4px 12px;
	}

	.page-community .news-title,
	.page-community .news-title-highlight {
		font-size: 18px;
	}

	.page-community .news-preview {
		font-size: 13px;
	}

	.header .logo,
	.page-edu .header .logo {
		max-width: 180px !important;
		height: 45px !important;
		width: auto;
		display: block;
	}

	.page-community .news-category {
		font-size: 13px;
	}

	.page-community .news-detail-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.page-community .load-more-btn {
		padding: 12px 32px;
		font-size: 15px;
	}
}

/* ===== Page: Education Programs Overview (source: edu-styles.css) ===== */

/* Education Section Background */
.edu-section {
	background: #f5f5f5;
}

/* Main Layout Grid */
.edu-layout {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 24px;
	align-items: start;
}

/* Sidebar Navigation */
.edu-aside {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 16px;
	position: sticky;
	top: 96px;
	height: fit-content;
}

.edu-aside-label {
	color: var(--color-info);
	font-weight: 700;
	margin-bottom: 12px;
}

.edu-aside-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.edu-aside-link {
	font-weight: 700;
	color: #383838;
	opacity: 0.6;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.edu-aside-link.is-active,
.edu-aside-link:hover {
	opacity: 1;
}

/* Two Column Layout */
.edu-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

/* Divider */
.edu-divider {
	height: 1px;
	background: #ddd;
	margin: 16px 0;
}

/* Hero Card with Image Overlay */
.edu-hero-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 290px;
	background: #000;
}

.edu-hero-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
	display: block;
}

.edu-hero-chip {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #423dc5;
	color: #fff;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 14px;
}

.edu-hero-title {
	position: absolute;
	left: 16px;
	bottom: 56px;
	color: #fff;
	font-weight: 700;
	font-size: 24px;
}

.edu-hero-sub {
	position: absolute;
	left: 16px;
	bottom: 24px;
	color: #dedede;
	font-size: 16px;
}

/* CTA Right Alignment */
.edu-cta-right {
	margin-top: 16px;
	display: flex;
	justify-content: flex-end;
}

/* Button Group */
.edu-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
}

/* More Section Header */
.edu-more-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	gap: 12px;
	flex-wrap: wrap;
}

/* Card Grid */
.edu-card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.edu-card-foot {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	color: #dedede;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

/* Slider */
.edu-slider {
	position: relative;
	margin-top: 24px;
}

.edu-slides {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 1fr);
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 2px;
	scrollbar-width: thin;
}

.edu-slides::-webkit-scrollbar {
	height: 8px;
}

.edu-slides::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.edu-slides::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

.edu-slides::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.edu-slide {
	height: 300px;
	background: #000;
	border-radius: 10px;
	overflow: hidden;
}

.edu-slider .slider-prev,
.edu-slider .slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 999px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
}

.edu-slider .slider-prev {
	left: -6px;
}

.edu-slider .slider-next {
	right: -6px;
}

/* CTA Section */
.edu-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.edu-cta-title {
	font-weight: 700;
	margin-bottom: 4px;
	font-size: 19.2px;
}

/* Responsive Design for Education Page */

/* Tablet and Below */
@media (max-width: 1024px) {
	.edu-layout {
		grid-template-columns: 1fr;
	}

	.edu-aside {
		position: static;
		top: auto;
	}

	.edu-two-col {
		grid-template-columns: 1fr;
	}

	.edu-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.edu-hero-title {
		font-size: 20px;
		bottom: 48px;
	}

	.edu-hero-sub {
		font-size: 14px;
		bottom: 20px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.edu-card-grid {
		grid-template-columns: 1fr;
	}

	.edu-slide {
		height: 220px;
	}

	.edu-hero-card {
		height: 240px;
	}

	.edu-hero-title {
		font-size: 18px;
		bottom: 40px;
	}

	.edu-hero-chip {
		font-size: 12px;
		padding: 2px 6px;
	}

	.edu-cta-title {
		font-size: 16px;
	}

	.edu-more-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.edu-buttons {
		flex-direction: column;
		width: 100%;
	}

	.edu-buttons .btn {
		width: 100%;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 390px) {
	.edu-aside {
		padding: 12px;
	}

	.edu-aside-nav {
		gap: 8px;
	}

	.edu-aside-link {
		font-size: 14px;
	}

	.edu-hero-card {
		height: 200px;
	}

	.edu-hero-title {
		font-size: 16px;
		bottom: 32px;
	}

	.edu-hero-sub {
		font-size: 12px;
		bottom: 16px;
	}

	.edu-slide {
		height: 180px;
	}

	.edu-slider .slider-prev,
	.edu-slider .slider-next {
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.edu-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.edu-cta .btn {
		width: 100%;
	}
}

/* Fix for 2.html carousel aspect ratio on mobile */
@media (max-width: 1024px) {
	.page-company .carousel-item {
		height: auto !important;
	}
	.page-company .carousel-item img {
		object-fit: contain;
		width: 100%;
		height: 100%;
	}
}

/* ===== Page: Education (edu.html) ===== */

/* Hero Section for Education Page */
.page-edu .hero-section {
	position: relative;
	height: 400px;
	background: url("./image/Edu1.jpg") center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 25px;
}

.page-edu .hero-content {
	text-align: center;
	color: var(--bg-white);
	z-index: 2;
	max-width: 900px;
	padding: 0 24px;
}

.page-edu .hero-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--bg-white);
	margin-bottom: 24px;
	line-height: 1.3;
}

.page-edu .hero-subtitle {
	font-size: 20px;
	color: var(--bg-white);
	opacity: 0.95;
	line-height: 1.8;
}

/* Main Content */
.page-edu .main-content {
	background: var(--bg-white);
	padding: 80px 0;
}

/* Education Section */
.page-edu .education-section {
	margin-bottom: 80px;
}

.page-edu .education-section.reverse .section-row {
	direction: rtl;
}

.page-edu .education-section.reverse .section-text,
.page-edu .education-section.reverse .section-card {
	direction: ltr;
}

.page-edu .section-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.page-edu .section-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.page-edu .section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
	margin: 0;
}

.page-edu .section-title-highlight {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.3;
	margin: 0;
}

.page-edu .section-description {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.8;
}

.page-edu .section-btn {
	display: inline-block;
	padding: 12px 24px;
	background: var(--bg-light);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: var(--transition);
	align-self: flex-start;
}

.page-edu .section-btn:hover {
	background: var(--primary-color);
	color: var(--bg-white);
	border-color: var(--primary-color);
}

/* Section Card */
.page-edu .section-card {
	position: relative;
	background: var(--bg-white);
	background-size: cover;
	background-position: center;
	border: none;
	border-radius: 16px;
	padding: 40px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	overflow: hidden;
}

.page-edu .section-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(2px);
	z-index: 1;
}

.page-edu .section-card > * {
	position: relative;
	z-index: 2;
}

.page-edu .section-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.page-edu .section-card:hover::before {
	background: rgba(255, 255, 255, 0.8);
}

.page-edu .card-badge {
	display: inline-block;
	padding: 8px 16px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(87, 123, 247, 0.3);
}

.page-edu .card-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.page-edu .card-subtitle {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.page-edu .card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.page-edu .card-tag {
	padding: 6px 14px;
	background: var(--bg-light);
	color: var(--text-secondary);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
}

.page-edu .card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition);
}

.page-edu .card-btn:hover {
	background: var(--secondary-color);
	transform: translateX(4px);
}

/* Practical Section */
.page-edu .practical-section {
	margin-top: 120px;
	margin-bottom: 80px;
}

.page-edu .practical-header {
	margin-bottom: 16px;
}

.page-edu .practical-title {
	font-size: 40px;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
}

.page-edu .practical-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 48px;
}

.page-edu .practical-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.page-edu .practical-card {
	background: var(--bg-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}

.page-edu .practical-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.page-edu .card-image {
	position: relative;
	height: 280px;
	background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 32px 24px;
}

.page-edu .card-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	border-radius: 12px 12px 0 0;
	z-index: 1;
}

.page-edu .card-image > * {
	position: relative;
	z-index: 2;
}

.page-edu .card-badge-dark {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(0, 0, 0, 0.8);
	color: var(--bg-white);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 20px;
	align-self: flex-start;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-edu .card-image-title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--bg-white);
	text-shadow:
		2px 2px 8px rgba(0, 0, 0, 0.9),
		0 0 20px rgba(0, 0, 0, 0.8),
		1px 1px 3px rgba(0, 0, 0, 1);
	letter-spacing: -0.5px;
}

.page-edu .card-image-subtitle {
	font-size: 15px;
	font-weight: 600;
	color: var(--bg-white);
	text-shadow:
		2px 2px 6px rgba(0, 0, 0, 0.9),
		0 0 10px rgba(0, 0, 0, 0.7),
		1px 1px 2px rgba(0, 0, 0, 1);
}

.page-edu .practical-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px;
	background: var(--bg-white);
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition);
	border-top: 1px solid var(--border-color);
}

.page-edu .practical-btn:hover {
	background: var(--primary-color);
	color: var(--bg-white);
}

/* Preview Section */
.page-edu .preview-section {
	margin-top: 100px;
	text-align: center;
}

.page-edu .preview-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
	line-height: 1.3;
}

.page-edu .preview-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 60px;
}

.page-edu .preview-slider-container {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
}

.page-edu .slider-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bg-white);
	box-shadow: var(--shadow-md);
	color: var(--text-primary);
	transition: var(--transition);
	flex-shrink: 0;
}

.page-edu .slider-btn:hover {
	background: var(--primary-color);
	color: var(--bg-white);
	transform: scale(1.1);
}

.page-edu .preview-slider-wrapper {
	overflow: hidden;
	flex: 1;
	width: 100%;
}

.page-edu .preview-slider-track {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
}

.page-edu .preview-card {
	width: calc((100% - 40px) / 3);
	min-width: calc((100% - 40px) / 3);
	height: 200px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	background: var(--bg-white);
}

.page-edu .preview-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.page-edu .preview-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Bottom CTA Bar */
.page-edu .bottom-cta {
	background: var(--primary-color);
	padding: 40px 0;
	margin-top: 100px;
}

.page-edu .bottom-cta-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: var(--bg-white);
}

.page-edu .bottom-cta-text {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.page-edu .bottom-cta-subtext {
	font-size: 16px;
	opacity: 0.9;
	margin-bottom: 24px;
}

.page-edu .bottom-cta-btn {
	padding: 14px 32px;
	background: var(--bg-white);
	color: var(--primary-color);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition);
}

.page-edu .bottom-cta-btn:hover {
	background: var(--bg-light);
	transform: scale(1.05);
}

/* CTA Section */
.page-edu .cta-section {
	position: relative;
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("./image/Edu2.jpg") center/cover no-repeat;
	padding: 80px 20px;
	margin-top: 0;
}

.page-edu .cta-overlay {
	display: none;
}

.page-edu .cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--bg-white);
	max-width: 1000px;
	padding: 0 24px;
}

.page-edu .cta-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--bg-white);
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.page-edu .footer {
	background: var(--bg-dark);
	color: var(--bg-white);
	padding: 60px 0 24px;
}

.page-edu .footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.page-edu .footer-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-edu .footer-logo {
	height: 40px;
	width: auto;
	align-self: flex-start;
}

.page-edu .footer-tagline {
	font-size: 16px;
	font-weight: 600;
	opacity: 0.9;
	margin: 0;
}

.page-edu .footer-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.page-edu .footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.page-edu .footer-links a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-edu .footer-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

.page-edu .footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.page-edu .footer-copyright {
	font-size: 14px;
	opacity: 0.6;
}

.page-edu .footer-legal {
	display: flex;
	gap: 24px;
}

.page-edu .footer-legal a {
	font-size: 14px;
	opacity: 0.7;
	transition: var(--transition);
}

.page-edu .footer-legal a:hover {
	opacity: 1;
}

/* Responsive Design for Education Page */

/* Tablet */
@media (max-width: 1024px) {
	.page-edu .hero-title {
		font-size: 38px;
	}

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

	.page-edu .section-row {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.page-edu .section-title,
	.page-edu .section-title-highlight {
		font-size: 32px;
	}

	.page-edu .section-description {
		font-size: 16px;
	}

	.page-edu .practical-title {
		font-size: 32px;
	}

	.page-edu .practical-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-edu .preview-title {
		font-size: 32px;
	}

	.page-edu .preview-slider-track {
		gap: 16px;
	}

	.page-edu .preview-card {
		width: calc((100% - 16px) / 2);
		min-width: calc((100% - 16px) / 2);
	}

	.page-edu .cta-title {
		font-size: 36px;
	}

	.page-edu .footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 768px) {
	.page-edu .hero-section {
		height: 400px;
	}

	.page-edu .hero-title {
		font-size: 28px;
	}

	.page-edu .hero-subtitle {
		font-size: 16px;
	}

	.page-edu .main-content {
		padding: 60px 0;
	}

	.page-edu .education-section {
		margin-bottom: 60px;
	}

	.page-edu .section-title,
	.page-edu .section-title-highlight {
		font-size: 28px;
	}

	.page-edu .section-card {
		padding: 32px;
	}

	.page-edu .card-title {
		font-size: 24px;
	}

	.page-edu .practical-section {
		margin-top: 80px;
	}

	.page-edu .practical-title {
		font-size: 28px;
	}

	.page-edu .practical-grid {
		grid-template-columns: 1fr;
	}

	.page-edu .card-image {
		height: 240px;
	}

	.page-edu .preview-section {
		margin-top: 80px;
	}

	.page-edu .preview-title {
		font-size: 28px;
	}

	.page-edu .preview-subtitle {
		margin-bottom: 40px;
	}

	.page-edu .preview-slider-container {
		gap: 8px;
	}

	.page-edu .slider-btn {
		width: 40px;
		height: 40px;
	}

	.page-edu .preview-slider-track {
		gap: 0;
	}

	.page-edu .preview-card {
		width: 100%;
		min-width: 100%;
	}

	.page-edu .bottom-cta {
		margin-top: 80px;
	}

	.page-edu .bottom-cta-text {
		font-size: 20px;
	}

	.page-edu .cta-section {
		min-height: 250px;
		padding: 60px 20px;
	}

	.page-edu .cta-title {
		font-size: 28px;
		line-height: 1.6;
	}

	.page-edu .footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.page-edu .footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

/* Small Mobile */
@media (max-width: 480px) {
	.page-edu .container {
		padding: 0 16px;
	}

	.page-edu .hero-title {
		font-size: 24px;
	}

	.page-edu .hero-subtitle {
		font-size: 14px;
	}

	.page-edu .section-title,
	.page-edu .section-title-highlight {
		font-size: 24px;
	}

	.page-edu .section-description {
		font-size: 15px;
	}

	.page-edu .card-title {
		font-size: 22px;
	}

	.page-edu .practical-title {
		font-size: 24px;
	}

	.page-edu .preview-title {
		font-size: 24px;
	}

	.page-edu .cta-title {
		font-size: 22px;
		line-height: 1.6;
	}
}
/* ===== Video Modal ===== */
.video-modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.video-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 40px;
	border: none;
	width: 95%;
	max-width: 1400px;
	border-radius: 20px;
	box-shadow:
		0 20px 60px rgba(87, 123, 247, 0.15),
		0 10px 30px rgba(0, 0, 0, 0.2);
	animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
	from {
		transform: translate(-50%, -60%);
		opacity: 0;
	}
	to {
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

.video-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
}

.video-modal-content video {
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	width: 100%;
	outline: none;
	display: block;
	cursor: pointer;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	padding: 0;
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.15);
}

.play-button:active {
	transform: translate(-50%, -50%) scale(1.05);
}

.play-button.hidden {
	opacity: 0;
	pointer-events: none;
}

.play-button svg circle {
	transition: all 0.3s ease;
}

.play-button:hover svg circle {
	fill: rgba(87, 123, 247, 1);
	filter: drop-shadow(0 8px 20px rgba(87, 123, 247, 0.5));
}

.video-modal-buttons {
	text-align: center;
	padding-top: 24px;
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.modal-btn {
	padding: 14px 32px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	transition: var(--transition);
	border: 2px solid transparent;
	min-width: 160px;
}

#closeModalBtn {
	background-color: var(--bg-white);
	color: var(--text-secondary);
	border: 2px solid var(--border-color);
}

#closeModalBtn:hover {
	background-color: var(--bg-light);
	color: var(--text-primary);
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

#dontShowTodayBtn {
	background-color: var(--primary-color);
	color: white;
	border: 2px solid var(--primary-color);
}

#dontShowTodayBtn:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(87, 123, 247, 0.3);
}

.modal-close-icon {
	position: absolute;
	top: 20px;
	right: 24px;
	color: var(--text-secondary);
	font-size: 36px;
	font-weight: 300;
	cursor: pointer;
	background: var(--bg-white);
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
	line-height: 1;
}

.modal-close-icon:hover,
.modal-close-icon:focus {
	color: var(--primary-color);
	background: var(--bg-light);
	transform: rotate(90deg) scale(1.1);
	box-shadow: var(--shadow-md);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.video-modal-content {
		margin: 10% auto;
		padding: 20px;
		width: 95%;
		border-radius: 16px;
	}

	.video-modal-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.modal-btn {
		width: 100%;
		min-width: auto;
	}

	.modal-close-icon {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
		font-size: 28px;
	}
}
