﻿.my-1rem {
  margin: 1rem auto;
}

.my-5rem {
  margin: 5rem auto;
}

.my-7rem {
  margin: 7rem auto;
}

.mb-1rem {
  margin-bottom: 1rem;
}

.ml-2rem {
  margin-left: 1rem;
}

.ml-3rem {
  margin-left: 2rem;
}

.ml-4rem {
  margin-left: 3rem;
}

h2 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: calc(1.3rem + .6vw);
  font-weight: 500;
  line-height: 1.2;
}

.title {
  margin-bottom: 7rem;
}

.subtitle {
  font-size: calc(1.3rem + .6vw);
  font-weight: 500;
  line-height: 1.2;
}

.my-5 {
  margin: 3rem auto;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #da1e28;
  text-decoration: none;
}

.table-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

.info-table {
  width: 90%;
  max-width: 1200px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 8px 12px;
  vertical-align: top;
  font-size: 14px;
}

.info-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.info-table td {
  background-color: #fff;
  word-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .info-table {
    width: 90%;
  }

  .info-table th,
  .info-table td {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .info-table {
    width: 90%;
  }

  .info-table thead {
    display: none;
  }

  .info-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
  }

  .info-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    font-size: 12px;
  }

  .info-table td::before {
    content: attr(data-label);
    font-weight: bold;
    width: 50%;
    color: #555;
  }
}
