How to insert gap between columns in table

I want to create this table layout. How can I add a gap between columns, similar to the design? I used border-collapse: separate, but then the border in tbody are hard to adjust, so I changed to collapse. Is this a good approach for creating this table, or should I not use ? I tried to find the answer here, but coulnd’t find any satisfying answer

I created this table

.table-container {
  overflow: hidden;
}

[data-module=data-table] {
  border-collapse: collapse;
  border-spacing: 16px 0;
  table-layout: fixed;
}

[data-module=data-table] thead {
  margin-top: 40px;
}

[data-module=data-table] thead tr:first-of-type {
  border-bottom: 1px solid #242424;
  position: relative;
}

[data-module=data-table] thead tr:first-of-type th {
  color: #242424;
  /* Desktop/Fira Sans/H2 Regular */
  font-family: "Bree Serif";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 36.4px */
  text-align: left;
  background-color: #ddd;
  padding: 0 32px;
  height: 5rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

@media (max-width: 768px) {
  [data-module=data-table] thead tr:first-of-type th {
    /* Mobile/Fira Sans/H2 Regular */
    font-family: "Bree Serif";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 26px */
  }
}

[data-module=data-table] thead tr:first-of-type th:first-of-type {
  color: #242424;
  /* Desktop/Fira Sans/Copy 1 Regular */
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  background-color: white;
}

@media (max-width: 768px) {
  [data-module=data-table] thead tr:first-of-type th:first-of-type {
    /* Mobile/Fira Sans/Copy 1 Regular */
    font-size: 1rem;
  }
}

[data-module=data-table] thead tr:first-of-type th.highlighted {
  background-color: #006366;
  color: #fff;
}

[data-module=data-table] thead tr:first-of-type::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #242424;
}

[data-module=data-table] thead .table-header-content {
  color: #242424;
  /* Desktop/Fira Sans/Copy 1 Regular */
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  text-align: left;
}

@media (max-width: 768px) {
  [data-module=data-table] thead .table-header-content {
    /* Mobile/Fira Sans/Copy 1 Regular */
    font-size: 1rem;
  }
}

[data-module=data-table] thead .table-header-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  [data-module=data-table] thead .table-header-content h3 {
    font-size: 1.5rem;
  }
}

[data-module=data-table] tbody tr td,
[data-module=data-table] tbody tr th {
  position: relative;
}

[data-module=data-table] tbody tr td>.cell-content,
[data-module=data-table] tbody tr th>.cell-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  align-items: center;
  min-height: 144px;
  text-align: center;
}

[data-module=data-table] tbody tr td::after,
[data-module=data-table] tbody tr th::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #242424;
}

[data-module=data-table] tbody tr td {
  border-left: 1px solid #242424;
  border-right: 1px solid #242424;
}

[data-module=data-table] tbody tr:last-child td::after {
  display: none;
}

[data-module=data-table] tbody tr:first-child {
  border-top: 1px solid #242424;
}

[data-module=data-table] tbody tr:last-child {
  border-bottom: 1px solid #242424;
}

[data-module=data-table] tbody th>div {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-module=data-table] tbody th>div>div {
  text-align: left;
}

[data-module=data-table] tbody th>div>div p:first-of-type {
  color: #242424;
  /* Desktop/Fira Sans/Copy 1 SemiBold */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
}

@media (max-width: 768px) {
  [data-module=data-table] tbody th>div>div p:first-of-type {
    /* Mobile/Fira Sans/Copy 1 SemiBold */
    font-size: 16px;
    line-height: 150%;
    /* 24px */
  }
}

[data-module=data-table] tbody th>div>div p:last-of-type {
  color: #515151;
  /* Desktop/Fira Sans/Hinweistext */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  color: #515151;
}

@media (max-width: 768px) {
  [data-module=data-table] tbody th>div>div p:last-of-type {
    /* Mobile/Fira Sans/Hinweis */
    font-size: 12px;
    line-height: 150%;
    /* 18px */
  }
}

[data-module=data-table] tbody td.highlighted-column {
  border-left: 2px #006366 solid;
  border-right: 2px #006366 solid;
}

[data-module=data-table] tbody td.highlighted-column:first-of-type {
  background-color: red;
}
<div class="table-container">
    <table data-module="data-table">
        <thead>
            <tr>
                <th>Leistungsbereich</th>
                <th>BASIS</th>
                <th class="highlighted">OPTIMAL</th>
                <th>PLUS</th>
            </tr>
            <tr>
                <th colspan="4">
                    <div class="table-header-content">
                        <h3>Table Headline</h3>
                        <p>Lorem ipsum dolor sit amet, consectetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>
                        <ul>
                            <li>Lorem Ipsum dolor sit amet</li>
                            <li>Consetetur sadipscing elitr, sed diam nonumy eirmod</li>
                            <li>Lorem Ipsum dolor sit amet</li>
                        </ul>
                    </div>
                </th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th>
                    <div>
                        <div>
                            <p>Column Headline</p>
                            <p>Hinweis text</p>
                        </div>
                    
                    </div>
                </th>
                <td>
                    <div class="cell-content">-</div>
                </td>
                <td class="highlighted-column">
                    <div class="cell-content">
                        <div class="checkmark">✔</div>
                        <p>Lorem, ipsum dolor.</p>
                        <p>Hinweis</p>
                    </div>
                </td>
                <td>
                    <div class="cell-content checkmark">✔</div>
                </td>
            </tr>
            <tr>
                <th>
                    <div>
                        <div>
                            <p>Column Headline</p>
                            <p>Hinweis text</p>
                        </div>
                        
                    </div>
                </th>
                <td>
                    <div class="cell-content">-</div>
                </td>
                <td class="highlighted-column">
                    <div class="cell-content checkmark">✔</div>
                </td>
                <td>
                    <div class="cell-content checkmark">✔</div>
                </td>
            </tr>
            <tr>
                <th>
                    <div>
                        <div>
                            <p>Column Headline</p>
                            <p>Hinweis text</p>
                        </div>
                        
                    </div>
                </th>
                <td>
                    <div class="cell-content">-</div>
                </td>
                <td class="highlighted-column">
                    <div class="cell-content checkmark">✔</div>
                </td>
                <td>
                    <div class="cell-content">-</div>
                </td>
            </tr>
        </tbody>
    </table>
</div>

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật