/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive base font size */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}