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

.srv-main {
    background: #F5F5F5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.srv-visit-card {
    flex: 0 0 calc((100% - 24px) / 3);
    min-height: 260px;
    background: #1D3A2A;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.srv-tab.active .srv-tab-icon--color {
    filter: grayscale(0);
}

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

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

.srv-panel {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

.srv-promo-card {
    position: relative;
    width: 100%;
    min-height: 282px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

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

.faq-cta {
    margin-bottom: 0;
    overflow: visible;
    padding-top: 40px;
}

.faq-cta-inner {
    background: linear-gradient(100deg, #1D3A2A 55%, #A8A180 100%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: visible;
    min-height: 380px;
}

.faq-cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: 100px;
    padding-bottom: 64px;
}

.faq-cta-photo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.faq-cta-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.faq-cta-decor {
    position: absolute;
    width: 320px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.faq-cta-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.faq-cta-person-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
}

.faq-cta-person-role {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    text-align: center;
}

.faq-cta-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    margin-left: 120px;
}

.faq-cta-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.faq-cta-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    margin: 0 0 24px;
}

.faq-cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
}

.faq-cta-phone {
    width: 100%;
    height: 49px;
    border-radius: 6px;
    border: none;
    background: #FFFFFF;
    box-shadow: 0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset,
    0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset;
    padding: 0 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

.faq-cta-phone::placeholder {
    color: #999;
}

.faq-cta-phone:focus {
    box-shadow: 0 0 0 2px #48924E,
    0px -4px 11px 0px rgba(0, 0, 0, 0.3) inset,
    0px 6px 8px 0px rgba(255, 255, 255, 0.35) inset;
}

.faq-cta-submit {
    width: 100%;
    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;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.25s;
}

.faq-cta-submit:hover {
    background: #FFA326;
}

.faq-cta-consent {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    cursor: pointer;
}

.faq-cta-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #48924E;
    cursor: pointer;
    flex-shrink: 0;
}

.faq-cta-consent span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #D1E2D5;
}

.faq-cta-consent a {
    color: #D1E2D5;
    text-decoration: underline;
}

.faq-cta-right {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.faq-cta-house {
    width: 410px;
    height: auto;
    display: block;
}

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

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

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

@media (max-width: 1100px) {
    .srv-promo-content {
        padding: 24px 32px;
        max-width: 340px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-cta-left {
        margin-left: 55px;
    }

    .faq-cta-center {
        margin-left: 85px;
    }

    .faq-cta-form {
        max-width: 270px;
    }

    .faq-cta-house {
        width: 340px;
    }
}

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

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

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

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

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

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

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

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

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

    .faq-cta-left {
        margin-left: 40px;
    }

    .faq-cta-photo {
        width: 150px;
        height: 150px;
    }

    .faq-cta-decor {
        width: 280px;
    }

    .faq-cta-center {
        margin-left: 40px;
    }

    .faq-cta-title {
        font-size: 20px;
    }

    .faq-cta-subtitle {
        font-size: 15px;
    }

    .faq-cta-form {
        max-width: 240px;
    }

    .faq-cta-house {
        width: 280px;
    }
}

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

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

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

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

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

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

    .srv-info-image {
        order: 2;
        width: 100%;
        height: 200px;
        position: relative;
        flex-shrink: 0;
        margin-top: 16px;
    }

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

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

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

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

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

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

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

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

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

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

    .srv-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 0 16px;
        box-sizing: border-box;
        cursor: pointer;
        gap: 12px;
        transition: border-color 0.2s;
        margin-bottom: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-cta {
        padding-top: 0;
    }

    .srv-form-container {
        padding: 0 16px;
    }

    .faq-cta-inner {
        flex-direction: column !important;
        align-items: center !important;
        padding: 30px 0 0 0 !important;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
        overflow: hidden !important;
        min-height: unset !important;
        position: relative !important;
    }

    .faq-cta-left {
        order: 1;
        width: 100%;
        margin: 0 0 20px 0 !important;
        padding: 0 20px !important;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-bottom: 0 !important;
    }

    .faq-cta-photo {
        width: 150px;
        height: 150px;
    }

    .faq-cta-decor {
        width: 300px;
    }

    .faq-cta-center {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0 !important;
        padding: 0 20px 30px 20px !important;
        box-sizing: border-box;
    }

    .faq-cta-title {
        font-size: 22px;
        line-height: 28px;
        text-align: center;
    }

    .faq-cta-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .faq-cta-form {
        max-width: 100%;
        width: 100%;
    }

    .faq-cta-phone {
        height: 46px;
    }

    .faq-cta-submit {
        height: 46px;
        font-size: 15px;
    }

    .faq-cta-consent {
        justify-content: center;
    }

    .faq-cta-right {
        order: 3;
        position: static !important;
        display: block;
        width: 100% !important;
        overflow: hidden;
        height: 280px;
    }

    .faq-cta-house {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center 0%;
        display: block;
    }
}

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

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

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

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

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

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

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

    .srv-promo-card {
        min-height: 500px;
    }

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