:root {

    --primary: #0B63F6;
    --primary-dark: #084298;
    --accent: #19C37D;

    --dark: #0B1220;
    --dark-secondary: #111827;

    --light: #F7F9FC;
    --white: #FFFFFF;

    --text: #1F2937;
    --muted: #6B7280;
    --border: #E5E7EB;

    --container-width: 1280px;

}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

}


a {
    text-decoration: none;
}


.site-footer {

    background: var(--dark);

    color: rgba(255, 255, 255, 0.75);

    padding: 70px 0 25px;

}


.site-footer h5,
.site-footer h6 {

    color: var(--white);

}


.site-footer a {

    color: rgba(255, 255, 255, 0.7);

    transition: color 0.2s ease;

}


.site-footer a:hover {

    color: var(--white);

}


.footer-bottom {

    padding-top: 20px;

}