:root{
  --mivo-blue: #5b9bd5;
  --mivo-text: #1a3a5c;
  --mivo-orange: #ff6f00;
  --mivo-bg: #ffffff;
}

html,body { box-sizing: border-box; margin:0; }
*, *:before, *:after { box-sizing: inherit; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #e8f4ff 0%, #d4ebff 30%, #c0e0ff 60%, #b3d9ff 100%);
    background-attachment: fixed;
    color: var(--mivo-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header { 
    padding: 12px 18px; 
    display:flex; 
    align-items:center; 
    gap:10px; 
    background: linear-gradient(to right, #ffffff 0%, #ffffff 30%, #5b9bd5 100%); 
    border:none; 
}
.logo { width:96px; height:96px; border-radius:12px; object-fit:cover; }
.title-block { display:flex; flex-direction:column; }
h1 { margin:0; font-size:1.8rem; color:#1a3a5c; font-weight:700; }
.subtitle { color:#1a3a5c; font-weight:500; font-size:0.88rem; }

/* Navigation Styles */
nav { 
    background:#fff; 
    border-bottom:2px solid #5b9bd5; 
    padding:12px 18px; 
    display:flex; 
    justify-content:center; 
    gap:24px; 
    flex-wrap:wrap; 
}
nav a { 
    color:#1a3a5c; 
    text-decoration:none; 
    font-weight:700; 
    padding:8px 16px; 
    border-radius:8px; 
    transition:background 0.2s; 
}
nav a:hover { background:#e8f4ff; }

/* Typography */
h2 { font-size:1.3rem; margin-bottom:12px; font-weight:900; color:#1a3a5c; }
h3 { color:#1a3a5c; font-size:1.4rem; margin-top:28px; margin-bottom:12px; font-weight:700; }
h4 { color:#1a3a5c; font-size:1.2rem; margin-top:24px; margin-bottom:10px; font-weight:700; }
p { margin:16px 0; line-height:1.7; color:#333; }
strong { color:#1a3a5c; font-weight:700; }

/* Footer Styles */
footer { 
    text-align:center; 
    padding:24px 14px; 
    font-size:0.85rem; 
    color:#666; 
    background:#fff; 
    margin-top:48px; 
}
footer strong { color:#1a3a5c; }

/* Responsive */
@media (max-width:768px){
    header { flex-direction:row; }
    .logo { width:64px; height:64px; }
    h1 { font-size:1.4rem; }
}
