 .fee {
    max-width: 800px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .fee-buttons {
    display: flex;
    justify-content: space-around;
    background: #e5e7eb;
    border-bottom: 2px solid #ccc;
  }

  .fee-buttons button {
    flex: 1;
    padding: 16px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
  }

  .fee-buttons button.active {
    background: #ffffff;
    color: #084972;
    border-bottom: 3px solid #084972;
  }

  .fee-content {
    padding: 20px;
    display: none;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }

  .fee-content.active {
    display: block;
  }




  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
  }

  th, td {
    border: 1px solid #ccc;
    padding: 10px 14px;
    text-align: left;
  }

  th {
    background-color: #f0f0f0;
    color: #084972;
  }

  caption {
    caption-side: top;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: black;
  }