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

.prd-main {
    background: #F5F5F5;
}

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

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

.prd-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;
}

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

.prd-breadcrumbs-sep {
    font-size: 16px;
    color: #767676;
    margin: 0 8px;
}

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

.prd-row-top {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 24px;
}

.prd-info-card {
    flex: 1;
    min-height: 260px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.prd-info-image {
    flex-shrink: 0;
    width: 320px;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.prd-info-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.prd-info-text {
    flex: 1;
    padding: 28px 32px 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prd-info-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #000000;
    margin: 0;
}

.prd-info-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

.prd-visit-card {
    aspect-ratio: 385 / 260;
    min-height: 260px;
    background: #1D3A2A;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.prd-visit-bg {
    position: absolute;
    top: -40px;
    right: -20px;
    width: 200px;
    height: auto;
    pointer-events: none;
}

.prd-visit-content {
    position: relative;
    z-index: 2;
    padding: 28px 28px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.prd-visit-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    margin: 0;
    width: 250px;
}

.prd-visit-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.85;
}

.prd-visit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 305px;
    height: 50px;
    border-radius: 6px;
    border: none;
    background: #EA8F13;
    box-shadow: 0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset,
    0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: auto;
}

.prd-visit-btn:hover {
    background: #F5A030;
}

.prd-tabs-section {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px;
}

.prd-tabs-list {
    flex: 0 0 298px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prd-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 298px;
    min-height: 112px;
    padding: 0 10px 0 32px;
    box-sizing: border-box;
    border: none;
    background: #F5F5F5;
    cursor: pointer;
    text-align: left;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: background 0.2s;
    position: relative;
}

.prd-tab:first-child {
    border-top-left-radius: 16px;
}

.prd-tab:last-child {
    border-bottom-left-radius: 16px;
}

.prd-tab.active {
    background: #FFFFFF;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.prd-tab-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    object-fit: contain;
}

.prd-tab-icon--color {
    filter: grayscale(1);
}

.prd-tab.active .prd-tab-icon--color {
    filter: unset;
}

.prd-tab-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #000000;
}

.prd-panels-wrap {
    flex: 1;
    min-width: 0;
}

.prd-panel {
    display: none;
}

.prd-panel.active {
    display: block;
}

.prd-mobile-acc-btn {
    display: none;
}

.prd-panel-body {
    background: #FFFFFF;
    border-radius: 0 10px 10px 10px;
    padding: 32px 35px;
    box-sizing: border-box;
}

.prd-panel-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #000000;
    margin: 0 0 20px;
}

.prd-panel-img {
    width: 100%;
    height: 303px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 20px;
}

.prd-panel-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 10px;
}

.prd-panel-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 12px;
}

.prd-panel-list {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 12px;
    padding-left: 20px;
}

.prd-panel-list li {
    margin-bottom: 6px;
}

.prd-panel-list-inner {
    padding-left: 20px;
    margin-top: 6px;
    list-style-type: decimal;
}

.prd-panel-list-inner li {
    margin-bottom: 4px;
}

.prd-video-section {
    width: calc(100% - 298px);
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-left: 298px;
}

.prd-video-left {
    flex: 1;
    min-width: 0;
}

.prd-video-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #000000;
    margin: 0 0 16px;
}

.prd-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.prd-video-img {
    width: 100%;
    /*height: 492px;*/
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: filter 0.3s ease;
}

.prd-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(72, 146, 78, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.prd-video-play svg {
    margin-left: 4px;
}

.prd-video-wrap:hover .prd-video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.prd-video-wrap:hover .prd-video-img {
    filter: brightness(0.85);
}

.prd-promo-card {
    position: relative;
    width: calc(100% - 298px);
    margin-left: 298px;
    min-height: 282px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.prd-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.prd-promo-bg--mobile {
    display: none;
}

.prd-promo-bg--desktop {
    display: block;
}

.prd-promo-content {
    position: relative;
    z-index: 2;
    padding: 32px 52px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

.prd-promo-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

.prd-promo-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
}

.prd-promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 173px;
    height: 50px;
    border-radius: 6px;
    border: none;
    background: #EA8F13;
    box-shadow: 0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset,
    0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
    padding: 15px 40px;
    box-sizing: border-box;
    white-space: nowrap;
}

.prd-promo-btn:hover {
    background: #F5A030;
}

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

@media (max-width: 1920px) {
    .prd-promo-card {
        min-height: 0;
        aspect-ratio: 1300 / 400;
    }
}

@media (max-width: 1300px) {
    .prd-promo-content {
        padding: 28px 40px;
        max-width: 380px;
    }

    .prd-promo-title {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 1100px) {
    .prd-info-image {
        width: 240px;
    }

    .prd-info-img {
        object-position: right center;
    }

    .prd-visit-bg {
        right: -60px;
    }

    .prd-tabs-list {
        flex: 0 0 240px;
    }

    .prd-tab {
        width: 240px;
        min-height: 100px;
        padding: 0 10px 0 20px;
        gap: 12px;
    }

    .prd-tab-icon {
        width: 48px;
        height: 48px;
    }

    .prd-panel-title {
        font-size: 24px;
        line-height: 32px;
    }

    .prd-promo-content {
        padding: 24px 32px;
        max-width: 340px;
    }

    .prd-promo-title {
        font-size: 22px;
        line-height: 30px;
    }

    .prd-promo-btn {
        font-size: 14px;
        height: 44px;
        width: 150px;
        padding: 12px 24px;
    }

    .prd-video-section,
    .prd-promo-card {
        width: calc(100% - 240px);
        margin-left: 240px;
    }

    .prd-info-image {
        display: none;
    }
}

@media (max-width: 900px) {
    .prd-promo-content {
        padding: 20px 24px;
        max-width: 300px;
    }

    .prd-promo-title {
        font-size: 19px;
        line-height: 26px;
    }

    .prd-promo-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .prd-promo-btn {
        font-size: 13px;
        height: 40px;
        width: 140px;
        padding: 10px 20px;
    }
}

@media (max-width: 860px) {
    .prd-info-image {
        width: 180px;
    }

    .prd-visit-bg {
        right: -60px;
        top: -10px;
    }

    .prd-tabs-list {
        flex: 0 0 200px;
    }

    .prd-tab {
        width: 200px;
        min-height: 90px;
        padding: 0 8px 0 16px;
        gap: 10px;
    }

    .prd-tab-icon {
        width: 40px;
        height: 40px;
    }

    .prd-tab-label {
        font-size: 12px;
        line-height: 14px;
    }

    .prd-panel-body {
        padding: 20px;
    }

    .prd-panel-title {
        font-size: 20px;
        line-height: 28px;
    }

    .prd-panel-img {
        height: 220px;
    }

    .prd-video-section,
    .prd-promo-card {
        width: calc(100% - 200px);
        margin-left: 200px;
    }
}

@media (max-width: 768px) {

    .prd-video-section,
    .prd-promo-card {
        width: 100%;
        margin-left: 0;
    }

    .prd-container {
        padding: 0 16px 32px;
    }

    .prd-breadcrumbs {
        padding: 16px 0;
    }

    .prd-breadcrumbs a,
    .prd-breadcrumbs-sep,
    .prd-breadcrumbs-current {
        font-size: 14px;
    }

    .prd-row-top {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .prd-info-card {
        flex-direction: column;
        min-height: auto;
        align-items: flex-start;
    }

    .prd-info-text {
        order: 1;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .prd-info-image {
        display: none;
    }

    .prd-info-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .prd-visit-card {
        aspect-ratio: unset;
        flex: none;
        width: 100%;
        min-height: 200px;
        display: flex;
        align-items: stretch;
    }

    .prd-visit-bg {
        top: -50px;
        right: -10px;
        width: 160px;
    }

    .prd-visit-content {
        padding: 24px 20px;
        width: 100%;
        height: auto;
        justify-content: space-between;
    }

    .prd-visit-title {
        font-size: 18px;
        line-height: 24px;
        max-width: 170px;
        width: 200px;
    }

    .prd-visit-btn {
        max-width: 100%;
        height: 44px;
    }

    .prd-tabs-section {
        flex-direction: column;
        gap: 0;
        margin-bottom: 16px;
    }

    .prd-tabs-list {
        display: none;
    }

    .prd-panels-wrap {
        width: 100%;
    }

    .prd-panel {
        display: block;
        margin-bottom: 8px;
    }

    .prd-mobile-acc-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 86px;
        background: #FFFFFF;
        border: 1px solid transparent;
        border-radius: 8px;
        padding: 0 16px;
        box-sizing: border-box;
        cursor: pointer;
        gap: 12px;
        transition: border-color 0.2s;
        margin-bottom: 0;
    }

    .prd-mobile-acc-btn.active {
        border-color: #48924E;
        border-radius: 8px;
        border-bottom: 1px solid #48924E;
    }

    .prd-mobile-acc-left {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .prd-mobile-acc-left span {
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
        text-transform: uppercase;
        color: #000000;
        text-align: left;
    }

    .prd-mobile-acc-btn .prd-tab-icon {
        width: 44px;
        height: 44px;
    }

    .prd-mobile-acc-btn .prd-tab-icon--color {

    }

    .prd-mobile-acc-btn.active .prd-tab-icon--color {
        filter: unset;
    }

    .prd-acc-arrow {
        flex-shrink: 0;
        transform: rotate(180deg);
        transition: transform 0.3s;
    }

    .prd-mobile-acc-btn.active .prd-acc-arrow {
        transform: rotate(0deg);
    }

    .prd-panel-body {
        display: none;
        border-radius: 0 0 8px 8px;
        padding: 20px 16px;
        border: none;
    }

    .prd-panel.acc-open .prd-panel-body {
        display: block;
    }

    .prd-panel-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 14px;
    }

    .prd-panel-img {
        height: 200px;
        margin-bottom: 16px;
    }

    .prd-panel-subtitle {
        font-size: 16px;
    }

    .prd-panel-text {
        font-size: 14px;
        line-height: 22px;
    }

    .prd-panel-list {
        font-size: 14px;
        line-height: 22px;
    }

    .prd-video-section {
        flex-direction: column;
    }

    .prd-video-left {
        width: 100%;
    }

    .prd-video-img {
        height: auto;
    }

    .prd-video-play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .prd-video-title {
        font-size: 22px;
        line-height: 30px;
    }

    .prd-promo-card {
        height: auto;
        min-height: 450px;
        aspect-ratio: unset;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .prd-promo-bg--desktop {
        display: none;
    }

    .prd-promo-bg--mobile {
        display: block;
        object-position: center bottom;
    }

    .prd-promo-content {
        padding: 38px 32px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .prd-promo-title {
        font-size: 24px;
        line-height: 32px;
    }

    .prd-promo-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .prd-promo-btn {
        width: auto;
        min-width: 150px;
        height: 46px;
        font-size: 15px;
        padding: 12px 28px;
    }

    .prd-form-container {
        padding: 0;
    }


}

@media (max-width: 480px) {
    .prd-breadcrumbs a,
    .prd-breadcrumbs-sep,
    .prd-breadcrumbs-current {
        font-size: 13px;
    }

    .prd-info-title {
        font-size: 18px;
        line-height: 24px;
    }

    .prd-info-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .prd-visit-title {
        font-size: 16px;
        line-height: 22px;
    }

    .prd-panel-title {
        font-size: 18px;
        line-height: 26px;
    }

    .prd-panel-img {
        height: 180px;
    }

    .prd-video-img {
        height: auto;
    }

    .prd-video-title {
        font-size: 20px;
        line-height: 28px;
    }

    .prd-promo-title {
        font-size: 20px;
        line-height: 26px;
    }

    .prd-promo-card {
        min-height: 450px;
    }

    .prd-promo-content {
        padding: 30px 26px;
    }
}
