:root {
	--bg-1: #0b1116;
	--bg-2: #121b23;
	--ink: #e8edf4;
	--muted: #9aa7b8;
	--panel: #0e151d;
	--accent: #3d7ee6;
	--border: rgba(160, 181, 204, 0.26);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 15% 10%, rgba(30, 168, 127, 0.12), transparent 35%),
		radial-gradient(circle at 85% 80%, rgba(61, 126, 230, 0.14), transparent 40%),
		linear-gradient(145deg, var(--bg-1), var(--bg-2));
}

.page {
	max-width: 920px;
	margin: 0 auto;
	padding: 28px 18px 40px;
}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.brand {
	margin: 0;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.nav a,
.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(15, 24, 35, 0.8);
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
}

.nav a:hover,
.cta:hover,
.nav a:focus-visible,
.cta:focus-visible {
	outline: none;
	border-color: rgba(61, 126, 230, 0.75);
	background: rgba(23, 34, 48, 0.95);
}

.hero,
.section {
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 16px;
	background: rgba(14, 23, 34, 0.9);
	margin-bottom: 14px;
}

.hero p,
.section p,
.section li {
	color: #dbe6f3;
	line-height: 1.6;
}

h2 {
	margin-top: 0;
}

ul {
	padding-left: 20px;
}

.footer {
	margin-top: 14px;
	color: var(--muted);
	font-size: 0.92rem;
}

.faq-item {
	margin-bottom: 12px;
}

.faq-item h3 {
	margin: 0 0 6px;
	font-size: 1rem;
}

/* Contact Form Styles */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ink);
}

.form-group input,
.form-group textarea {
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: rgba(15, 24, 35, 0.8);
	color: var(--ink);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s, background-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
	background: rgba(15, 24, 35, 0.95);
	box-shadow: 0 0 0 3px rgba(61, 126, 230, 0.15);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	padding: 10px 18px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: linear-gradient(135deg, var(--accent), rgba(61, 126, 230, 0.8));
	color: white;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s;
	align-self: flex-start;
}

.submit-btn:hover {
	border-color: var(--accent);
	background: linear-gradient(135deg, rgba(61, 126, 230, 0.95), var(--accent));
	box-shadow: 0 4px 12px rgba(61, 126, 230, 0.3);
}

.submit-btn:active {
	transform: scale(0.98);
}

.form-note {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

@media (max-width: 680px) {
	.page {
		padding: 20px 12px 30px;
	}

	.hero,
	.section {
		padding: 12px;
	}
}
