* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.terms-container {
	max-width: 900px;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}
.hero-section {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem;
	background: linear-gradient(135deg, #1e3c72 0%, #bd2d2e 100%);
	border-radius: 20px;
	color: white;
	box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}
.main-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.subtitle-text {
	font-size: 1.1rem;
	opacity: 0.9;
	font-weight: 300;
	margin-bottom: 0;
}
.last-updated-badge {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	margin-top: 1rem;
	backdrop-filter: blur(10px);
}
.content-wrapper {
	display: grid;
	gap: 2rem;
}
.terms-section {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	border-left: 4px solid #1e3c72;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.terms-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.section-header {
	font-size: 1.4rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.section-icon {
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #1e3c72, #bd2d2e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.8rem;
	font-weight: bold;
}
.section-content {
	color: #555;
	line-height: 1.7;
}
.section-content p {
	margin-bottom: 1rem;
}
.highlight-box {
	background: linear-gradient(135deg, #bd2d2e 0%, #1e3c72 100%);
	color: white;
	padding: 1.5rem;
	border-radius: 12px;
	margin: 1.5rem 0;
	box-shadow: 0 5px 15px rgba(189, 45, 46, 0.3);
}
.highlight-box h3 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	color: #fff;
}
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}
.info-card {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}
.info-card:hover {
	background: #e8f0ff;
	border-color: #1e3c72;
}
.info-card h4 {
	color: #1e3c72;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}
.contact-section {
	background: linear-gradient(135deg, #1e3c72 0%, #bd2d2e 100%);
	color: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	margin-top: 2rem;
	box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}
.contact-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: #fff;
}
.term-contact-info {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255,255,255,0.1);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
	.terms-container {
		padding-top: 60px;
		padding-bottom: 60px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.main-title {
		font-size: 2rem;
	}
	.hero-section {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}
	.terms-section {
		padding: 1.5rem;
	}
	.info-grid {
		grid-template-columns: 1fr;
	}
	.term-contact-info {
		flex-direction: column;
		align-items: center;
	}
}
@media (max-width: 480px) {
	.main-title {
		font-size: 1.8rem;
	}
	.section-header {
		font-size: 1.2rem;
	}
	.terms-section {
		padding: 1rem;
	}
}