:root {
  --brand:#1b6ca8;
  --muted:#666;
  --max-width:1000px;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;line-height:1.5;margin:0;color:#222}
.container{max-width:var(--max-width);margin:0 auto;padding:1rem}
.site-header{background:#f7f9fb;border-bottom:1px solid #e6eef6}
.header-inner{display:flex;align-items:center;gap:1rem;padding:0.5rem 1rem;flex-wrap:wrap}
.brand-row{display:flex;align-items:center;gap:0.75rem;flex:1;min-width:0}
.header-cta{margin-left:auto;display:flex;align-items:center;flex-wrap:wrap}
.btn--primary{background:#e83e3e}
.btn--primary:hover{background:#c43232}

.btn--secondary{background:#1b6ca8;color:#fff}
.btn--secondary:hover{background:#155a89}
.header-cta a{margin-left:0.5rem}
.lang-switcher{
  display:inline-flex;
  align-items:center;
  background:#f8f9fa;
  border:1px solid #e6eef6;
  border-radius:20px;
  padding:0.25rem 0.5rem;
  margin-right:1rem;
  font-size:0.85rem;
  box-shadow:0 1px 3px rgba(0,0,0,0.1);
}
.lang-link{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  padding:0.25rem 0.5rem;
  border-radius:14px;
  transition:all 0.2s ease;
  min-width:28px;
  text-align:center;
}
.lang-link:hover{
  color:var(--brand);
  background:rgba(27,108,168,0.1);
}
.lang-link.active{
  color:#fff;
  background:var(--brand);
  font-weight:700;
  box-shadow:0 1px 2px rgba(0,0,0,0.15);
}
.lang-separator{
  color:#d1d5db;
  margin:0 0.125rem;
  font-weight:300;
}
.logo{width:56px;height:56px}
.site-title{font-size:1.25rem;margin:0}
.main-nav ul{list-style:none;margin:0;padding:0;display:flex;gap:0.75rem}
.main-nav a{color:var(--brand);text-decoration:none;font-weight:600}
.hero{background:linear-gradient(180deg, #eaf4fb, #fff);padding:2.5rem 0;text-align:center}
.hero h2{margin-top:0}
.btn{display:inline-block;background:var(--brand);color:#fff;padding:0.6rem 1rem;border-radius:6px;text-decoration:none}
.section{padding:1.25rem 0;border-bottom:1px solid #f0f4f7}
.events-list{padding-left:1rem}
.events-list li{margin:0.5rem 0}
.muted{color:var(--muted);font-size:0.95rem}
.event-desc{margin-top:0.25rem;color:#333}
.contact-info{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin:1.5rem 0}
.contact-method h3{margin:0 0 0.5rem 0;font-size:1rem;color:var(--brand)}
.contact-method p{margin:0;line-height:1.6}
.social-links{display:flex;gap:1rem;justify-content:center;margin:1rem 0}
.social-link{
  display:flex;
  align-items:center;
  gap:0.5rem;
  padding:0.75rem 1.25rem;
  background:#f8f9fa;
  border:1px solid #e6eef6;
  border-radius:8px;
  text-decoration:none;
  color:#333;
  font-weight:600;
  transition:all 0.2s ease;
  box-shadow:0 1px 3px rgba(0,0,0,0.1);
}
.social-link:hover{
  background:#fff;
  border-color:var(--brand);
  color:var(--brand);
  transform:translateY(-1px);
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}
.social-icon{font-size:1.2rem}
.site-footer{padding:1rem 0;text-align:center;color:var(--muted)}

@media (max-width:600px){
  .header-inner{flex-direction:column;align-items:flex-start;gap:0.75rem}
  .brand-row{align-self:stretch}
  .main-nav ul{flex-wrap:wrap}
  .header-cta{align-self:stretch;justify-content:space-between;align-items:center}
  .lang-switcher{margin-right:0;order:1}
  .header-cta .btn{order:2}
  .contact-info{grid-template-columns:1fr;gap:1.5rem}
  .social-links{flex-direction:column;align-items:center}
}
