.inside-article{
	max-width: 1200px;
	padding-top: 150px;
    margin: auto;
	line-height: 1.8;
	color: #1e293b;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.entry-header{
	text-align: center;
	margin-bottom: 40px;
	font-size: 36px;
}
.entry-title{
	background: linear-gradient(135deg, #1e40af, #2563eb, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}
.inside-article p {
	margin-bottom: 22px;
	text-align: justify;
}

.inside-article h2 {
	font-size: 32px !important;
	font-weight: 700;
	margin: 50px 0 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e2e8f0;
}

.inside-article h3 {
	font-size: 22px;
	font-weight: 600;
	margin: 35px 0 20px;
}

.inside-article h4 {
	font-size: 18px;
	font-weight: 600;
	margin: 30px 0 15px;
}

.inside-article ul, .inside-article ol {
	margin: 20px 0;
	padding-left: 30px;
}

.inside-article li {
	margin-bottom: 12px;
	line-height: 1.7;
}

.inside-article strong {
	font-weight: 600;
	color: #1e40af;
}

.inside-article a {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-bottom 0.2s;
}
.button-container {
	text-align: center;
	margin: 40px 0;
}

.cta-button {
	display: inline-block;
	padding: 18px 40px;
	background-color: #2563eb;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.2s;
}
.no-one-btn > div > a{
	background-color: #2563eb;
	color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	padding: 8px 13px;
	font-size: 13px;
}
.cta-button:hover {
	background-color: #1d4ed8;
	transform: translateY(-2px);
	border-bottom: none;
}

.spacer {
	height: 40px;
}
.inside-article figure {
	margin: 40px 0;
	text-align: center;
	font-size: 28px;
    display: flex;
    justify-content: center;
}

.inside-article figure img {
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inside-article hr {
	border: none;
	margin: 50px 0;
}

.inside-article blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background-color: #f0f7ff;
	border-left: 4px solid #2563eb;
	font-style: italic;
}

.inside-article blockquote p {
	margin: 0;
}

.hero-section {
	background-color: #eff6ff;
	padding: 60px;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 60%);
	pointer-events: none;
}

.hero-badge {
	display: inline-block;
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.2);
	color: #2563eb;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 18px;
	border-radius: 50px;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.hero-section h2 {
	color: #1e293b;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 14px;
	line-height: 1.4;
}

.hero-section p {
	color: #64748b;
	font-size: 15px;
	line-height: 1.7;
	max-width: 560px;
	margin: 0 auto 30px;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin: 24px 0;
}
.stat-item {
	background: rgba(37, 99, 235, 0.05);
	border: 1px solid rgba(37, 99, 235, 0.15);
	border-radius: 12px;
	padding: 18px 24px;
	text-align: center;
	min-width: 140px;
	flex: 1;
	line-height: 1.2;
}
.stat-number {
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	color: #2563eb;
}
.stat-label {
	display: block;
	color: #475569;
	font-size: 0.85rem;
	opacity: 1;
}


@media (max-width: 1200px) {
	.inside-article {
		padding-left: 20px;
		padding-right: 20px;
	}

	.inside-article h2 {
		font-size: 24px;
	}

	.inside-article h3 {
		font-size: 20px;
	}
}