body {
    margin: 0;
    background: #F5F5F5;
    font-family: 'Roboto', Arial, sans-serif;
}

.prv-main {
    background: #F5F5F5;
}

.prv-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.prv-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 0 30px;
    gap: 0;
}

.prv-breadcrumbs a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #767676;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.prv-breadcrumbs a:hover {
    color: #48924E;
}

.prv-breadcrumbs-sep {
    font-size: 16px;
    color: #767676;
    margin: 0 8px;
    white-space: nowrap;
}

.prv-breadcrumbs-current {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

.prv-layout {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.prv-nav {
    flex: 0 0 310px;
    position: sticky;
    top: 20px;
}

.prv-nav-inner {
    background: #FFFFFF;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}

.prv-nav-item {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #303030;
    text-decoration: none;
    display: block;
    padding: 14px 0;
    transition: color 0.2s;
}

.prv-nav-item:hover {
    color: #48924E;
}

.prv-nav-item.active {
    color: #48924E;
}

.prv-nav-divider {
    width: 100%;
    height: 1px;
    background: #E8E8E8;
    flex-shrink: 0;
}

.prv-content {
    flex: 1;
    min-width: 0;
}

.prv-main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #303030;
    margin: 0 0 32px;
}

.prv-section {
    margin-bottom: 36px;
}

.prv-section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #303030;
    margin: 0 0 14px;
}

.prv-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #303030;
    margin: 0 0 10px;
}

.prv-bold {
    font-weight: 700;
}

.prv-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 10px;
}

.prv-list li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #303030;
    margin-bottom: 4px;
}

.prv-link {
    color: #48924E;
    text-decoration: underline;
    word-break: break-all;
}

.prv-link:hover {
    color: #367a3c;
}

@media (max-width: 1024px) {
    .prv-nav {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .prv-container {
        padding: 0 16px 40px;
    }

    .prv-breadcrumbs {
        padding: 20px 0;
    }

    .prv-breadcrumbs a,
    .prv-breadcrumbs-sep,
    .prv-breadcrumbs-current {
        font-size: 13px;
    }

    .prv-layout {
        flex-direction: column;
        gap: 20px;
    }

    .prv-nav {
        flex: none;
        width: 100%;
        position: static;
    }

    .prv-nav-inner {
        padding: 12px 16px;
    }

    .prv-nav-item {
        font-size: 13px;
        padding: 10px 0;
    }

    .prv-main-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .prv-section-title {
        font-size: 16px;
        line-height: 22px;
    }

    .prv-text {
        font-size: 13px;
        line-height: 20px;
    }

    .prv-list li {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .prv-breadcrumbs-current {
        font-size: 12px;
    }

    .prv-main-title {
        font-size: 18px;
        line-height: 26px;
    }

    .prv-section-title {
        font-size: 15px;
        line-height: 20px;
    }
}
