/* Hero Section */
.hero {
	position: relative;
	height: 150px;
	background: #246DBA;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 55%;
	height: 100%;
	background: #246DBA;
	clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
	position: relative!important;
	z-index: 2;
	max-width: 1200px!important;
	margin: 0 auto!important;
	padding: 0 40px!important;
	width: 100%!important;
}

.hero-button {
	background: white;
	color: #ff6b35;
	padding: 20px 32px;
	border: none;
	border-radius: 6px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.hero-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-image {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 180px;
	height: 180px;
	background: #444;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-image-placeholder {
	text-align: center;
	color: #999;
	padding: 20px;
}

.hero-image-placeholder svg {
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	opacity: 0.6;
}

.hero-image-placeholder p {
	font-size: 12px;
	margin: 0;
	color: #aaa;
}

/* Tab Navigation */
.tab-container {
	background: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tabs {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	padding: 0 40px;
}

.tab {
	padding: 20px 30px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.tab:hover {
	color: #ff6b35;
	background: #fff5f2;
}

.tab.active {
	color: #ff6b35;
	border-bottom-color: #ff6b35;
}

/* Content Section */
.content {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 40px 60px;
}

.content-card {
	background: white;
	border-radius: 12px;
	padding: 50px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #1a1a1a;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 40px 0 20px;
	color: #1a1a1a;
	letter-spacing: -0.3px;
}

h2:first-of-type {
	margin-top: 0;
}

p {
	margin-bottom: 20px;
	color: #444;
	font-size: 15px;
	line-height: 1.8;
}

.intro-text {
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 25px;
	line-height: 1.7;
}

.section-item {
	margin-bottom: 25px;
}

.section-number {
	font-weight: 600;
	color: #ff6b35;
	margin-right: 8px;
}

.policyMain ul {
	margin: 15px 0;
	padding-left: 25px;
}

.policyMain li {
	margin-bottom: 12px;
	color: #444;
	font-size: 15px;
	line-height: 1.7;
}

strong {
	color: #1a1a1a;
	font-weight: 600;
}

/* Mobile Responsive */
@media ( max-width : 768px) {
	.hero {
		height: 150px;
	}
	.hero::after {
		width: 50%;
		clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
	}
	.hero-content {
		padding: 0 20px;
	}
	.hero-button {
		padding: 10px 24px;
		font-size: 14px;
	}
	.hero-image {
		width: 120px;
		height: 120px;
		right: 20px;
	}
	.hero-image-placeholder svg {
		width: 40px;
		height: 40px;
	}
	.hero-image-placeholder p {
		font-size: 10px;
	}
	.tabs {
		padding: 0 20px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.tab {
		padding: 16px 20px;
		font-size: 14px;
	}
	.content {
		padding: 0 20px 40px;
		margin: 30px auto;
	}
	.content-card {
		padding: 30px 25px;
		border-radius: 8px;
	}
	h1 {
		font-size: 26px;
		margin-bottom: 25px;
	}
	h2 {
		font-size: 20px;
		margin: 30px 0 15px;
	}
	p, li {
		font-size: 14px;
	}
	.intro-text {
		font-size: 15px;
	}
}

@media ( max-width : 480px) {
	.hero {
		height: 150px;
	}
	.hero-button {
		padding: 8px 20px;
		font-size: 13px;
	}
	.hero-image {
		width: 100px;
		height: 100px;
		right: 15px;
	}
	.hero-image-placeholder svg {
		width: 35px;
		height: 35px;
	}
	.hero-image-placeholder p {
		font-size: 9px;
	}
	.tab {
		padding: 14px 16px;
		font-size: 13px;
	}
	.content-card {
		padding: 25px 20px;
	}
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 18px;
	}
}

/* Hide scrollbar for tabs on mobile */
.tabs::-webkit-scrollbar {
	display: none;
}

.tabs {
	-ms-overflow-style: none;
	scrollbar-width: none;
}