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

  body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
  }

  header {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    width: 100%;
  }

  .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .hidden {
    display: none;
  }

  @media (min-width: 768px) {
    .header__wrapper .md-hidden {
      display: none;
    }

    .header__wrapper .menu {
      display: block;
    }
  }

  .z-50 {
    z-index: 50;
  }

  .header__wrapper .menu-burger {
    cursor: pointer;
    border: 0;
    background-color: #000000;
  }

  .brand a {
    text-decoration: none;
    color: #ffffff;
  }

  .brand h1 {
    font-size: 24px;
    font-weight: bold;
  }

  .menu ul {
    list-style-type: none;
    display: flex;
  }

  .menu ul li {
    margin-left: 20px;
  }

  .menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

  .menu ul li a:hover {
    color: #2A9D90;
  }

  .menu ul li a.active {
    color: #2A9D90;
  }
  section {
    display: flex;
    justify-content: center;
    width: 100vw;
    margin-top: 50px;
  }

  .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .subtitle {
    font-size: 14px;
    color: gray;
    margin-bottom: 20px;
  }

  .tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .tab {
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
  }

  .tab.active {
    background-color: #000;
    color: #fff;
  }

  .table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
  }

  .table th, .table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  .table th {
    color: gray;
    font-size: 13px;
  }

  .details {
    display: none;
  }

  .details.active {
    display: table-row;
  }

  .bar-chart, .line-chart {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: -15px;
  }

  .line-chart {
    min-height: 600px;
  }

  footer {
    background-color: #F4F4F5;
    color: #000000;
    padding: 20px 0;
    width: 100%;
  }

  .footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer__wrapper .address h2 {
    margin-bottom: 20px;
  }