.epc-section {
    background: #F5F7FC url(/snippet-template/E0871611-5975-49CC-997B-F40EEA8A38E7/images/line-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 115px 0;
}

.epc-section .hyk-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ── Header ── */
.epc-header {
    text-align: center;
    margin-bottom: 40px;
}

.epc-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 7px;
    line-height: 28px;
}

.epc-title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 48px;
}

/* ── Table Wrapper ── */
.epc-table-container {
    overflow: auto;
}
.epc-table-wrap {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 0px 1px 1px #00000014;
    min-width: 600px;
}

/* ── Header Row ── */
.epc-thead-row {
    display: flex;
    background-color: #EFF2FA;
}

.epc-thead-row .epc-col-name,
.epc-thead-row .epc-col-detail {
    padding: 14px 20px 15px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 21px;
}
 
 

/* ── Data Rows ── */
.epc-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px dashed #CDCDCD;
    background: #ffffff;
}

.epc-row:last-child {
    border-bottom: none;
}

.epc-row .epc-name-cell,  .epc-thead-row .epc-col-name{
    flex: 0 0 38%;
    width: 38%;
    padding: 18px 20px;
}

.epc-row .epc-detail, .epc-thead-row .epc-col-detail {
    flex: 0 0 62%;
    width: 62%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
}

/* ── Name Cell ── */
.epc-name-cell {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(17, 24, 39, 0.80);
}

.epc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #374151;
}

.epc-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: rgba(17, 24, 39, 0.80);
}

/* ── Detail Cell ── */
.epc-detail {
    font-size: 14px;
    color: rgba(17, 24, 39, 0.80);
    line-height: 23px;
    font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .epc-section {
        padding: 64px 0;
    }

    .epc-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .epc-section {
        padding: 48px 0;
    }

    
    .epc-thead-row .epc-col-name,
    .epc-thead-row .epc-col-detail,
    .epc-row .epc-name-cell,
    .epc-row .epc-detail {
        padding: 14px 16px;
    }
}

 
