
  .container-area {
    max-width: 1200px;
    margin: auto;
  }
  .container-area .title{
    text-align: center;
    padding: 0px 10px;
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
  }
  .container-area .flex-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .container-area table {
    border-collapse: collapse;
    border: 2px solid #2176f7;
    flex: 1;
    font-family: system-ui;
  }
  .container-area th, .container-area td {
    border: 1px solid #ccc;
    padding: 12px 16px;
    text-align: center;
    font-size: 16px;
  }
  .container-area th {
    background-color: #2176f7;
    color: white;
    font-weight: normal;
    line-height: 1.2;
  }
  .container-area th:nth-child(2) {
    font-weight: normal;
    font-size: 12px;
  }
  .container-area tr:nth-child(even) {
    background-color: #f7f7f7;
  }
  .right-content {
    max-width: 520px;
    font-size: 16px;
    flex: 1;
  }
  .right-content h2 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .right-content p {
    margin: 8px 0;
  }
  .right-content p strong {
    font-weight: 700;
  }
  .checkmark {
    color: #2176f7;
    font-weight: 700;
    margin-right: 6px;
  }
  .container-area .btn {
    margin-top: 20px;
    display: inline-block;
    border: 2px solid #2176f7;
    color: #2176f7;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s, color 0.3s;
  }
  .container-area .btn:hover {
    background-color: #2176f7;
    color: white;
  }
  .terms {
    margin-top: 8px;
    font-size: 12px;
    color: #2176f7;
    cursor: pointer;
    user-select: none;
  }
  .container-area hr {
    margin: 60px 0 40px;
    border: none;
    border-top: 1px solid #ccc;
  }
  .rewards-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    font-size: 42px;
    line-height: 50px;
  }
  .rewards-desc {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
  }
  .advantages {
    display: flex;
    justify-content: space-evenly;
    gap: 80px;
    flex-wrap: wrap;
    text-align: center;
  }
  .advantage-item {
    max-width: 27%;
  }
  .advantage-icon {
    color: #2176f7;
    font-size: 48px;
    margin-bottom: 12px;
  }
  .advantage-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .advantage-desc {
    font-size: 16px;
    color: #222;
    line-height: 1.4;
  }
  @media screen and (max-width: 800px){
    .advantage-item {
        max-width: 80%;
    }
    .right-content{
        padding: 0 10px;
    }
    .container-area .flex-row{
      padding: 15px;
    }
  }