:root {
  --color-bg: #f2f5f9;
  --color-dark: #111d2c;
  --color-accent: #009688;
  --color-link: #1a73e8;
  --color-text: #2a2a2a;
  --color-box: #ffffff;
  --color-border: #cfd8dc;
  --color-shadow: rgba(0, 0, 0, 0.08);
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

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

.header_wb897 {
  background-color: var(--color-dark);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_kj123 {
  font-size: 24px;
  font-weight: bold;
}
.nav_gf123 ul {
  list-style: none;
  padding: 0;
  display: flex;
}
.menu_zx123 li {
  margin-left: 20px;
}
.menu_zx123 a {
  color: #0295ff;
  text-decoration: none;
  transition: color 0.3s;
}
.menu_zx123 a:hover {
  color: var(--color-link);
}
.burger_wc276 {
  display: none;
}
.main_wq090 {
  padding: 30px 0;
}
.section_sc001 {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}
.scan_gd023 img {
  filter: grayscale(100%) brightness(80%);
  width: 100%;
}
.section_sc002 {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(0deg, #f2f5f9, #e0f7fa);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}
.columns_sc004 {
  display: flex;
  justify-content: space-between;
}
.bonus_card_kz087 {
  background: var(--color-accent);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}
.section_sc003 {
  background: var(--color-box);
  padding: 20px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.table_container_qw235 {
  overflow-x: auto;
}
.table-r987 {
  width: 100%;
  border-collapse: collapse;
}
.table-r987 th {
  background: var(--color-accent);
  color: white;
  padding: 12px;
}
.table-r987 td {
  border-bottom: 1px solid var(--color-border);
  padding: 10px;
}
.footer_yt890 {
  background-color: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.footer_yt890 p:hover {
  color: var(--color-link);
  cursor: pointer;
}
@media (max-width: 768px) {
  .burger_wc276 {
    display: block;
    cursor: pointer;
  }
  .nav_gf123 ul {
    display: none;
    flex-direction: column;
    background-color: var(--color-bg);
    position: absolute;
    right: 0;
    top: 60px;
    box-shadow: 0 0 10px var(--color-shadow);
    border: 1px solid var(--color-border);
  }
  .nav_gf123.open ul {
    display: flex;
    z-index: 999;
  }
}
