@charset "utf-8";
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap);

* , *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, "Segoe UI", Arial, sans-serif;
    color: #757575;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ===== Top contact bar ===== */
.mk-topbar {
    background: linear-gradient(90deg, #2865c0 0%, #3a8ee6 60%, #4aa0ea 100%);
    color: #fff;
    font-size: 15px;
}
.mk-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 11px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mk-topbar a { color: #fff; text-decoration: none; }
.mk-topbar a:hover { text-decoration: underline; }
.mk-contact { display: inline-flex; align-items: center; }
.mk-topright { display: flex; align-items: center; gap: 22px; }
.mk-toplinks { display: flex; align-items: center; gap: 22px; }
.mk-toplinks a { font-weight: 600; white-space: nowrap; }
.mk-social { display: flex; align-items: center; gap: 16px; }
.mk-social a { display: inline-flex; }
.mk-social svg { width: 17px; height: 17px; fill: #fff; }

/* ===== Header ===== */
.mk-header {
    background: #ebedef;
    border-bottom: 1px solid #e2e5e8;
}
.mk-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.mk-logo img { height: 56px; width: auto; display: block; }
.mk-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.mk-nav a {
    color: #2f7fd1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2px;
}
.mk-nav a:hover { color: #1b5fa8; }
.mk-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3d9bf0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 22px;
    border-radius: 26px;
    box-shadow: 0 6px 16px rgba(61,155,240,.35);
    white-space: nowrap;
}
.mk-quote:hover { background: #2f8ce4; }
.mk-quote svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 34; }

/* ===== Content ===== */
.mk-main { max-width: 1100px; margin: 0 auto; padding: 56px 30px 80px; }
.mk-main h1.page-title {
    color: #333333;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 36px;
    letter-spacing: -.3px;
}
.mk-main h2 {
    color: #333333;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    margin: 40px 0 18px;
}
.mk-main p {
    color: #757575;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
}
.mk-main ul {
    margin: 0 0 24px;
    padding-left: 26px;
}
.mk-main li {
    color: #757575;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.mk-main li::marker { color: #757575; }
.mk-main a { color: #2a9dff; }
.mk-main strong { color: #333333; font-weight: 700; }

/* ===== Footer ===== */
.mk-footer {
    background: #11151c;
    color: #aeb6bf;
    font-size: 14px;
}
.mk-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.mk-footer a { color: #cfd6dd; text-decoration: none; margin: 0 10px; }
.mk-footer a:hover { color: #fff; }

/* ===== WhatsApp floating button ===== */
.mk-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.28);
    z-index: 999;
}
.mk-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 900px) {
    .mk-nav { display: none; }
    .mk-toplinks { display: none; }
    .mk-main h1.page-title { font-size: 40px; }
    .mk-main h2 { font-size: 27px; }
    .mk-topbar-inner, .mk-header-inner, .mk-main, .mk-footer-inner { padding-left: 18px; padding-right: 18px; }
}
