@font-face {
    font-family: "NanumRoundEB";
    font-weight: 800;
    font-style: normal;
    src: url(../fonts/NanumSquareRoundEB.woff) format("woff");
  }
  
  .pricetable {
    padding: 130px 30px;
  }
  
  .pricetable_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .pricetable_title {
    font-family: 'NanumRoundEB';
    font-size: 34px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .pricetable_table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .table_column {
    width: 306px;
    height: 519px;
    border: 1px solid #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 32.5px -7px #A3A3A340;
  }

  .table_column:hover {
    border: 1px solid #C4CDFF;
    box-shadow: 0px 4px 32.5px -7px #6979DB4D;
  }
  
  .table_column.header {
    width: 204px;
    height: 519px;
    font-family: 'NanumRoundEB';
    background: #6979DB;
    color:#FFFFFF;
    border-radius: 14px;
    box-shadow: 0px 4px 32.5px -7px #A3A3A340;
  }
  
  .table_column .title {
    font-size: 24px;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #FFFFFF;
  }
  
  .header .cell {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    /* line-height: 48px; */
    letter-spacing: -0.03em;  
    height: 124px; /* height 고정 */  
    margin-top: 5px;
  }

  .header .cell03 {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    /* line-height: 48px; */
    letter-spacing: -0.03em;  
    height: 124px; /* height 고정 */  
    margin-top: 5px;
  }
  .header .cell04 {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    /* line-height: 48px; */
    letter-spacing: -0.03em;  
    height: 124px; /* height 고정 */  
    margin-top: 5px;
  }
  .table_column .cell03 span {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 8px;
    letter-spacing: -0.03em;
 }
 .table_column .cell04 span {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 6px;
  letter-spacing: -0.03em;
}

 .table_column .cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 30px 20px; */
  text-align: center;
  border-bottom: 1px solid #CDCDCD;
  font-family: 'Pretendard';
  font-size: 24px;
  font-weight: 700;
  /* line-height: 48px; */
  letter-spacing: -0.03em;
  height: 124px; /* height 고정 */
}
  
  .pricetable_text {
    font-family: 'Pretendard';
    text-align: center;
    color:#777777;
    font-size: 14px;
    line-height: 1.6;
  }

  /* bold체 강제 랜더링 */
.pricetable_text strong {
  font-weight: bold; /* strong 태그에 굵기 적용 */
}
  
  /* 태블릿 (최대 1200px) */
  @media screen and (max-width: 1200px) {
    .pricetable_table {
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .table_column.header {
      width: 100%;
      height: auto;
      flex-direction: row;
      border-radius: 14px;
    }

    .table_column {
      width: 100%;
      height: 101px;
      flex-direction: row;
      border-radius: 14px;
    }
    
    .header .cell {
      border-bottom: none;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .pricetable_title {
      font-size: 28px;
    }
  }
  
  /* 모바일 (최대 767px) */
  @media screen and (max-width: 767px) {
    .pricetable {
      padding: 40px 0;
    }
    
    .pricetable_title {
      font-size: 24px;
      margin-bottom: 30px;
    }

    .table_column.header {
      flex-direction: row;
    }
    
    .table_column {
      width: 100%;
      height: 101px;
      flex-direction: row;
      border-radius: 14px;
    }
    

    .header .cell {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 18px;
    }
    
    .table_column .title {
      font-size: 20px;
      padding: 20px;
    }
    
    .table_column .cell {
      padding: 0;
      font-size: 16px;
    }
    
    .pricetable_text {
      font-size: 18px;
      font-display: center;
    }
  }