
:root { --p: #1e40af; --pd: #1e3a8a; --g7: #374151; --g2: #e2e8f0; --l: #f8fafc; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, sans-serif; line-height: 1.6; color: var(--g7); background: #fff; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
nav .container { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; }
nav a { color: var(--pd); text-decoration: none; font-weight: 600; margin-left: 32px; }
nav a:hover { text-decoration: underline; }
header { background: linear-gradient(135deg, var(--p), var(--pd)); color: white; text-align: center; padding: 140px 0 100px; margin-top: 60px; }
h1 { font-size: clamp(2.8rem, 8vw, 4.5rem); font-weight: 700; margin-bottom: 16px; }
.tagline { font-size: 1.5rem; opacity: 0.95; margin-bottom: 12px; }
.location { display: inline-block; background: rgba(255,255,255,0.2); padding: 10px 28px; border-radius: 50px; backdrop-filter: blur(10px); }
.btn { display: inline-block; background: white; color: var(--p); padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; margin-top: 32px; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform .3s; }
.btn:hover { transform: translateY(-4px); }
section { padding: 100px 0; }
h2 { font-size: 2.8rem; text-align: center; color: var(--pd); margin-bottom: 60px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background: var(--l); padding: 40px; border-radius: 16px; border: 1px solid var(--g2); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.card h3 { color: var(--p); font-size: 1.6rem; margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 16px; margin-bottom: 24px; border: 1px solid var(--g2); border-radius: 10px; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--p); box-shadow: 0 0 0 4px rgba(30,64,175,0.15); }
.contact-form button { background: var(--p); color: white; border: none; font-weight: 600; cursor: pointer; border-radius: 50px; font-size: 1.1rem; transition: .3s; width: 100%; padding: 16px; }
.contact-form button:hover { background: var(--pd); }
footer { background: #0f172a; color: #94a3b8; text-align: center; padding: 60px 20px; }
footer a { color: #60a5fa; text-decoration: none; }
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; margin: 80px 0; }
.post-card { background: var(--l); border: 1px solid var(--g2); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.06); transition: transform .3s; }
.post-card:hover { transform: translateY(-8px); }
.post-card a { text-decoration: none; color: inherit; display: block; }
.thumb { height: 220px; background: #e0e7ff; background-size: cover; background-position: center; }
.content { padding: 32px; }
.date { color: #64748b; font-size: 0.9rem; margin-bottom: 8px; }
.post-card h3 { font-size: 1.5rem; color: var(--pd); margin: 0 0 12px; line-height: 1.3; }
.excerpt { color: var(--g7); }
.back { color: var(--p); font-weight: 600; text-decoration: none; }
.meta { color: #64748b; margin-bottom: 32px; }
article { font-size: 1.1rem; line-height: 1.8; }
article img { max-width: 100%; border-radius: 12px; margin: 32px 0; }
.hero { background: linear-gradient(135deg, var(--p), var(--pd)); color: white; text-align: center; padding: 160px 20px 100px; margin-top: 60px; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 4rem); margin-bottom: 16px; }