:root {
	--bg-dark: #172636;
	--bg-card: #172636;
	--bg-accent: #332673;
	--btn-color: #cc5500;
	--btn-hover: #e06b40;
	--text-main: #ffffff;
	--text-secondary: #d1d5db;
	--border-color: #2d3748;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	background-color: #0f1a24;
	color: var(--text-main);
	line-height: 1.6;
	font-size: 16px;
}

/* Header */
header {
	background-color: var(--bg-dark);
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid var(--bg-accent);
}

.logo img {
	max-height: 40px;
	width: auto;
	display: block;
}

.btn-login {
	background-color: transparent;
	border: 2px solid var(--btn-color);
	color: var(--btn-color);
	padding: 8px 16px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s ease;
}

.btn-login:hover {
	background-color: var(--btn-color);
	color: #fff;
}

/* Container */
.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

/* Typography */
h1,
h2,
h3 {
	color: var(--text-main);
	margin-bottom: 15px;
	margin-top: 30px;
	line-height: 1.2;
}

h1 {
	font-size: 28px;
	text-align: center;
	margin-top: 10px;
}

h2 {
	font-size: 22px;
	border-left: 4px solid var(--btn-color);
	padding-left: 10px;
}

h3 {
	font-size: 19px;
	color: var(--btn-color);
}

p {
	margin-bottom: 15px;
	color: var(--text-secondary);
	text-align: justify;
}

/* Links */
a {
	color: var(--btn-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Images */
.img-container {
	text-align: center;
	margin: 25px 0;
}

.img-container img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--bg-accent);
}

/* Lists */
ul,
ol {
	margin-bottom: 20px;
	padding-left: 20px;
	color: var(--text-secondary);
}

li {
	margin-bottom: 10px;
}

/* Tables */
.table {
	overflow-x: auto;
	margin-bottom: 25px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--bg-card);
	min-width: 500px;
	/* Force scroll on small mobile */
}

th,
td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
	font-size: 14px;
}

tr:first-child td,
th {
	background-color: var(--bg-accent);
	color: #fff;
	font-weight: bold;
}

tr:last-child td {
	border-bottom: none;
}

/* FAQ Section styling */
.faq-section {
	background-color: var(--bg-card);
	padding: 20px;
	border-radius: 10px;
	margin-top: 40px;
}

/* Buttons (CTA) */
.cta-button {
	display: inline-block;
	background-color: var(--btn-color);
	color: #fff;
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: bold;
	text-align: center;
	margin: 20px auto;
	display: block;
	width: fit-content;
	box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
}

.cta-button:hover {
	background-color: var(--btn-hover);
	text-decoration: none;
	transform: translateY(-2px);
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

/* Footer */
footer {
	padding: 40px 20px;
	background-color: var(--bg-card);
	margin-top: 40px;
	border-top: 1px solid var(--bg-accent);
	font-size: 12px;
	color: #888;
	/* Flex center alignment */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	.container {
		padding: 15px;
	}
}
footer ul {
	display: flex;
	flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}