* { box-sizing: border-box; }
body { font-family: Arial, sans-serif; margin: 0; background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 40%, #f5f6f8 100%); color: #1f2937; }
.container { max-width: 1080px; margin: 0 auto; padding: 24px; }
.card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(15,23,42,0.08); margin-bottom: 20px; }
h1, h2 { margin-top: 0; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea, button { padding: 11px 12px; border: 1px solid #d1d5db; border-radius: 10px; font-size: 14px; }
.help-text { font-size: 12px; color: #64748b; }
.error-text { color: #b91c1c; }
.success-text { color: #15803d; }
input[readonly] { background: #f9fafb; }
textarea { min-height: 120px; resize: vertical; }
.actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
button { background: #1e3a8a; color: white; border: none; cursor: pointer; transition: 0.2s ease; }
button:hover { opacity: 0.92; }
button.secondary { background: #334155; }
.alert { padding: 12px 14px; border-radius: 8px; margin-bottom: 14px; }
.alert.success { background: #dcfce7; color: #166534; }
.alert.error { background: #fee2e2; color: #991b1b; }
.topbar { background: #0f172a; color: #fff; box-shadow: 0 4px 20px rgba(2,6,23,0.25); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }
.topbar-links { display: flex; gap: 16px; font-size: 14px; }
a { color: inherit; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid #e5e7eb; text-align: left; padding: 10px 8px; font-size: 14px; }

.detail-sections { display: grid; gap: 16px; margin: 20px 0; }
.detail-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 18px; }
.detail-card h2 { margin: 0 0 14px; font-size: 18px; color: #0f172a; }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.detail-grid div { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; }
.detail-grid span { display: block; font-size: 12px; color: #64748b; margin-bottom: 6px; }
.detail-grid strong { display: block; color: #0f172a; font-size: 14px; }

.hero { padding: 28px; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; align-items: center; }
.hero-logo { max-width: 420px; width: 100%; height: auto; display: block; margin-bottom: 10px; }
.hero-subtitle { margin: 0 0 8px; color: #1d4ed8; font-weight: 700; }
.hero-title { margin: 0 0 10px; font-size: 34px; line-height: 1.15; color: #0f172a; }
.hero-text { margin: 0 0 16px; color: #334155; max-width: 640px; }
.hero-actions { display: flex; gap: 12px; }
.btn-primary { background: #1d4ed8; color: #fff; text-decoration: none; padding: 12px 16px; border-radius: 10px; font-weight: 700; }

.slogan-list { display: grid; gap: 10px; }
.slogan-item { background: #eff6ff; color: #1e3a8a; padding: 14px; border-radius: 12px; border: 1px solid #dbeafe; font-weight: 600; }

.testimonials h2 { margin-bottom: 14px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.testimonial-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }
.testimonial-item p { margin: 0 0 12px; color: #334155; }
.testimonial-item strong { color: #0f172a; font-size: 14px; }

@media (max-width: 920px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-title { font-size: 28px; }
	.testimonial-grid { grid-template-columns: 1fr; }
	.detail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) { .grid { grid-template-columns: 1fr; } .detail-grid { grid-template-columns: 1fr; } }
