    .accordion-section {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      margin: 1em 0;
      background: white;
    }

    .accordion-header {
      background-color: #e9e9e9;
      cursor: pointer;
      padding: 14px 20px;
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid #e9e9e9;
      transition: background-color 0.2s ease;
    }

    .accordion-header:hover {
      background-color: #69727d;
      color:white;
    }

    .accordion-content {
      display: none;
      padding: 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th, td {
      padding: 12px 16px;
      text-align: left;
    }

    th {
      background: #f7f7f7;
      border-bottom: 2px solid #ddd;
      font-weight: 600;
      color: #333;
    }

    tr {
      border-bottom: 1px solid #eee;
    }

    tr:hover {
      background-color: #f0f0f0;
    }