:root {
	--accent: #2d79ad;
	--text: #333;
	--text-light: #555;
	--bg: #f7f9fc;
	--card-bg: #fff;
	--border: #e5e9f0;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.4;
	color: var(--text);
	background: var(--bg);
}

header {
	text-align: center;
	padding: 2rem 1rem 1rem;
}

.main-logo {
	max-width: 260px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

main {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 1.25rem 2rem;
}

.intro {
	text-align: center;
	margin: 0 auto 2rem;
	max-width: 620px;
}

.intro p {
	font-size: 1.05rem;
	color: var(--text-light);
	margin: 0;
}

.brands {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.brand {
	display: flex;
	flex-direction: column;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 1.5rem 1.25rem;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.brand:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.brand-logo {
	max-height: 58px;
	width: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto 0.75rem;
}

.brand h2 {
	font-size: 1.05rem;
	margin: 0.8rem 0 0.7rem;
	color: #333;
	line-height: 1.3;
}

.brand p {
	font-size: 0.9rem;
	color: var(--text-light);
	margin: 0 0 1rem;
	line-height: 1.35;
}

.visit-btn {
	display: inline-block;
	background: var(--accent);
	color: white !important;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.4rem 0.9rem;
	border-radius: 6px;
	transition: background 0.2s ease;
	margin-top: auto;
	align-self: center;
}

.visit-btn:hover {
	background: #23618f;
}

footer {
	text-align: center;
	padding: 1.5rem 1rem;
	color: #777;
	font-size: 0.8rem;
	border-top: 1px solid var(--border);
	margin-top: 1rem;
}

footer p {
	margin: 0;
}

@media (max-width: 480px) {
	.main-logo {
		max-width: 220px;
	}
	.brand-logo {
		max-height: 48px;
	}
}