:root {
	color-scheme: light;
	--ink: #1c1a17;
	--muted: #6a625c;
	--paper: #f6f2ea;
	--sun: #7ba3d4;
	--clay: #050643;
	--ocean: #132f5f;
	--white: #ffffff;
	--shadow: 0 24px 60px rgba(35, 64, 79, 0.18);
}

* {
	box-sizing: border-box;
}

a {
	color: var(--ocean);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--clay);
}

a:visited {
	color: var(--ocean);
}

body {
	margin: 0;
	font-family: "Roboto", "Segoe UI", sans-serif;
	color: var(--ink);
	background: var(--paper);
	min-height: 100vh;
	display: block;
	line-height: 1.6;
	padding-bottom: 80px;
}

.topbar {
	width: 100%;
	background: #000000;
	color: var(--white);
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.topbar-title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--white);
}

.topbar-link {
	color: #f0f0f0;
	font-size: 0.85rem;
	text-decoration: none;
	opacity: 0.9;
	font-weight: 500;
}

.topbar-link:hover {
	opacity: 1;
	text-decoration: underline;
}

.topbar-link:visited {
	color: #f0f0f0;
}

.page {
	width: min(980px, 100%);
	display: grid;
	gap: 32px;
	margin: 40px auto 64px;
	padding: 0 20px;
}

hr {
	border: none;
	border-top: 2px solid #050643;
	margin: 40px 0;
	opacity: 0.5;
}

.ad-container {
	display: flex;
	justify-content: center;
	padding: 16px 20px;
	text-align: center;
}

.adsbygoogle {
	display: block !important;
	margin: 0 auto !important;
}

.hero {
	display: grid;
	gap: 16px;
	padding: 32px;
	background: var(--white);
	border-radius: 20px;
	box-shadow: var(--shadow);
	border-left: 5px solid var(--clay);
}

.section-title {
	font-size: 1.8rem;
	margin: 0 0 20px;
	color: var(--ink);
	text-align: left;
	font-weight: 600;
	padding-bottom: 12px;
	border-bottom: 3px solid #050643;
	display: inline-block;
}

.hero-title {
	font-family: "Roboto", "Segoe UI", sans-serif;
	text-align: left;
	font-size: 1.5rem;
	margin: 0;
	color: var(--ink);
	font-weight: 600;
}

.lede {
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 60ch;
	margin: 0;
}

.panel {
	background: var(--white);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 20px;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	border: 1px solid rgba(35, 64, 79, 0.08);
}

.panel:hover {
	box-shadow: 0 32px 80px rgba(35, 64, 79, 0.25);
	transform: translateY(-2px);
}

.field {
	display: grid;
	gap: 10px;
	font-weight: 500;
}

.field-label {
	font-size: 0.95rem;
	color: var(--ocean);
}

textarea {
	width: 100%;
	min-height: 220px;
	resize: vertical;
	border-radius: 18px;
	border: 1px solid rgba(35, 64, 79, 0.18);
	padding: 18px 20px;
	font-size: 1rem;
	line-height: 1.6;
	background: #fffaf2;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus {
	outline: none;
	border-color: var(--clay);
	box-shadow: 0 0 0 3px rgba(214, 121, 92, 0.2);
}

.about-intro {
	color: var(--ink);
	line-height: 1.8;
}

.about-intro p {
	margin: 0 0 16px 0;
}

.cta-button {
	display: inline-block;
	background: var(--clay);
	color: var(--white);
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	margin-top: 8px;
	box-shadow: 0 8px 20px rgba(74, 123, 167, 0.25);
}

.cta-button:hover {
	background: #3a6a97;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(74, 123, 167, 0.35);
}

.cta-button:visited {
	color: var(--white);
}

.page-footer {
	width: 100%;
	background: var(--paper);
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

@media (max-width: 720px) {
	body {
		padding: 32px 16px;
	}

	.panel {
		padding: 20px;
	}

	.hero {
		padding: 24px;
	}

	.hero-title {
		font-size: 1.3rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.cta-button {
		display: block;
		text-align: center;
	}
}
