:root {
    --primary-color: #0f766e;
    --primary-hover: #115e59;
    --text-dark: #111827;
    --text-normal: #374151;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --danger-color: #dc2626;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
    font-family: 'Tajawal', sans-serif;
}

body {
    min-height: 100vh;
}

button,
input,
select,
textarea {
    font: inherit;
}