@charset "utf-8";

/* Price page specific styles - inherits header/footer from style.css */

.main {
  margin: 40px auto;
  margin-top: 120px;
  padding: 0 20px;
  max-width: 900px;
}

.div-price {
  text-align: left;
  display: block;
  width: 100%;
}

.h1 {
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 2rem;
  text-align: center;
  color: var(--primary-color);
}

table {
  margin-bottom: 2em;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

table th,
table td {
  padding: 15px 20px;
  border: 1px solid #E0F2F7;
  text-align: left;
}

table th {
  background-color: #F0FAFC;
  color: var(--primary-color);
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  padding-bottom: 1em;
  padding-top: 2em;
  color: var(--primary-color);
}

p {
  line-height: 1.8em;
  font-size: 1rem;
}

aside {
  padding-top: 1em;
  color: var(--text-light);
}

.attention {
  padding-top: 2em;
  color: var(--text-color);
  font-weight: 500;
  line-height: 2;
}

.reference {
  padding-bottom: 0.5em;
}

.reference2 {
  text-align: right;
  font-size: 0.9em;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .main {
    margin-top: 50px;
  }

  .h1 {
    font-size: 1.5rem;
  }

  table,
  table tbody,
  table tr,
  table th,
  table td {
    display: block;
    width: 100%;
  }

  table th {
    background-color: #E0F2F7;
    border-bottom: none;
  }

  table td {
    border-top: none;
    padding-top: 10px;
  }
}