:root {
    --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --transition-speed: 0.3s ease;
    --primary-color: #e32524;
    --text-color: #333333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 0.75rem;
    --border-radius-sm: 0.5rem;
  }
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  body,
  html {
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  body {
    background-color: white;
    background-repeat: no-repeat;
    background-size: auto;
    font-family: var(--font-family);
    font-size: 16px;
  }
  .nav-bar {
    z-index: 5;
  }
  ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  