/* Clean site.css to allow inline styles to work properly */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

body {
    /* Background handled in Layout */
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Reset default list styles for custom lists */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
