:root {
  --color-primary: #002544;
  --color-secondary: #e54e3d;
  --color-white: #ffffff;
  --color-text-light: rgba(255, 255, 255, 0.7);
  --color-text-dark: #002544;
  --color-text-dark-muted: rgba(0, 37, 68, 0.6);
  --color-text-gray: #878c90;
  --font-main: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.glass-card {
  background: linear-gradient(333deg, rgba(248, 248, 248, 0.1) 0%, rgba(146, 146, 146, 0.2) 112.08%);
  border-radius: 20px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  will-change: transform;
  transform: translateZ(0);
}

.button-primary {
    background: linear-gradient(137deg, #e54e3d 24.09%, #ffffff 135.44%);
    border-radius: 15px;
    padding: 15px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform: translateZ(0);
}

.button-primary:hover {
    transform: scale(1.05) translateZ(0);
}