.basic-info-container {
    padding: 12px 16px;
    background-color: #fefefe;
    font-family: '맑은 고딕', sans-serif;
    max-width: 794px;
    max-height: 1123px;
    font-size: 14px;
  }

  .section-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
  }

  .info-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
  }

  .info-box{
    display:flex;
  }

  .info-title {
    font-weight: bold;
    color: #007bff;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .info-question {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .info-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .info-options label {
    font-weight: normal;
    margin-right: 15px;
  }

  .conditional-info {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    display: block;
  }

  .inline-input {
    display: inline-block;
    width: auto;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 14px;
  }

  .copyright-warning {
    background-color: #17375e;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    padding: 8px;
    font-size : 11px;
  }

  .notice-box {
    border: 2px solid #4f81bd;
    background-color: #eef5ff;
    padding: 8px;
    margin-bottom: 40px;
  }

  .notice-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background-color: #4f81bd;
    padding: 12px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .notice-content {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    background-color: white;
    padding: 8px 12px;
  }

  .notice-content strong {
    color: #c00;
    font-weight: bold;
  }

  .notice-p{
    font-size: 14px;
  }

  .birth-select-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
  }
  
  .birth-select-wrapper {
    position: relative;
    flex: 1;
  }
  
  .birth-select-wrapper select {
    width: 100%;
    padding: 12px;
    padding-right: 40px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    appearance: none;
    background-color: #fff;
    box-sizing: border-box;
    cursor: pointer;
  }
  
  .birth-select-wrapper .unit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #555;
    pointer-events: none;
  }
  
  .hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.auto-selected {
  background-color: #e3f2fd;
  padding: 2px 6px;
  border-radius: 3px;
}

.radio-group input[type="radio"]:disabled + span {
  color: #999;
  cursor: not-allowed;
}

.conditional-info {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

  @media (max-width: 576px) {
    .info-options {
      flex-direction: column;
    }

    .info-options label {
      margin-bottom: 5px;
    }

    .notice-box {
      padding: 20px;
    }
  
    .notice-title {
      font-size: 18px;
    }
  
    .notice-content {
      font-size: 14px;
    }
  }