
.forum-post {
	max-width: 1400px;
	margin: auto;
	padding: 32px 28px;
	border-radius: 14px;
	font-family: 'Segoe UI', 'Malgun Gothic', Arial, sans-serif;
	position: relative;
}
.forum-post h1, .forum-post h2, .forum-post h3 {
	margin-top: 32px;
	margin-bottom: 12px;
	font-weight: 600;
	letter-spacing: -0.5px;
}
.forum-post h1 {
	font-size: 2.1em;
	border-bottom: 2px solid #f3f3f3;
	padding-bottom: 10px;
	margin-bottom: 24px;
}
.forum-post h2 {
	font-size: 1.3em;
	border-left: 4px solid #e5e5e5;
	padding-left: 12px;
	background: #fafbfc;
}
.forum-post h3 {
	font-size: 1.08em;
	color: #3a3a3a;
	padding-left: 8px;
	border-left: 3px solid #f0f0f0;
}
.forum-post section {
	margin-bottom: 36px;
	padding: 22px 0 0 0;
	border-bottom: 1px solid #f3f3f3;
}
.forum-post ul {
	list-style: none;
	padding-left: 0;
	margin: 0 0 12px 0;
}
.forum-post li {
	margin-bottom: 8px;
	padding-left: 18px;
	position: relative;
}
.forum-post li:before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: #c93737;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 9px;
}
.forum-post img {
	display: block;
	margin: 16px auto;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
hr{
	border: none;
	border-top: 1px solid #eee;
	margin: 28px 0;
}
i{
	font-size: 1.1em;
	margin-right: 7px;
	color: #c93737;
}
.image-container{
	display: flex;
	justify-content: space-between;
}
.image-container div {
	flex: 1;
	margin-right: 16px;
}
.forum-post .faq {
	background: #fafbfc;
	border-radius: 10px;
	padding: 18px 18px 8px 18px;
	margin: 18px 0 0 0;
	border: 1px solid #f0f0f0;
}
.forum-post .faq h3 {
	margin-top: 18px;
	margin-bottom: 6px;
	border-left: 3px solid #e5e5e5;
	background: none;
	padding-left: 10px;
	font-size: 1em;
}
.forum-post .faq p {
	margin: 0 0 12px 0;
	font-size: 0.98em;
}
.forum-post strong {
	color: #c93737;
	font-weight: 600;
}
.forum-post a {
	color: #2d7be5;
	text-decoration: none;
	border-bottom: 1px dotted #bcd6f6;
	transition: border 0.2s;
}
.forum-post a:hover {
	border-bottom: 1px solid #2d7be5;
}
.forum-post p {
	margin: 10px 0 18px 0;
	line-height: 1.7;
}
.forum-post .cta {
	background: #f7f7fa;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 16px 18px;
	margin: 18px 0 24px 0;
	text-align: center;
	font-size: 1.08em;
}
.forum-post .cta strong {
	color: #2d7be5;
}
.hero-section {
    background-color: #35383a;
	color: white;
	text-align: center;
	padding: 60px 14px;
	position: relative;
	margin-top: 70px;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: -1px;
}

.hero-subtitle {
	font-size: 1.3rem;
	opacity: 0.9;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.hero-cta {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	color: white;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rainbow-text {
    background: linear-gradient(90deg, #87ceeb, #4a90e2, #00bfff, #1e90ff, #4169e1, #5f9ea0, #87ceeb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	display: inline-block;
	animation: rainbow-gradient-move 3s linear infinite alternate;
	background-size: 200% 100%;
}

@keyframes rainbow-gradient-move {
	0% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@media (max-width: 768px) {
	.image-container {
		flex-direction: column;
	}

	.image-container div {
		margin-right: 0;
		margin-bottom: 16px;
	}

	.image-container img {
		width: 400px;
	}
}