body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #111827; background: #ffffff; }
.simple-header { padding: 10px 16px; border-bottom: 1px solid #e5e7eb; background: #fff; display:flex; align-items:center; justify-content:center; }
.brand { text-decoration: none; color: #111827; font-weight: 600; display:inline-flex; align-items:center; }
.brand-logo { height: 42px; width: auto; display:block; }
.page-container { max-width: 900px; margin: 0 auto; padding: 24px 20px; }

/* Typography */
h1 { font-size: 28px; line-height: 1.2; margin: 8px 0 14px; }
h2 { font-size: 20px; line-height: 1.35; margin: 22px 0 8px; color: #111827; }
p { font-size: 16px; line-height: 1.7; color: #374151; margin: 10px 0; }

/* Contact layout */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
.contact-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px; display: grid; gap: 8px; box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.contact-card.full { grid-column: 1 / -1; }
.cc-title { font-weight: 800; color: #111827; font-size: 1rem; }
.cc-value { color: #1f2937; text-decoration: none; font-weight: 600; }
.cc-value:hover { text-decoration: underline; }
.cc-lines { display: grid; gap: 4px; }
.cc-lines a { color: #1f2937; text-decoration: none; }
.cc-lines a:hover { text-decoration: underline; }

.address-list { display: grid; gap: 10px; }
.address-item { border: 1px solid #eef2f7; border-radius: 10px; padding: 10px 12px; background: #fff; }
.addr-name { font-weight: 700; margin-bottom: 2px; }
.addr-text { color: #374151; }

@media (max-width: 800px) {
	.contact-section { grid-template-columns: 1fr; }
}

/* Better readability on wider screens */
@media (min-width: 1024px) {
	.brand-logo { height: 50px; }
	.page-container { max-width: 860px; }
	h1 { font-size: 32px; }
	p { font-size: 17px; }
}

