@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-Black.ttf') format('truetype');
    font-weight: 900; /* Black */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* Extra Bold */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-Light.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-SemiBold.ttf') format('truetype');
    font-weight: 600; /* Semi Bold */
    font-style: normal;
}
  
@font-face {
    font-family: 'Geist';
    src: url('assets/fonts/Geist/Geist-Thin.ttf') format('truetype');
    font-weight: 100; /* Thin */
    font-style: normal;
}

:root {
    --color-primary: #171717;
    --color-primary-h: #2C2C2C;
  
    --color-secondary: #009fde;
    --color-secondary-h: #008cc5;
  
    --color-transparent-h: #e8eaee;
  
    --color-text-light: #666666;
    --color-text-contrast: white;
  
    --color-border: #D8D8D8;
    --color-error: red;
    --color-warning: #FF6A1A;
    --color-success: #0edd5e;
    --color-disabled: #eae9e9;
  
    --color-bg-primary: white;
    --color-bg-secondary: #f1f5f9;
}

html,body { 
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Geist', sans-serif;
    color: #171717;
    background-color: white;
}


.tile-shadow{
    box-shadow: 0px 4.11px 0px 0px #0C86A5;
}

.mobile-menu-shadow{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}

/* Header Styles */
h1 {
    font-size: 2.5rem !important;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 20px;
  }
  
  h2, h3, h4 {
    color: var(--color-secondary);
    margin-top: 20px;
  }
  
  /* Paragraph Styles */
  p {
    margin-bottom: 15px;
    color: #555;
  }
  
  /* Link Styles */
  a {
    color: var(--color-secondary);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* List Styles */
  ul {
    list-style-type: disc !important;
    margin-left: 20px;
  }
  ol {
    list-style: auto !important;
    margin-left: 20px;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  /* Table Styles */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  
  table th,
  table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  
  table th {
    background-color: #f2f2f2;
    color: #333;
  }
  
  /* Cookie Section Styles */
  strong {
    color: #333  !important;
  }