.company-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Montserrat", Arial, sans-serif;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.company-table thead {
    background: #101010;
    color: #ffaa17;
}

.company-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.company-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #101010;
}

.company-table tr:nth-child(even) {
    background: #fafafa;
}

.company-table td:first-child {
    font-weight: 600;
    width: 30%;
}

.company-table a {
    color: #ffaa17;
    text-decoration: none;
}

.company-table a:hover {
    text-decoration: underline;
}

@media(max-width: 768px) {
    .company-table td:first-child {
        width: 100%;
        display: block;
        font-weight: 700;
        margin-bottom: 4px;
    }
    .company-table td:last-child {
        display: block;
        margin-bottom: 12px;
    }
    .company-table tr {
        display: block;
        border-bottom: 1px solid #ececec;
        padding: 10px 0;
    }
    .company-table thead {
        display: none;
    }
}