@font-face {
    font-family: 'Arya-Regular';
    src: url('https://gkt20.in/assets/fonts/Arya-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #007bff; /* Example primary color (blue) */
    --secondary-color: #6c757d; /* Example secondary color (gray) */
    --accent-color: #28a745; /* Example accent color (green) */
    --background-color: #f9f9f9; /* Consistent with your body background */
    --text-color: #333; /* Example text color (dark gray) */
    --light-text-color: #666; /* lighter text color */
    --border-color: #dee2e6; /* Example border color (light gray) */
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Example box shadow */
    --border-radius: 5px; /* Example border radius */
    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 24px;
    --font-size-small: 0.8rem;
    --font-size-regular: 1rem;
    --font-size-large: 1.2rem;
    --line-height: 1.6; /* Example line height for text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arya-Regular';
    box-sizing: border-box; /* Redundant, but kept for consistency */
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Arya-Regular';
    line-height: var(--line-height);
}
