.ingredients-content {
    padding: 24px;
    margin-top: 8px;
    margin-bottom: 45px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
    color: #000000;
    font-family: var(--font-secondary);
}

.ingredients-title {
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 30px;
    line-height: 120%;
}

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.ingredients-table td {
    height: 72px;
    font-size: 20px;
    line-height: 120%;
    vertical-align: middle;
    border-bottom: 1px solid #000000;
    padding: 0;
}

.ingredients-table tr:first-child td:nth-child(2) {
    text-align: center;
    /* "One Capsule Provides" по центру в першому рядку */
}

.ingredients-table tr:first-child td:nth-child(3) {
    text-align: right;
    /* "% NRV*" по правому краю в першому рядку */
}

.ingredients-table td:nth-child(1) {
    text-align: left;
    /* Інгредієнти по лівому краю */
}

.ingredients-table td:nth-child(2) {
    text-align: center;
    /* Міліграми по центру */
}

.ingredients-table td:nth-child(3) {
    text-align: right;
    /* % по правому краю */
}

.ingredients-table td.bold {
    font-weight: 700;
    font-size: 18px;
}

.ingredients-note {
    font-size: 18px;
    line-height: 120%;
    margin-top: 24px;
}

@media (min-width: 1024px) {
    .ingredients-table td {
        font-size: 22px;
    }
}