@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
	--primary-color: #0066cc;
	--primary-dark: #0052a3;
	--primary-light: #e6f0ff;
	--secondary-color: #ff6b35;
	--success-color: #10b981;
	--text-dark: #1f2937;
	--text-light: #6b7280;
	--border-color: #e5e7eb;
	--bg-light: #f9fafb;
	--white: #ffffff;
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text-dark);
	background: linear-gradient(180deg, #001a4d 0px, #ffffff 500px);
	background-attachment: fixed;
	min-height: 100vh;
	line-height: 1.6;
	font-size: 16px;
}

/* Header & Navigation */
#top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 1rem 2rem;
	background-color: transparent;
	border-bottom: none;
	max-width: 1200px;
	margin: 0 auto;
	gap: 1rem;
}

#top img {
	height: 40px;
	width: auto;
	cursor: pointer;
	flex-shrink: 0;
	margin-right: auto;
}

.hdr-txt {
	color: white;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: right;
	line-height: 1.4;
}

#hdr-back {
	max-width: 1200px;
	margin: 0 auto;
	background: #001a4d;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-bottom: 3px solid #0033cc;
}

#hdr {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	padding: 12px 20px;
	flex-wrap: wrap;
}

#hdr a {
	color: white;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	background: #002966;
	border: 1px solid #002966;
}

#hdr a:hover {
	background: #003d99;
	color: white;
	border-color: #003d99;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 61, 153, 0.3);
}

#hdr a.on {
	background: #003d99;
	color: white;
	border-color: #003d99;
}

#hdr span {
	cursor: pointer;
	color: #b7d1fa;
	font-size: 14px;
	padding: 8px 14px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

#hdr span:hover {
	background: #fee2e2;
	color: #dc2626;
}

/* Main Content Container */
#myBg {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	border-radius: 0 0 8px 8px;
	overflow: hidden;
}

#cbscontent {
	display: block;
	width: 100%;
	padding: 2rem;
}

/* Typography */
h1, h2 {
	color: #1a202c;
	margin-bottom: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

h1 {
	font-size: 2.2em;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #3b82f6, #1e40af);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-size: 1.8em;
	margin-top: 30px;
}

h3 {
	font-size: 1.4em;
	color: #2d3748;
	margin: 25px 0 15px 0;
	font-weight: 600;
}

h4 {
	font-size: 1.1em;
	color: #2d3748;
	margin: 15px 0 10px 0;
	font-weight: 600;
}

/* Text Utilities */
.sn {
	font-size: 14px;
	font-weight: 500;
	color: #4b5563;
}

.si {
	font-size: 14px;
	font-style: italic;
	color: #718096;
}

.productTitle {
	display: block;
	background: linear-gradient(135deg, #dbeafe, #eff6ff);
	padding: 16px;
	border-radius: 6px;
	border-left: 4px solid #3b82f6;
	margin-bottom: 20px;
}

/* Tables */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

td {
	padding: 16px;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: top;
}

tr:last-child td {
	border-bottom: none;
}

/* Layout for Two Columns */
#make2columns {
	display: flex;
	gap: 30px;
	margin: 30px 0;
}

#make2columns td:first-child {
	flex: 1;
	min-width: 0;
}

#make2columns td:last-child {
	flex: 0 0 180px;
}

@media (max-width: 768px) {
	#make2columns {
		flex-direction: column;
	}

	#make2columns td:last-child {
		flex: 1;
	}
}

/* Comment/Review Boxes */
.comment {
	background: linear-gradient(135deg, #ffffff, #f9fafb);
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 24px;
	margin: 16px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.comment:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.comment .r {
	text-align: right;
	padding: 0;
	margin-top: 16px;
	font-weight: 600;
	color: #3b82f6;
}

.j {
	text-align: justify;
	padding: 0;
	line-height: 1.7;
}

.c {
	text-align: center;
	padding: 0;
}

.l {
	text-align: left;
	padding: 0;
}

.r {
	text-align: right;
	padding: 0;
}

/* Buttons & Links */
a {
	color: #3b82f6;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

a:hover {
	color: #1e40af;
	text-decoration: underline;
}

input[type="submit"],
input[type="button"],
a.button {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 15px;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
	display: inline-block;
}

input[type="submit"]:hover,
input[type="button"]:hover,
a.button:hover {
	background: linear-gradient(135deg, #2563eb, #1e40af);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

input[type="submit"]:active,
input[type="button"]:active,
a.button:active {
	transform: translateY(0);
}

/* Input Fields */
input[type="text"],
input[type="email"],
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-family: inherit;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Lists */
ul {
	margin: 20px 0;
	padding-left: 24px;
	list-style: none;
}

ul li {
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
	line-height: 1.7;
}

ul li:before {
	content: "→";
	position: absolute;
	left: 0;
	color: #3b82f6;
	font-weight: 600;
}

li {
	margin-left: 0;
}

/* Footer */
#btm-back {
	max-width: 1200px;
	margin: 30px auto 0;
	padding: 24px;
	background: linear-gradient(135deg, #1a202c, #2d3748);
	color: #cbd5e1;
	text-align: center;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#btm-back a {
	color: #93c5fd;
	transition: all 0.3s ease;
}

#btm-back a:hover {
	color: #60a5fa;
}

#btm-text {
	color: #94a3b8;
	font-size: 14px;
	margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	#myBg, #top, #hdr-back {
		border-radius: 0;
	}

	#cbscontent {
		width: 100%;
		padding: 1.875rem;
	}

	h1 {
		font-size: 1.8em;
	}

	h2 {
		font-size: 1.5em;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 15px;
	}

	#top {
		flex-direction: column;
		text-align: center;
		padding: 15px;
	}

	.hdr-txt {
		margin-left: 0;
		margin-top: 15px;
	}

	#hdr {
		flex-direction: column;
		width: 100%;
		justify-content: center;
	}

	#hdr a {
		width: 100%;
	}

	#cbscontent {
		width: 100%;
		padding: 1.25rem;
	}

	h1 {
		font-size: 1.6em;
	}

	h2 {
		font-size: 1.3em;
	}

	h3 {
		font-size: 1.2em;
	}

	table {
		font-size: 14px;
	}

	td {
		padding: 12px 8px;
	}
}

/* Utility Classes */
.bigtitle {
	font-size: 2em;
	font-weight: 700;
}

.colortitle {
	font-size: 1.1em;
	font-weight: 700;
	color: #3b82f6;
}

.content {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.7;
}

.smallcolortitle {
	font-size: 1em;
	color: #5b7185;
	font-weight: 600;
}

.smallinfo {
	font-size: 0.875em;
	color: #6b7280;
}

.title {
	font-size: 1.1em;
	font-weight: 600;
}

.info {
	font-size: 0.9em;
	color: #718096;
}

.settings {
	font-size: 0.85em;
	color: #718096;
}

.verysmall {
	font-size: 0.75em;
	color: #a0aec0;
}

.L5 {
	padding-left: 5px;
}

/* Special elements */
hr {
	border: none;
	border-top: 2px solid #e5e7eb;
	margin: 30px 0;
	border-radius: 1px;
}

/* Ad Container */
div[style*="width:924px"] {
	max-width: 100%;
}

/* ============================================================================
   MODERN SECTION STYLES
   ============================================================================ */

/* Container */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	color: white;
	box-shadow: var(--shadow-lg);
	text-decoration: none;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: var(--secondary-color);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
	background-color: #e55a2b;
	box-shadow: var(--shadow-lg);
	text-decoration: none;
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-light);
	text-decoration: none;
}

.btn-large {
	padding: 1.5rem 4rem;
	font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 107, 53, 0.05) 100%);
	margin-bottom: 4rem;
}

.hero-container {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 0 2rem;
}

.hero-content h1 {
	margin-top: 0;
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.hero-badge {
	background-color: var(--white);
	padding: 1.5rem;
	border-radius: 0.75rem;
	border-left: 4px solid var(--success-color);
	box-shadow: var(--shadow-md);
}

.hero-badge p {
	margin: 0;
	color: var(--text-dark);
	font-weight: 600;
}

.hero-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.product-image {
	max-width: 100%;
	height: auto;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
	margin-bottom: 2rem;
}

.platform-badge {
	display: flex;
	align-items: center;
	gap: 1rem;
	background-color: var(--white);
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-md);
	font-weight: 600;
	color: var(--text-dark);
}

.platform-badge img {
	height: 24px;
	width: auto;
}

/* Features Section */
.features-section {
	padding: 4rem 2rem;
	background-color: var(--white);
	margin-bottom: 4rem;
}

.features-section h2 {
	text-align: center;
	margin-bottom: 4rem;
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}

.feature-card {
	padding: 2rem;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: 0.75rem;
	transition: all 0.3s ease;
	text-align: center;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
	transform: translateY(-4px);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	display: block;
}

.feature-card h3 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
}

.feature-card p {
	color: var(--text-light);
	margin: 0;
}

/* How It Works Section */
.how-it-works-section {
	padding: 4rem 2rem;
	background-color: var(--bg-light);
	margin-bottom: 4rem;
}

.how-it-works-content {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 0 2rem;
}

.how-it-works-text h2 {
	color: var(--text-dark);
	margin-top: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
}

.benefits-list {
	list-style: none;
	margin: 2rem 0;
}

.benefits-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.benefits-list li:before {
	content: "✓";
	color: var(--success-color);
	font-weight: 700;
	margin-right: 1rem;
	font-size: 1.25rem;
}

.how-it-works-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.how-it-works-visual img {
	max-width: 100%;
	height: auto;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-lg);
}

/* Reviews Section */
.reviews-section {
	padding: 4rem 2rem;
	background-color: var(--white);
	margin-bottom: 4rem;
}

.reviews-section h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
}

.review-intro {
	width: 100%;
	margin: 2rem auto 4rem;
	padding: 0 2rem;
	font-size: 1.1rem;
	text-align: center;
	color: var(--text-light);
}

.testimonials-container {
	width: calc(100% - 4rem);
	margin: 3rem auto;
	padding: 2rem;
	background: var(--bg-light);
	border-radius: 0.75rem;
	border-left: 4px solid var(--primary-color);
}

/* Awards Section */
.awards-section {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 107, 53, 0.05) 100%);
	margin-bottom: 4rem;
}

.awards-section h2 {
	text-align: center;
	margin-bottom: 4rem;
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
}

.awards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 2rem;
}

.award-item {
	background: var(--white);
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: var(--shadow-md);
	text-align: center;
	border-top: 3px solid var(--primary-color);
}

.award-item h4 {
	color: var(--primary-color);
	margin-top: 0;
	margin-bottom: 1rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
}

.award-item p {
	margin: 0;
	color: var(--text-light);
	font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
	padding: 4rem 2rem;
	background-color: var(--white);
	margin-bottom: 4rem;
}

.cta-section h2 {
	text-align: center;
	margin-bottom: 4rem;
	color: var(--text-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
}

.cta-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 2rem;
}

.step {
	text-align: center;
	padding: 2rem;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	border-radius: 50%;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.step h3 {
	color: var(--text-dark);
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
}

.step p {
	color: var(--text-light);
	margin: 0;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

/* Language Section */
.language-section {
	padding: 2rem;
	background-color: var(--bg-light);
	border-top: 1px solid var(--border-color);
	text-align: center;
}

.language-section p {
	margin: 0;
	color: var(--text-light);
	font-size: 0.95rem;
}

.language-section a {
	margin: 0 0.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.language-section a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

/* Ad Sections */
.ad-section-top {
	padding: 1.5rem 0;
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
}

.ad-container-inline {
	display: flex;
	justify-content: center;
	margin: 2rem 0;
	padding: 1.5rem 0;
}

/* Typography */
h1, h2, h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
	color: var(--text-dark);
}

h2 {
	font-size: 2rem;
	color: var(--text-dark);
}

h3 {
	font-size: 1.5rem;
	color: var(--text-dark);
}

h4 {
	font-size: 1.25rem;
	color: var(--text-dark);
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	.container {
		padding: 0 1.5rem;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons a {
		width: 100%;
	}

	#hdr {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	#hdr a {
		text-align: left;
		padding: 1rem;
		border-bottom: none;
		border-left: 3px solid transparent;
	}

	#hdr a:hover,
	#hdr a.on {
		border-left-color: var(--secondary-color);
	}

	.how-it-works-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.awards-grid {
		grid-template-columns: 1fr;
	}

	.cta-steps {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 1.25rem;
	}

	.hero-content h1 {
		font-size: 1.5rem;
	}

	.hero-subtitle {
		font-size: 0.95rem;
	}

	.btn {
		font-size: 0.95rem;
		padding: 0.5rem 1rem;
	}

	.btn-large {
		padding: 1rem 2rem;
		font-size: 1rem;
	}

	#top {
		flex-direction: column;
		text-align: center;
	}

	.hdr-txt {
		margin-left: 0;
		margin-top: 1rem;
	}
}
