/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Typography */
body {
    font-family: 'Mukta', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a1a1a;
}
