* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f4f7fb;
    color: #162033;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
  }
  
  header {
    margin-bottom: 28px;
  }
  
  h1 {
    margin: 0;
    font-size: 36px;
  }
  
  p {
    color: #607089;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
  }
  
  .card,
  .panel,
  .search-box {
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(22, 32, 51, 0.08);
  }
  
  .card {
    padding: 22px;
  }
  
  .card span {
    display: block;
    color: #607089;
    margin-bottom: 8px;
  }
  
  .card strong {
    font-size: 28px;
  }
  
  .panel {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .search-box {
    display: flex;
    gap: 12px;
    padding: 18px;
    margin-bottom: 24px;
  }
  
  input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #d8deea;
    border-radius: 12px;
    font-size: 16px;
  }
  
  button {
    padding: 14px 22px;
    border: 0;
    border-radius: 12px;
    background: #1f5eff;
    color: white;
    font-weight: 700;
    cursor: pointer;
  }
  
  button:hover {
    background: #1649c7;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th,
  td {
    padding: 13px 10px;
    border-bottom: 1px solid #e7ebf3;
    text-align: left;
  }
  
  th {
    color: #607089;
    font-size: 13px;
    text-transform: uppercase;
  }
  
  .reasons {
    display: grid;
    gap: 12px;
  }
  
  .reason-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7fb;
    padding: 14px 16px;
    border-radius: 12px;
  }
  
  .reason-item span {
    display: block;
    color: #607089;
    margin-top: 4px;
  }
  
  .reason-item em {
    font-style: normal;
    font-weight: 700;
  }
  
  @media (max-width: 900px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .container {
      padding: 18px;
    }
  
    table {
      font-size: 14px;
    }
  }
  
  @media (max-width: 600px) {
    .cards {
      grid-template-columns: 1fr;
    }
  
    .search-box {
      flex-direction: column;
    }
  }