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

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.8;
	color: #1f1f1f;
	background-color: #fafafa;
}

.container {
	width: 90%;
	max-width: 720px;
	margin: 0 auto;
	padding: 40px 0;
}

/* HEADER */
.brand h1 {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.subtitle {
	font-size: 0.95rem;
	color: #666;
	margin-top: 4px;
}

/* HERO */
.hero h2 {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 30px;
	line-height: 120%;
}

.hero p {
	color: #444;
}

/* SECTIONS */
section {
	margin-bottom: 48px;
}

h3 {
	font-size: 1.2rem;
	margin-bottom: 12px;
	font-weight: 500;
}

/* CTA */
.cta {
	border-top: 1px solid #e5e5e5;
	padding-top: 32px;
	text-align: center;
}

.button {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 24px;
	background-color: #1f1f1f;
	color: #ffffff;
	text-decoration: none;
	font-size: 0.95rem;
	transition: background-color 0.3s ease;
}

.button:hover {
	background-color: #444;
}

.email {
	margin-top: 16px;
	font-size: 0.9rem;
	color: #666;
}

/* FOOTER */
.footer {
	border-top: 1px solid #e5e5e5;
	text-align: center;
	font-size: 0.8rem;
	color: #777;
	padding-top: 20px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
	.hero h2 {
		font-size: 1.9rem;
	}
}