.t822__btn, .t-title, .t-text, .t-descr, .t-name, .t-link, .t-uptitle, .t-menu__link-item, .t-menu__link-item * {
    text-decoration: none !important;
}
/* Inline Styles Extracted from Pages */

/* Hero Title Styles */
.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    opacity: 1;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    /* background: rgba(255, 255, 255, 0.9); */
    padding: 10px;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    min-width: 150px;
    width: auto;
    overflow: visible;
    white-space: normal;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0b690;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    width: auto;
    min-width: fit-content;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e0b690, #d4a574);
    border: none;
    margin: 10px auto;
}

.stat-description {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom Slider Styles */
.custom-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: black;
}

.custom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.custom-slide.active {
    opacity: 1;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #e0b690;
    border-color: #e0b690;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Content Overlay */
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 5;
    opacity: 1;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInGradient {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.stat-item {
    opacity: 1;
}

@keyframes fadeInStat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
}



@keyframes fadeInSubtitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-container {
        gap: 20px;
        margin: 20px 0;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: clamp(24px, 8vw, 48px);
        margin: 0 0 30px 0;
    }
    
    .slider-arrow {
        padding: 10px;
        font-size: 20px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
    }
    
    .slider-nav {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Extracted inline styles from index.php */

/* Body styles */
.t-body {
    margin: 0;
}

/* Header styles */
#rec564000800 .t228 {
    position: relative;
    width: 100%;
    z-index: 1000;
}

#rec564000800 .t228__positionfixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    height: 80px;
    z-index: 1000;
}

#rec564000800 .t228__maincontainer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Logo styles */
#rec564000800 .t228__leftcontainer {
    display: flex;
    align-items: center;
    flex: 1;
}

.tmenu-mobile__imglogo {
    max-width: 210px;
    width: 210px;
}

#rec564000800 .t228__imglogo {
    max-width: 210px;
    width: 210px;
    min-width: 210px;
    height: auto;
    display: block;
}

/* Menu burger styles */
.t-menuburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.t-menuburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.tmenu-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    height: 80px;
    z-index: 1000;
}

/* Mobile header styles */
@media (max-width: 980px) {
    .tmenu-mobile {
        display: block !important;
    }
    
    .tmenu-mobile__container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 80px !important;
        padding: 0 20px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    .tmenu-mobile__imglogo {
        height: 40px !important;
        width: auto !important;
    }
    
    .t-menuburger {
        display: flex !important;
    }
}

/* Desktop header styles */
@media (min-width: 981px) {
.tmenu-mobile { display:none !important; }
    
    .t-menuburger {
        display: none !important;
    }
    
    /* Force show desktop header */
    .t228 {
        position: fixed !important;
        display: block !important;
        height: 80px !important;
    }
    
    .t228__maincontainer {
        height: 80px !important;
        display: table !important;
    }
    
    /* Fix right side positioning */
    .t228__rightside {
        vertical-align: middle !important;
        text-align: right !important;
    }
    
    .t228__rightcontainer {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        justify-content: center !important;
        height: 80px !important;
    }
    
    .t228__right_descr {
        margin-bottom: 5px !important;
    }
    
    .t228__right_buttons {
        margin-top: 0 !important;
    }
}

/* Hide right buttons on 1024px resolution */
@media (max-width: 1024px) and (min-width: 981px) {
    .t228__right_buttons {
        display: none !important;
    }
    
    /* Optimize menu width for faster loading on 1024px */
    .t228__centerside {
        width: 60% !important;
        max-width: 500px !important;
    }
    
    .t228__centercontainer {
        width: 100% !important;
    }
    
    .t228__list {
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    .t228__list_item {
        padding: 0 8px !important;
        font-size: 14px !important;
    }
    
    /* Force menu to show immediately for faster loading */
    .t228__list_hidden {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Optimize menu container for 1024px */
    .t228__maincontainer {
        table-layout: fixed !important;
    }
}

/* Override Tilda's mobile header hiding */
@media (max-width: 980px) {
    .t228 {
        position: static !important;
        display: none !important;
    }
    
    .t228__maincontainer {
        display: none !important;
    }
}

.tmenu-mobile__menucontent_hidden {
    display: none;
}

.tmenu-mobile__menucontent_fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Menu styles */
#rec564000800 .t228__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

#rec564000800 .t228__list_item {
    padding: 0 15px 0 0;
}

#rec564000800 .t228__list_item:nth-child(3),
#rec564000800 .t228__list_item:nth-child(4) {
    padding: 0 15px;
}

#rec564000800 .t228__list_item:last-child {
    padding: 0 0 0 15px;
}

/* Right side styles */
#rec564000800 .t228__rightside {
    display: flex;
    align-items: center;
    gap: 20px;
}

#rec564000800 .t228__rightcontainer {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Contact info styles */
.t228__right_descr {
    font-size: 14px;
}

.t228__right_descr span {
    font-family: Inter;
}

.t228__right_descr a {
    color: rgb(0, 0, 0);
    font-family: Inter;
}

/* Menu link styles */
#rec564000800 .t228__list_item a {
    color: #000;
    text-decoration: none;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

#rec564000800 .t228__list_item a:hover {
    color: #e0b690;
}

/* Button styles */
.t-btn {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    font-family: Inter;
    font-weight: 400;
}

.t-submit {
    color: #000000;
    background-color: #e0b690;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    text-transform: uppercase;
}

/* Form styles */
.t-form__successbox {
    display: none;
}

.t-input {
    color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
}

.t-checkbox__control {
    font-size: 14px;
}

.t-checkbox__control span {
    color: rgb(114, 114, 114);
}

.t-checkbox__control a {
    color: rgb(114, 114, 114);
    border-bottom: 1px solid rgb(114, 114, 114);
    box-shadow: none;
    text-decoration: none;
}

.t-form__errorbox-wrapper {
    display: none;
}

/* Popup styles */
.t-popup {
    background-color: rgba(0, 0, 0, 0.8);
}

.t-popup__container {
    background-color: #f8f2ed;
}

/* Section styles */
.t-rec {
    /* padding-top: 60px; */
    padding-bottom: 0px;
}

.t-rec_pt_30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.t-rec_pb_0 {
    padding-bottom: 0px;
}


.t-records {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.t-records_visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.t-records_animated {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure header is always visible */
#t-header {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}



#rec564685242 .t396__carrier {
    border-radius: 50% !important;
    width: 300px !important;
    height: 300px !important;
    margin: 0 auto !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}


#rec564685242 .tn-elem[data-elem-id="1679048810880"] {
    top: 60px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679048880902"] {
    top: 100px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679048916553"] {
    top: 60px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679048916556"] {
    top: 100px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679048981221"] {
    top: 60px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679048981224"] {
    top: 100px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679049015889"] {
    top: 60px !important;
}

#rec564685242 .tn-elem[data-elem-id="1679049015892"] {
    top: 100px !important;
}


#rec564000800 .t228__list_item {
    padding: 0 15px !important;
}

#rec564000800 .t228__list_item:first-child {
    padding: 0 15px 0 0 !important;
}

#rec564000800 .t228__list_item:last-child {
    padding: 0 0 0 15px !important;
}

#rec564000800 .t-menu__link-item {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

#rec564000800 .t-menu__link-item:hover {
    color: #e0b690 !important;
}

#rec564000800 .t228__right_descr {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    color: #000 !important;
    line-height: 1.4 !important;
}

#rec564000800 .t228__right_descr a {
    color: #000 !important;
    text-decoration: none !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
}

#rec564000800 .t228__right_descr a:hover {
    color: #e0b690 !important;
}

#rec564000800 .t-btn {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #000 !important;
    background: transparent !important;
    border: 1px solid #e0b690 !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

#rec564000800 .t-btn:hover {
    background: #e0b690 !important;
    color: #fff !important;
}

#rec564000800 .t-btn u {
    text-decoration: none !important;
}


@media (max-width: 768px) {
    #rec564685242 .t396__carrier {
        width: 250px !important;
        height: 250px !important;
    }
    

    #rec564685242 .tn-elem[data-elem-id="1679048810880"],
    #rec564685242 .tn-elem[data-elem-id="1679048916553"],
    #rec564685242 .tn-elem[data-elem-id="1679048981221"],
    #rec564685242 .tn-elem[data-elem-id="1679049015889"] {
        top: 50px !important;
    }
    
    #rec564685242 .tn-elem[data-elem-id="1679048880902"],
    #rec564685242 .tn-elem[data-elem-id="1679048916556"],
    #rec564685242 .tn-elem[data-elem-id="1679048981224"],
    #rec564685242 .tn-elem[data-elem-id="1679049015892"] {
        top: 80px !important;
    }
    

    #rec564000800 .t-menu__link-item {
        font-size: 14px !important;
    }
    
    #rec564000800 .t228__right_descr {
        font-size: 12px !important;
    }
    
    #rec564000800 .t228__right_descr a {
        font-size: 12px !important;
    }
    
    #rec564000800 .t-btn {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}


#rec760216988 .tn-elem[data-elem-id="1752494462603"] .tn-atom {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333 !important;
}

#rec760216988 .tn-elem[data-elem-id="1752494462603"] .tn-atom p {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin-bottom: 16px !important;
}

#rec760216988 .tn-elem[data-elem-id="1752494462603"] .tn-atom ul {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin-bottom: 12px !important;
    padding-left: 20px !important;
}

#rec760216988 .tn-elem[data-elem-id="1752494462603"] .tn-atom li {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    /* line-height: 1.5 !important; */
    color: #333 !important;
    /* margin-bottom: 8px !important; */
}


#rec564685242 .t396__carrier {
    background-image: url('https://static.tildacdn.com/tild6434-6662-4237-b637-366331303664/im2.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 50% !important;
}

#rec564685242 .tn-atom__img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.landscape-content {
    padding-left: 20px !important;
    font-family: "Inter", Arial, sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

/* Fix text block alignment - only on mobile */
@media (max-width: 768px) {
    #rec564685242 .tn-atom {
        text-align: center !important;
        padding: 20px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    #rec564685242 .tn-atom[field="tn_text_1748786092022"] {
        font-family: "Inter", Arial, sans-serif !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
        color: #333 !important;
        text-align: center !important;
        padding: 20px 15px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Desktop header alignment fixes */
@media (min-width: 769px) {
    .t-title, h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
    }
    
    .t-align_center {
        text-align: center !important;
    }
    
    .t-container {
        text-align: center !important;
    }
    
    /* Exclude our new header from global centering */
    .new-header .t-container,
    .new-header .t-title,
    .new-header h1,
    .new-header h2,
    .new-header h3,
    .new-header h4,
    .new-header h5,
    .new-header h6 {
        text-align: left !important;
    }
    
    .new-header__container {
        text-align: left !important;
    }
    
    .new-header__center {
        text-align: center !important;
    }
    
    .new-header__right {
        text-align: right !important;
    }
}

.landscape-intro {
    font-size: 16px !important;
    margin-bottom: 20px !important;
    color: #555 !important;
}

.landscape-highlight {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c5aa0 !important;
    margin: 25px 0 !important;
    text-align: center !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 15px 20px !important;
    border-radius: 12px !important;
    border-left: 4px solid #2c5aa0 !important;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1) !important;
}

.landscape-continuation {
    font-size: 16px !important;
    margin-bottom: 25px !important;
    color: #555 !important;
}

.landscape-list-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin: 30px 0 20px 0 !important;
    position: relative !important;
}

.landscape-list-title:after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 50px !important;
    height: 3px !important;
    /* background: linear-gradient(90deg, #2c5aa0, #e0b690) !important; */
    border-radius: 2px !important;
}

.landscape-features-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
}

.landscape-features-list li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
    /* padding: 12px 15px !important; */
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important; */
    /* border-radius: 8px !important; */
    /* border-left: 3px solid #e0b690 !important; */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important; */
    transition: all 0.3s ease !important;
}

.landscape-features-list li:hover {
    transform: translateX(5px) !important;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important; */
    /* border-left-color: #2c5aa0 !important; */
}

.landscape-icon {
    font-size: 18px !important;
    margin-right: 12px !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
    color: #2c5aa0 !important;
    font-weight: bold !important;
    font-style: normal !important;
}



.landscape-conclusion {
    font-size: 16px !important;
    margin-top: 25px !important;
    color: #555 !important;
    /* font-style: italic !important; */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    /* padding: 20px !important; */
    border-radius: 8px !important;
    /* border: 1px solid #e9ecef !important; */
}

@media screen and (max-width: 768px) {
    .landscape-content {
        padding-left: 10px !important;
    }
    
    .landscape-highlight {
        font-size: 20px !important;
        padding: 12px 15px !important;
    }
    
    .landscape-list-title {
        font-size: 18px !important;
    }
    
    .landscape-features-list li {
        padding: 10px 12px !important;
    }
    
    .landscape-icon {
        font-size: 16px !important;
        margin-right: 10px !important;
    }
}

.company-offer-section {
    width: 100% !important;
    background: white;
    padding: 80px 0 !important;
    margin: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}

.company-offer-section .t-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.company-offer-section:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%) !important;
}

.company-offer-block {
    background: #ffffff !important;
    padding: 50px 40px !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 1200px !important;
    position: relative !important;
    box-sizing: border-box !important;
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important; */
    /* border: 1px solid #e9ecef !important; */
}

.company-offer-block p {
    font-family: "Times New Roman", serif !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    color: #2c3e50 !important;
    margin-bottom: 40px !important;
    text-align: center !important;
    position: relative !important;
}

.company-offer-block h2 {
    margin-bottom: 40px !important;
    text-align: center !important;
    font-size: 2.5rem;
}
.company-offer-block h2:after {
    /* content: '' !important; */
    position: absolute !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #e0b690, #d4a574) !important;
    border-radius: 1px !important;
}

.company-offer-block p:after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #e0b690, #d4a574) !important;
    border-radius: 1px !important;
}

.company-offer-block ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    gap: 20px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.company-offer-block li {
    background: white;
    padding: 20px !important;
    border-radius: 12px !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 15px !important;
    color: #495057 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    border: 1px solid #e9ecef !important;
    text-align: center;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.company-offer-block li:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    border-color: #e0b690 !important;
}

.company-offer-block li:not(.cta-button):before {
    content: '*' !important;
    position: absolute !important;
    top: 16px !important;
    left: 10px !important;
    color: #e0b690 !important;
    font-size: 20px !important;
    font-weight: bold !important;
}


.company-offer-block .cta-button {
    background: linear-gradient(135deg, #e0b690 0%, #d4a574 100%) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(224, 182, 144, 0.3) !important;
    text-align: center !important;
}

.company-offer-block .cta-button:before {
    display: none !important;
}

.company-offer-block .cta-button:hover {
    background: linear-gradient(135deg, #d4a574 0%, #c49a6b 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(224, 182, 144, 0.4) !important;
}

.offer-cta-btn {
    display: block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

.offer-cta-btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Company offer section - 1024px optimization */
    .company-offer-section {
        padding: 50px 0 !important;
    }
    
    .company-offer-section .t-container {
        max-width: 1000px !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .company-offer-block {
        max-width: 1000px !important;
        margin: 0 auto !important;
        padding: 40px 30px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .company-offer-block h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .company-offer-block ul {
        grid-template-columns: 49% 49% !important;
        gap: 15px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .company-offer-block li {
        padding: 18px 15px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .offer-cta-btn {
        font-size: 15px !important;
        padding: 12px 24px !important;
    }
}

@media (max-width: 768px) {
    .company-offer-section {
        padding: 40px 0 !important;
    }
    
    .company-offer-block {
        padding: 25px 15px !important;
        margin: 0 10px !important;
        border-radius: 12px !important;
    }
    
    .company-offer-block h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }
    
    .company-offer-block ul {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
    }
    
    .company-offer-block li {
        padding: 15px 12px !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }
    
    .company-offer-block li:not(.cta-button):before {
        top: 15px !important;
        left: 12px !important;
        font-size: 16px !important;
    }
    
    .company-offer-block li.cta-button {
        text-align: center !important;
        padding: 20px 12px !important;
    }
    
    .offer-cta-btn {
        font-size: 15px !important;
        padding: 12px 24px !important;
        border-radius: 25px !important;
        display: inline-block !important;
    }
}


@media (max-width: 480px) {
    .company-offer-section {
        padding: 30px 0 !important;
        overflow-x: hidden !important;
    }
    
    .company-offer-section .t-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    
    .company-offer-block {
        padding: 20px 10px !important;
        margin: 0 !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    .company-offer-block h2 {
        margin-bottom: 20px !important;
        padding: 0 5px !important;
        font-size: 30px !important;
        line-height: 1 !important;
    }
    
    .company-offer-block ul {
        gap: 10px !important;
    }
    
    .company-offer-block li {
        padding: 12px 25px !important;
        font-size: 13px !important;
        line-height: 1.3 !important;
        border-radius: 8px !important;
    }
    
    .company-offer-block li:not(.cta-button):before {
        top: 12px !important;
        left: 10px !important;
        font-size: 14px !important;
    }
    
    .company-offer-block li.cta-button {
        padding: 15px 10px !important;
    }
    
    .offer-cta-btn {
        font-size: 14px !important;
        padding: 10px 20px !important;
        border-radius: 20px !important;
    }
}

/* Debug: Highlight overflowing elements - DISABLED */
/* * {
    outline: 1px solid red !important;
} */

/* Prevent horizontal overflow globally - only on mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        font-size: 16px;
        line-height: 1.5;
    }

    * {
        box-sizing: border-box !important;
    }

    /* Fix common overflow issues - only on mobile */
    .t-container {
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .t-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .t-col {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    /* Fix text elements */
    .tn-atom {
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    /* Fix buttons */
    .t-btn {
        max-width: 100% !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
    
    /* Improve touch targets */
    a, button, input, select, textarea {
        min-height: 30px !important;
        min-width: 44px !important;
    }
}

/* Custom Image and Text Block Styles */
.custom-image-text-section {
    padding: 30px 0 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
}

.custom-image-text-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.custom-image-text-content {
    display: flex !important;
    align-items: flex-start !important;
    gap: 40px !important;
    box-sizing: border-box !important;
}

.custom-image-wrapper {
    flex: 0 0 400px !important;
    box-sizing: border-box !important;
}

.custom-landscape-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
}

.custom-text-wrapper {
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
}

.custom-landscape-content {
    box-sizing: border-box !important;
}

.custom-landscape-intro,
.custom-landscape-continuation,
.custom-landscape-conclusion {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
    font-family: "Inter", Arial, sans-serif !important;
}

.custom-mb10 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin: 25px 0 15px 0 !important;
    padding: 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;
    font-family: "Inter", Arial, sans-serif !important;
}

.custom-landscape-features-list {
    margin: 20px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    box-sizing: border-box !important;
}

.custom-landscape-features-list li {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    margin: 0px 0 0px 0 !important;
    padding: 0 0 0 20px !important;
    position: relative !important;
    box-sizing: border-box !important;
    font-family: "Inter", Arial, sans-serif !important;
}

.custom-landscape-icon {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #D4AF37 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    box-sizing: border-box !important;
}

/* Custom Button and Text Block Styles */
.custom-button-text-section {
    padding: 30px 0 !important;
    background-color: #ffffff !important;
    box-sizing: border-box !important;
}

.custom-button-text-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

.custom-button-text-content {
    display: flex !important;
    align-items: flex-start !important;
    gap: 30px !important;
    box-sizing: border-box !important;
}

.custom-button-wrapper {
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
    color: #000000;
    font-size: 16px;
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    /* border-radius: 25px; */
    /* background-color: #e0b690; */
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.custom-all-projects-btn {
    display: inline-block !important;
    color: #000000 !important;
    padding: 15px 25px !important;
    border-radius: 25px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    text-transform: none;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e0b690 !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    color: #000000;
    font-size: 16px;
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 600;
    border-radius: 0px 0px 0px 0px;
    background-color: #ffffff;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.custom-all-projects-btn:hover {
    background-color: #d4a574 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3) !important;
}

.custom-text-wrapper {
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
}

.custom-caring-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333333 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-weight: 400 !important;
    vertical-align: middle !important;
    background-position: center center !important;
    border-color: transparent !important;
    border-style: solid !important;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Custom Image and Text Block - 1024px */
    .custom-image-text-container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .custom-image-text-content {
        gap: 30px !important;
    }
    
    .custom-image-wrapper {
        flex: 0 0 350px !important;
    }
    
    .custom-landscape-intro,
    .custom-landscape-continuation,
    .custom-landscape-conclusion {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    .custom-mb10 {
        font-size: 17px !important;
    }
    
    .custom-landscape-features-list li {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    .custom-button-text-container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .custom-button-text-content {
        gap: 20px !important;
    }
    
    .custom-all-projects-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .custom-caring-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    /* Custom Image and Text Block - Mobile */
    .custom-image-text-section {
        padding: 20px 0 !important;
    }
    
    .custom-image-text-container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .custom-image-text-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    .custom-image-wrapper {
        flex: none !important;
        width: 100% !important;
        max-width: 400px !important;
    }
    
    .custom-text-wrapper {
        width: 100% !important;
    }
    
    .custom-landscape-intro,
    .custom-landscape-continuation,
    .custom-landscape-conclusion {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    .custom-mb10 {
        font-size: 17px !important;
        text-align: center !important;
    }
    
    .custom-landscape-features-list li {
        font-size: 15px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }
    
    .custom-button-text-section {
        padding: 20px 0 !important;
    }
    
    .custom-button-text-container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .custom-button-text-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    .custom-button-wrapper {
        order: 1 !important;
    }
    
    .custom-text-wrapper {
        order: 2 !important;
        width: 100% !important;
    }
    
    .custom-all-projects-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .custom-caring-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    /* Custom Image and Text Block - Small Mobile */
    .custom-image-text-container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }
    
    .custom-image-text-content {
        gap: 15px !important;
    }
    
    .custom-image-wrapper {
        max-width: 100% !important;
    }
    
    .custom-landscape-intro,
    .custom-landscape-continuation,
    .custom-landscape-conclusion {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    
    .custom-mb10 {
        font-size: 16px !important;
    }
    
    .custom-landscape-features-list li {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin: 0 0 10px 0 !important;
    }
    
    .custom-button-text-container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }
    
    .custom-button-text-content {
        gap: 12px !important;
    }
    
    .custom-all-projects-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
    
    .custom-caring-text {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}

/* Override main.css grid styles */
.grid {
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Project images styling for all screen sizes */
.thumb__img {
    border-radius: 12px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.thumb {
    padding: 10px !important;
    box-sizing: border-box !important;
}

.row {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-bottom: 20px !important;
    align-items: stretch !important;
    flex-wrap: wrap !important;
}

.item {
    flex: 1 1 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10) !important;
    overflow: hidden !important;
    text-decoration: none !important;
    border-bottom: 0 !important;
    transition: box-shadow .2s ease, transform .2s ease !important;
}

.item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Remove underline in project cards paragraphs/links */
.item p, .item p * { 
    text-decoration: none !important; 
    border-bottom: 0 !important; 
    box-shadow: none !important;
}
.item a, .item a * { 
    text-decoration: none !important; 
    border-bottom: 0 !important; 
    box-shadow: none !important;
}
.item a:hover { 
    text-decoration: none !important; 
}

/* Container fixes for all resolutions */
@media (min-width: 1201px) {
    .t-container:not(.new-header__container) {
        /* padding-left: 40px !important; */
        /* padding-right: 40px !important; */
        box-sizing: border-box !important;
        margin-top: 10px;
    }
    
    /* Fix sections for large screens */
    .t-section {
        padding-left: 40px !important;
        padding-right: 40px !important;
        box-sizing: border-box !important;
    }
    
    /* Fix grid containers */
    .grid {
        padding-left: 40px !important;
        padding-right: 40px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .t-container:not(.new-header__container) {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix sections for 1025px-1200px */
    .t-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    
    /* Fix grid containers */
    .grid {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
}

/* 1200px optimization for T396 block */
@media (max-width: 1200px) and (min-width: 1025px) {
    /* T396 artboard optimization for 1200px */
    #rec564685242 .t396__artboard {
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding: 30px !important;
        box-sizing: border-box !important;
    }
    
    #rec564685242 .t396__carrier {
        width: 250px !important;
        height: 250px !important;
    }
    
    /* Fix positioning for 1200px - better alignment */
    #rec564685242 .t396__elem[data-elem-id="1679048763652"] {
        /* Icon 1 */
        left: 30px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048810880"] {
        left: 100px !important;
        width: 200px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048880902"] {
        left: 100px !important;
        width: 200px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048916549"] {
        /* Icon 2 */
        left: 350px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048916553"] {
        left: 420px !important;
        width: 200px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048916556"] {
        /* Text 4 */
        left: 420px !important;
        width: 200px !important;
    }
    
    /* Landscape content block - optimize positioning */
    #rec564685242 .t396__elem[data-elem-id="1679049015889"] {
        /* Landscape content */
        left: 30px !important;
        width: calc(100% - 60px) !important;
        max-width: 1040px !important;
    }
    
}

@media (max-width: 1024px) and (min-width: 769px) {
    .t-container:not(.new-header__container) {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix sections for 1024px */
    .t-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Fix grid containers */
    .grid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Hero section optimization */
    .custom-slider-container {
        height: 500px !important;
        margin-top: 60px !important;
    }
    
    .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .subtitle {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .stats-container {
        gap: 20px !important;
        margin-top: 20px !important;
    }
    
    .stat-item {
        padding: 15px !important;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
    
    .stat-description {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }
    
    /* Company offer section optimization */
    .company-offer-section {
        padding: 40px 0 !important;
    }
    
    .company-offer-block {
        padding: 30px 20px !important;
        margin: 0 10px !important;
    }
    
    .company-offer-block h2 {
        font-size: 2.2rem !important;
        margin-bottom: 25px !important;
    }
    
    .company-offer-block ul {
        gap: 15px !important;
    }
    
    .company-offer-block li {
        padding: 15px 12px !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    
    .offer-cta-btn {
        font-size: 14px !important;
        padding: 0px 14px !important;
    }
    
    /* About company section optimization */
    .about-company-section {
        padding: 40px 0 !important;
    }
    
    .about-company-container {
        padding: 0 15px !important;
    }
    
    .about-company-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
    }
    
    .about-company-content {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .about-company-text {
        width: 93% !important;
    }
    
    .about-company-video {
        width: 93% !important;
    }
    
    .about-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    /* Exclusivity section optimization */
    .exclusivity-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .exclusivity-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .exclusivity-content {
        gap: 20px !important;
    }
    
    /* Why choose us section optimization */
    .why-choose-us-section {
        padding: 40px 0 !important;
    }
    
    .why-choose-us-title {
        /* font-size: 24px !important; */
        margin-bottom: 20px !important;
    }
    
    .why-choose-us-text p {
        /* font-size: 14px !important; */
        /* line-height: 1.5 !important; */
        margin-bottom: 15px !important;
    }
    
    /* Contacts section optimization */
    .contacts-section {
        padding: 40px 0 !important;
    }
    
    .contacts-title {
        /* font-size: 24px !important; */
        margin-bottom: 20px !important;
    }
    
    .contacts-text p {
        /* font-size: 14px !important; */
        line-height: 1.5 !important;
    }
    
    /* Landscape content optimization */
    .landscape-content {
        padding: 20px 15px !important;
    }
    
    .landscape-intro {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .landscape-continuation {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* T396 artboard optimization */
    /* Optimize T396 block for 1024px - reduce gap between image and text */
    #rec564685242 .t396__artboard {
        max-width: 1000px !important;
        margin: 0 auto !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }
    
    #rec564685242 .t396__carrier {
        width: 200px !important;
        height: 200px !important;
    }
    
    /* Reduce gap between image and text elements */
    #rec564685242 .t396__elem[data-elem-id="1679048763652"] {
        /* Icon 1 - move closer to text */
        left: 20px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048810880"] {
        /* Text 1 - move closer to image */
        left: 80px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048880902"] {
        /* Text 2 - move closer to image */
        left: 80px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048916549"] {
        /* Icon 2 - move closer to text */
        left: 300px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048916553"] {
        /* Text 3 - move closer to icon */
        left: 360px !important;
    }
    
    #rec564685242 .t396__elem[data-elem-id="1679048916556"] {
        /* Text 4 - move closer to icon */
        left: 360px !important;
    }
    
    /* Landscape content block - optimize positioning */
    #rec564685242 .t396__elem[data-elem-id="1679049015889"] {
        /* Landscape content - move closer to image */
        left: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 960px !important;
    }
    
    
    /* Project cards optimization */
    .grid {
        gap: 20px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .row {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        align-items: stretch !important;
        flex-wrap: wrap !important;
    }
    
    .item {
        padding: 15px !important;
        flex: 1 1 calc(50% - 7.5px) !important;
        max-width: calc(50% - 7.5px) !important;
        box-sizing: border-box !important;
    }
    
    .t-title2 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .item p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    
    .thumb__img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        border-radius: 12px !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }
    
    .thumb {
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }
}

/* Mobile overflow fixes - only for mobile */
@media (max-width: 768px) {
    /* Fix all sections */
    .t-section {
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Fix grid containers for mobile */
    .grid {
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }
    
    /* Mobile project cards */
    .row {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .item {
        flex: 1 1 100% !important;
        max-width: calc(100% - 20px) !important;
        width: calc(100% - 20px) !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    /* Fix containers - only on mobile, exclude our header */
    .t-container:not(.new-header__container) {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
    }
    
    /* Fix rows and columns - only on mobile */
    .t-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .t-col {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Fix common problematic elements */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    iframe {
        max-width: 100% !important;
    }
    
    table {
        width: 100% !important;
        table-layout: fixed !important;
    }
}

@media (max-width: 480px) {
    .t-container:not(.new-header__container) {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Fix sections for small mobile */
    .t-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Fix grid containers for small mobile */
    .grid {
        padding-left: 5px !important;
        padding-right: 5px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Small mobile project cards */
    .row {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .item {
        max-width: calc(100% - 10px) !important;
        width: calc(100% - 10px) !important;
        margin: 0 auto !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
    }
    
    .t-col {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Improve typography for small screens */
    .tn-atom {
        font-size: 16px !important;
        line-height: 1.5 !important;
        padding: 15px !important;
    }
    
    .t-btn {
        font-size: 16px !important;
        padding: 14px 20px !important;
        min-height: 48px !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.2em !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    /* Fix text block on mobile */
    #rec564685242 .tn-atom[field="tn_text_1748786092022"] {
        font-size: 14px !important;
        padding: 15px 10px !important;
        text-align: center !important;
        line-height: 1.5 !important;
        position: relative !important;
        top: 80px !important;
        z-index: 5 !important;
        background-color: rgba(255, 255, 255, 0.9) !important;
        border-radius: 10px !important;
        margin: 10px !important;
    }
    
    #rec564685242 .tn-atom {
        padding: 15px 10px !important;
        text-align: center !important;
    }
    
    /* T396 block mobile optimization */
    #rec564685242 .t396__artboard {
        max-width: 100% !important;
        padding: 15px !important;
        height: auto !important;
    }
    
    /* Stack elements vertically on mobile */
    #rec564685242 .t396__elem[data-elem-id="1679048763652"],
    #rec564685242 .t396__elem[data-elem-id="1679048810880"],
    #rec564685242 .t396__elem[data-elem-id="1679048880902"],
    #rec564685242 .t396__elem[data-elem-id="1679048916549"],
    #rec564685242 .t396__elem[data-elem-id="1679048916553"],
    #rec564685242 .t396__elem[data-elem-id="1679048916556"] {
        position: relative !important;
        left: 0 !important;
        top: auto !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    /* Landscape content on mobile */
    #rec564685242 .t396__elem[data-elem-id="1679049015889"] {
        position: relative !important;
        left: 0 !important;
        top: auto !important;
        width: 100% !important;
        margin-top: 20px !important;
    }
    
    #rec564685242 .landscape-content {
        padding: 15px !important;
        text-align: center !important;
    }
    
}

/* Very small screens (ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â°ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤320px) */
@media (max-width: 320px) {
    .t-container:not(.new-header__container) {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .t-section {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    
    .t-col {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    
    /* Improve typography for very small screens */
    .tn-atom {
        font-size: 15px !important;
        line-height: 1.4 !important;
        padding: 12px !important;
    }
    
    .t-btn {
        font-size: 15px !important;
        padding: 12px 18px !important;
        min-height: 44px !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.1em !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }
    
    p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    /* Company offer section - Very small screens */
    .company-offer-section {
        padding: 25px 0 !important;
        overflow-x: hidden !important;
    }
    
    .company-offer-section .t-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    
    .company-offer-block {
        padding: 15px 8px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    .company-offer-block h2 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
        padding: 0 3px !important;
    }
    
    .company-offer-block li {
        padding: 10px 8px !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
    }
    
    .company-offer-block li:not(.cta-button):before {
        top: 10px !important;
        left: 8px !important;
        font-size: 12px !important;
    }
    
    .company-offer-block li.cta-button {
        padding: 12px 8px !important;
    }
    
    .offer-cta-btn {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
    
    /* Fix text block on very small screens */
    #rec564685242 .tn-atom[field="tn_text_1748786092022"] {
        font-size: 13px !important;
        padding: 12px 8px !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    #rec564685242 .tn-atom {
        padding: 12px 8px !important;
        text-align: center !important;
    }
}


.specialists-section {
    width: 100% !important;
    background: #ffffff !important;
    padding: 60px 0 !important;
    margin: 0 !important;
}

.specialists-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.specialists-content p {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}


.t-container p {
    color: #333 !important;
    margin-bottom: 0px !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.specialists-content p:last-child {
    margin-bottom: 0 !important;
}

.specialists-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.specialists-list li {
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin-bottom: 12px !important;
    padding-left: 25px !important;
    position: relative !important;
}

.specialists-list li:before {
    content: "*" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: #2c5aa0 !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

#rec760219976 .t225__title {
    font-size: 40px;
    line-height: 1;
    color: #333 !important;
    margin-bottom: 20px !important;
}


@media (max-width: 768px) {
    .specialists-section {
        padding: 40px 0 !important;
    }
    
    .specialists-section .t-container {
        padding: 0 20px !important;
    }
    
    .specialists-content {
        padding: 0 !important;
    }
    
    .specialists-content p {
        font-size: 15px !important;
    }
    
    .specialists-list li {
        font-size: 15px !important;
    }
    
    #rec760219976 .t225__title {
        font-size: 15px !important;
        margin-bottom: 15px !important;
    }
}


.t119 .t-col_6 {
    display: flex;
    align-items: center;
}

.t121__wrap-video {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.t-video-lazyload {
    width: 100%;
    height: 100%;
}


.guarantees-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantees-li {
    margin-bottom: 5px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.guarantees-bullet {
    position: absolute;
    left: 0;
    top: 0;
    color: #e0b690;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .t119 .t-col_6 {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .t121__wrap-video {
        height: 250px;
        margin-top: 20px;
    }
    
    .t228__positionfixed {
        height: 60px;
    }
    
    .t228__maincontainer {
        height: 60px;
        padding: 0 15px;
    }
    
    #rec564000800 .t228__list {
        display: none;
    }
    
    .t-menuburger {
        display: flex;
    }
    
    .tmenu-mobile {
        display: block;
    }
    
    .tmenu-mobile__imglogo,
    .t228__imglogo {
        max-width: 150px;
        width: 150px;
        min-width: 150px;
    }
    
    .content-overlay {
        top: 30%;
        padding: 20px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .t228__list_item {
        padding: 0 10px 0 0;
    }
    
    .t228__list_item:nth-child(3),
    .t228__list_item:nth-child(4) {
        padding: 0 10px;
    }
    
    .t228__list_item:last-child {
        padding: 0 0 0 10px;
    }
    
    .content-overlay {
        top: 25%;
        padding: 15px;
    }
}


.about-text {
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.about-conclusion {
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
    text-align: left;
    font-weight: 500;
}


.about-company-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f2ed 0%, #f0e6d6 100%);
    position: relative;
    overflow: hidden;
}

.about-company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-company-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.about-company-content {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    min-height: 400px;
}


#rec564725198 .about-company-content {
    grid-template-columns: 60% 40%;
}

.about-company-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-company-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.about-owner-info {
    text-align: center;
}

.owner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.owner-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0b690;
    margin: 0 0 8px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.owner-education {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-conclusion {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0b690;
    margin: 0px 0 10px 0px;
}

.about-company-video {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-video-iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.quality-guarantees-block {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quality-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quality-subtitle {
    font-size: 1rem;
    color: #e0b690;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quality-list li:before {
    content: "*";
    position: absolute;
    left: 0;
    top: 0;
    color: #e0b690;
    font-weight: bold;
    font-size: 16px;
}

.quality-list li:last-child {
    margin-bottom: 0;
}



/* 1024px optimization for about-company section */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-company-section {
        padding: 50px 0 !important;
    }
    
    .about-company-container {
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .about-company-content {
        grid-template-columns: 35% 65% !important;
        gap: 30px !important;
        min-height: auto !important;
    }
    
    .about-company-title {
        font-size: 2.2rem !important;
        margin-bottom: 25px !important;
    }
    
    .about-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .about-conclusion {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .quality-title {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .quality-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .quality-list {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .about-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .about-owner-info h3 {
        font-size: 1.1rem !important;
    }
    
    .about-owner-info p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    #rec564725198 .about-company-content {
        grid-template-columns: 55% 45% !important;
    }
    
    .about-video-iframe {
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .about-company-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .about-company-text {
        order: 1;
        padding: 0;
    }
    
    .about-company-image {
        order: 1;
    }
    
    .about-company-video {
        order: 2;
    }
    
    .about-video-iframe {
        height: 250px;
    }
    
    .about-image {
        height: 200px;
        max-width: 200px;
    }
    
    .about-company-title {
        font-size: 30px !important;
        line-height: 1 !important;
    }
    
    .about-welcome-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .quality-guarantees-block {
        margin-top: 20px;
        padding: 20px;
    }
    
    .quality-title {
        font-size: 1.2rem;
    }
    
    .quality-subtitle {
        font-size: 0.9rem;
    }
    
    .quality-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    

    #rec564725198 .about-company-content {
        grid-template-columns: 1fr;
    }
    
    #rec564725198 .about-company-text {
        order: 1;
    }
    
    #rec564725198 .about-company-video {
        order: 2;
    }
}

/* Individual Design Title Section */
.individual-design-title-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
}

.individual-design-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.individual-design-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Responsive Design for Individual Design Title */
@media (max-width: 1200px) and (min-width: 1025px) {
    .individual-design-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 30px !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }
    
    .individual-design-container {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .individual-design-title-section {
        padding: 50px 0 !important;
    }
    
    .individual-design-title {
        font-size: 2.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }
    
    .individual-design-container {
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    .individual-design-title-section {
        padding: 40px 0 !important;
    }
    
    .individual-design-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        padding: 0 15px !important;
    }
    
    .individual-design-container {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .individual-design-title-section {
        padding: 30px 0 !important;
    }
    
    .individual-design-title {
        font-size: 1.8rem !important;
        line-height: 1 !important;
        margin-bottom: 15px !important;
        padding: 0 10px !important;
    }
    
    .individual-design-container {
        padding: 0 10px !important;
    }
}

/* Individual Approach Features Section */
.individual-approach-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.individual-approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.central-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.landscape-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landscape-image:hover {
    transform: scale(1.05);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    min-height: 500px;
    position: relative;
    z-index: 2;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card-1 {
    grid-column: 1;
    grid-row: 1;
    margin-right: 150px;
    margin-bottom: 50px;
}

.feature-card-2 {
    grid-column: 2;
    grid-row: 1;
    margin-left: 150px;
    margin-bottom: 50px;
}

.feature-card-3 {
    grid-column: 1;
    grid-row: 2;
    margin-right: 150px;
    margin-top: 50px;
}

.feature-card-4 {
    grid-column: 2;
    grid-row: 2;
    margin-left: 150px;
    margin-top: 50px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0b690, #d4a574);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(224, 182, 144, 0.3);
}

.feature-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left !important;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Responsive Design for Individual Approach Features */
@media (max-width: 1200px) and (min-width: 1025px) {
    .individual-approach-section {
        padding: 70px 0 !important;
    }
    
    .individual-approach-container {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    .central-image {
        width: 250px !important;
        height: 250px !important;
    }
    
    .features-grid {
        gap: 30px !important;
        min-height: 450px !important;
    }
    
    .feature-card {
        padding: 25px !important;
        gap: 15px !important;
    }
    
    .feature-card-1,
    .feature-card-3 {
        margin-right: 125px !important;
    }
    
    .feature-card-2,
    .feature-card-4 {
        margin-left: 125px !important;
    }
    
    .feature-title {
        font-size: 1.2rem !important;
    }
    
    .feature-description {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .individual-approach-section {
        padding: 60px 0 !important;
    }
    
    .central-image {
        width: 200px !important;
        height: 200px !important;
    }
    
    .features-grid {
        gap: 25px !important;
        min-height: 400px !important;
    }
    
    .feature-card {
        padding: 20px !important;
        gap: 12px !important;
    }
    
    .feature-card-1,
    .feature-card-3 {
        margin-right: 100px !important;
    }
    
    .feature-card-2,
    .feature-card-4 {
        margin-left: 100px !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .feature-icon img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .feature-title {
        font-size: 1.1rem !important;
    }
    
    .feature-description {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .individual-approach-section {
        padding: 50px 0 !important;
    }
    
    .individual-approach-container {
        padding: 0 15px !important;
    }
    
    .central-image {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto 40px auto !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(4, auto) !important;
        gap: 20px !important;
        min-height: auto !important;
    }
    
    .feature-card {
        padding: 20px !important;
        gap: 15px !important;
        margin: 0 !important;
    }
    
    .feature-card-1,
    .feature-card-2,
    .feature-card-3,
    .feature-card-4 {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin: 0 !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .feature-icon img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .feature-title {
        font-size: 1.1rem !important;
    }
    
    .feature-description {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .individual-approach-section {
        padding: 40px 0 !important;
    }
    
    .central-image {
        width: 150px !important;
        height: 150px !important;
        margin-bottom: 30px !important;
    }
    
    .features-grid {
        gap: 15px !important;
    }
    
    .feature-card {
        padding: 15px !important;
        gap: 12px !important;
    }
    
    .feature-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .feature-icon img {
        width: 25px !important;
        height: 25px !important;
    }
    
    .feature-title {
        font-size: 1rem !important;
    }
    
    .feature-description {
        font-size: 0.85rem !important;
    }
}

.exclusivity-block {
    padding: 60px 0;
    background-color: #ffffff;
}

.exclusivity-header {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px 0;
    margin-bottom: 40px;
}

.exclusivity-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin: 40px 0 20px 0;
    letter-spacing: 1px;
}

.exclusivity-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.exclusivity-content {
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: stretch;
}

.exclusivity-image {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 280px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exclusivity-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exclusivity-bg-image:hover {
    transform: scale(1.05);
}

.exclusivity-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    height: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 120px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0b690, #d4a574);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(224, 182, 144, 0.3);
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-text {
    flex: 1;
}

.feature-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* 1024px optimization for exclusivity section */
@media (max-width: 1024px) and (min-width: 961px) {
    .exclusivity-block {
        padding: 50px 0 !important;
    }
    
    #rec564866854 .t-container {
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .exclusivity-header {
        margin-bottom: 40px !important;
    }
    
    .exclusivity-title {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .exclusivity-subtitle {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
    
    .exclusivity-content {
        grid-template-columns: 35% 65% !important;
        gap: 30px !important;
    }
    
    .exclusivity-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .exclusivity-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        max-width: 93%;
    }
    
    .feature-item {
        padding: 15px !important;
        min-height: 100px !important;
        gap: 10px;
    }
    
    .feature-text p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .feature-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .feature-icon img {
        width: 25px !important;
        height: 25px !important;
    }
}

@media (max-width: 960px) {
    .exclusivity-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .exclusivity-image {
        height: 350px;
        width: 250px;
        max-width: 250px;
        margin: 0 auto;
        order: 2;
    }
    
    .exclusivity-features {
        order: 1;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .exclusivity-title {
        font-size: 2rem;
    }
    
    .exclusivity-subtitle {
        font-size: 1rem;
        max-width: 500px;
    }
}


@media (max-width: 640px) {
    .exclusivity-block {
        padding: 40px 0;
    }
    
    .exclusivity-header {
        margin-bottom: 40px;
    }
    
    .exclusivity-title {
        font-size: 30px !important;
        line-height: 1 !important;
    }
    
    .exclusivity-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .exclusivity-content {
        gap: 30px;
    }
    
    .exclusivity-features {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 15px;
    }
    
    .exclusivity-image {
        height: 300px;
        width: 200px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon img {
        width: 24px;
        height: 24px;
    }
    
    .feature-text p {
        font-size: 1rem;
    }
}


@media (max-width: 320px) {
    .exclusivity-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        align-self: center;
    }
}


.mb10 {
    margin-bottom: 10px;
}


.turnkey-projects-section {
    padding: 120px 0px 10px 0px;
    background-color: #ffffff;
}

.turnkey-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    gap: 20px;
}

.turnkey-title {
    letter-spacing: 1px;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
    margin-top: 40px;
}

.turnkey-nav-buttons {
    display: flex;
    gap: 10px;
}

/* Choose grid (8 ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¿ÃƒÆ’Ã¢â‚¬ËœÃƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â½ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â²) */
.choose-section { padding: 10px 0 20px; }
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.choose-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}
@media (max-width: 1024px) {
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .choose-grid { grid-template-columns: 1fr; }
}

.choose-note {
    max-width: 1200px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.turnkey-process {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    height: 150px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 50px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    height: 150px;
}

.process-steps::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


.process-steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d4c4a8;
    z-index: 1;
}

.process-step {
    flex: 0 0 auto;
    width: 200px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    height: 100%;
    justify-content: flex-start;
    color: #333 !important;
    margin-bottom: 20px !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0b690 0%, #d4a574 100%) !important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    border: none;
    position: relative;
    z-index: 3;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    transform: translateY(0);
}

.step-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
    max-width: 160px;
    text-align: center;
    margin-top: 10px;
}

.nav-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0b690 0%, #d4a574 100%) !important;
    border: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.nav-button:hover {
    background: #c4b498;
    transform: scale(1.05);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.moscow-landscape-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.moscow-landscape-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.moscow-landscape-title {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}

.moscow-landscape-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.moscow-landscape-text p {
    margin-bottom: 20px;
}

.moscow-landscape-text strong {
    color: #2c2c2c;
    font-weight: 600;
}

.services-list {
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
}

.service-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #e0b690 0%, #d4a574 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 3px;
    font-size: 1.1rem;
    color: #333 !important;
    margin: 0px 0 1px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


@media (max-width: 768px) {
    .moscow-landscape-section {
        padding: 60px 0;
    }
    
    .moscow-landscape-content {
        padding: 0 15px;
    }
    
    .moscow-landscape-title {
        font-size: 30px !important;
        line-height: 1 !important;
    }
    
    .moscow-landscape-text {
        font-size: 15px;
    }
    
    .services-list {
        padding-left: 10px;
    }
    
    .service-item {
        gap: 8px;
    }
    
    .service-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .service-text {
        font-size: 15px;
        margin-top: 2px;
    }
}

.nav-button:disabled:hover {
    background: #d4c4a8;
    transform: scale(1);
}

.why-choose-us-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.why-choose-us-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-us-title {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}

.why-choose-us-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.why-choose-us-text p {
    margin-bottom: 20px;
}

.why-choose-us-text strong {
    color: #2c2c2c;
    font-weight: 600;
}


@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-content {
        padding: 0 15px;
    }
    
    .why-choose-us-title {
        font-size: 30px !important;
        line-height: 1 !important;
    }
    
    .why-choose-us-text {
        font-size: 15px;
    }
}


.contacts-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.contacts-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacts-title {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}

.contacts-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.contacts-text p {
    margin-bottom: 20px;
}

.contacts-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-phone {
    margin-bottom: 10px;
}

.contact-phone a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-phone a:hover {
    color: #e0b690;
}

.contact-hours {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.contact-hours strong {
    color: #333;
    font-weight: 600;
}

.contact-address {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.contact-email {
    margin-top: 10px;
}

.contact-email a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.contact-email a:hover {
    color: #e0b690;
}

.contact-button-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-button {
    text-align: center;
}

.contact-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e0b690 0%, #d4a574 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-cta-button:hover {
    background: linear-gradient(135deg, #d4a574 0%, #c4b498 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 182, 144, 0.3);
}


@media (max-width: 768px) {
    .contacts-section {
        padding: 60px 0;
    }
    
    .contacts-content {
        padding: 0 15px;
    }
    
    .contacts-title {
        font-size: 30px !important;
        line-height: 1 !important;
    }
    .about-important-title{
        font-size: 30px !important;
        line-height: 1 !important;
    }
    .contacts-text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .contacts-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .contact-item {
        min-height: 100px;
        padding: 15px;
    }
    
    .contact-phone a {
        font-size: 16px;
    }
    
    .contact-hours,
    .contact-address,
    .contact-email a {
        font-size: 15px;
    }
    
    .contact-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-wrapper script {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


@media (max-width: 768px) {
    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 250px;
    }
}


.site-footer {
    background-color: #262626;
    color: #ffffff !important;
    padding: 40px 0 20px 0;
    margin-top: 0;
}

.site-footer * {
    color: #ffffff !important;
}

.footer-logo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
    text-align: left;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff !important;
    font-family: serif;
}

.logo-icon {
    font-size: 16px;
    color: #e0b690;
}

.footer-address p {
    color: #ffffff !important;
    font-size: 14px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-contacts a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: #e0b690;
}

.footer-email a {
    color: #ffffff !important;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #e0b690;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: #e0b690;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #e0b690;
}

.footer-privacy {
    margin: 5px 0 10px 0;
}

.footer-privacy a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: #e0b690;
}

.footer-copyright {
    margin-top: 0px;
}

.footer-copyright p {
    color: #ffffff !important;
    font-size: 12px;
    margin: 0;
}



@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-logo-container {
        padding: 0 15px 20px 15px;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-column {
        gap: 15px;
    }
    
    .footer-contacts a {
        font-size: 15px;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .footer-nav a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-contacts {
        flex-direction: row;
        gap: 15px;
    }
}


@media (max-width: 768px) {
    .turnkey-projects-section {
        padding: 60px 0;
    }
    
    .turnkey-title {
        font-size: 28px;
    }
    
    .process-step {
        width: 180px;
        padding: 0 15px;
    }
    
    .step-text {
        font-size: 11px;
        max-width: 140px;
        top: 55px;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .turnkey-title {
        font-size: 30px !important;
        line-height: 1 !important;
    }
    
    .process-step {
        width: 160px;
        padding: 0 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-text {
        font-size: 10px;
        max-width: 120px;
        top: 50px;
    }
    
    .nav-button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Hide original headers */
#nav564000800,
#nav564000800_copy {
    display: none !important;
}

/* Show the new clean header */
.new-header {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 2000 !important;
}

/* Add margin to body to account for new header */
body {
    margin-top: 80px !important;
}

/* Force menu to show immediately for faster loading */
#nav564000800_copy .t228__list_hidden {
    display: flex !important;
    visibility: visible !important;
}

/* Optimize menu width for 1024px resolution */
@media (max-width: 1024px) and (min-width: 981px) {
    #nav564000800_copy .t228__right_buttons {
        display: none !important;
    }
    
    #nav564000800_copy .t228__centerside {
        width: 60% !important;
        max-width: 500px !important;
    }
    
    #nav564000800_copy .t228__list_item {
        padding: 0 8px !important;
    }
    
    #nav564000800_copy .t-menu__link-item {
        font-size: 14px !important;
    }
}

/* New Clean Header Styles */
.new-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    z-index: 3000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

.new-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    text-align: left !important;
}

.new-header__left {
    flex: 0 0 auto;
    text-align: left !important;
    margin-left: 15px;
}

.new-header__logo {
    display: inline-block;
}

.new-header__logo-link {
    display: inline-block;
    text-decoration: none;
}

.new-header__logo-img {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.new-header__center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px;
    text-align: center !important;
}

.new-header__nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.new-header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
    height: 100%;
}

.new-header__nav-item {
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.new-header__nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.new-header__nav-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.new-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

.new-header__nav-link:hover::after {
    width: 100%;
}

.new-header__right {
    flex: 0 0 auto;
    display: table-cell;
    vertical-align: middle;
    text-align: right !important;
    width: auto;
}

.new-header__contacts {
    display: table;
    width: auto;
    float: right;
}

.new-header__phones {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.new-header__phone {
    display: block;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.2;
    margin: 0;
}

.new-header__phone:hover {
    color: #666666;
    text-decoration: none;
}

.new-header__button {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
}

.new-header__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #D4AF37;
    -moz-border-radius: 20px;
    cursor: pointer;
    height: 40px;
    line-height: 1;
    box-sizing: border-box;
    white-space: nowrap;
    margin-left: 10px;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #000 !important;
    background: transparent !important;
    border: 1px solid #e0b690 !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    transition: all 0.3s 
ease !important;
}

.new-header__btn:hover {
    background-color: #e0b690 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-color: #e0b690 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.new-header__btn u {
    text-decoration: none;
}

/* Responsive styles for new header */

/* Large tablets and small desktops (1025px - 1200px) */
@media (max-width: 1200px) and (min-width: 1025px) {
    .new-header__container {
        padding: 0 30px;
    }
    
    .new-header__nav-list {
        gap: 25px;
    }
    
    .new-header__nav-link {
        font-size: 15px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .new-header__container {
        padding: 0 0px;
        justify-content: space-evenly;
    }
    
    .new-header__right {
        display: block;
        margin-right: 5px;
    }
    
    .new-header__center {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-start;
        max-width: none;
        margin-left: -20px;
    }
    
    .new-header__nav-list {
        gap: 12px;
    }
    
    .new-header__nav-link {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .new-header__logo-img {
        height: 25px;
        margin-right: 8px;
    }
    
    .new-header__phone {
        font-size: 14px;
        line-height: 1.1;
    }
    
    .new-header__contacts {
        gap: 3px;
    }
    
    .new-header__phones {
        margin-bottom: 2px;
    }
    
    .new-header__btn {
        padding: 4px 10px;
        font-size: 11px;
        height: 30px;
        line-height: 1;
    }
    
    .new-header__logo {
        display: inline-block;
        margin-left: 5px;
    }
}

/* Small tablets (481px - 768px) */
@media (max-width: 768px) and (min-width: 482px) {
    .new-header {
        height: 70px;
    }
    
    .new-header__container {
        height: 70px;
        padding: 0 10px;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    /* SHOW phones back on 768 */
    .new-header__right {
        display: block;
        margin-right: 5px;
        white-space: nowrap;
    }
    
    .new-header__contacts {
        gap: 2px;
    }
    
    .new-header__phones {
        margin-bottom: 2px;
        white-space: nowrap;
    }
    
    .new-header__phone {
        font-size: 12px;
        line-height: 1.1;
    }
    
    /* Hide CTA button on 768 */
    .new-header__button {
        display: none !important;
    }
    
    .new-header__btn {
        padding: 3px 8px;
        font-size: 10px;
        height: 28px;
        line-height: 1;
    }
    
    .new-header__center {
        flex: 0 0 auto;
        display: flex;
        justify-content: flex-start;
        max-width: none;
        margin-left: -10px;
    }
    
    .new-header__nav-list {
        gap: 10px;
    }
    
    .new-header__nav-link {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .new-header__logo-img {
        height: 28px !important;
        margin-right: 8px;
    }
    
    .new-header__logo {
        margin-left: 5px;
    }
    
    body {
        margin-top: 70px !important;
    }
    
    .tmenu-mobile {
        height: 70px !important;
    }
}

/* Mobile Menu Styles */
.new-header__mobile-toggle {
    display: none;
    position: relative;
    z-index: 10002; /* ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â²ÃƒÆ’Ã¢â‚¬ËœÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬ËœÃƒâ€¹Ã¢â‚¬Â ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Âµ ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â²ÃƒÆ’Ã¢â‚¬ËœÃƒâ€šÃ‚ÂÃƒÆ’Ã‚ÂÃƒâ€šÃ‚ÂµÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â³ÃƒÆ’Ã‚ÂÃƒâ€šÃ‚Â¾ */
}

.new-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001; 
}

.new-header__hamburger span {
    width: 25px;
    height: 3px;
    background-color: #111111;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.new-header__hamburger.active span:first-child {
    transform: rotate(45deg);
}

.new-header__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.new-header__hamburger.active span:last-child {
    transform: rotate(-45deg);
}

.new-header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.new-header__mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.new-header__mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: #ffffff;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.new-header__mobile-menu.active .new-header__mobile-menu-content {
    transform: translateX(0);
}

.new-header__mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.new-header__mobile-logo img {
    height: 40px;
    width: auto;
}

.new-header__mobile-close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.new-header__mobile-close span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.new-header__mobile-close span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.new-header__mobile-close span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.new-header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-header__mobile-nav-item {
    margin-bottom: 20px;
}

.new-header__mobile-nav-link {
    display: block;
    padding: 5px 0;
    color: #000000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.new-header__mobile-nav-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.new-header__mobile-contacts {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.new-header__mobile-phones {
    margin-bottom: 20px;
}

.new-header__mobile-phone {
    display: block;
    color: #000000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.new-header__mobile-phone:hover {
    color: #D4AF37;
    text-decoration: none;
}

.new-header__mobile-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e0b690;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.new-header__mobile-btn:hover {
    background-color: #e0b690;
    color: #ffffff;
    text-decoration: none;
}

/* Show mobile menu on small screens */
@media (max-width: 768px) {
    .new-header__mobile-toggle {
        display: block;
    }
    
    .new-header__center {
        display: none;
    }
    
    .new-header__right {
        display: none;
    }
}

/* Very small screens (320px - 400px) */
@media (max-width: 400px) {
    .new-header__container {
        padding: 0 5px !important;
        box-sizing: border-box !important;
    }
    
    .new-header__logo-img {
        height: 25px !important;
    }
    
    .new-header__hamburger {
        width: 25px;
        height: 25px;
    }
    
    .new-header__hamburger span {
        width: 20px;
        height: 2px;
    }
}

/* Mobile devices (320px - 480px) */
@media (max-width: 480px) {
    .new-header {
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .new-header__container {
        height: 60px;
        padding: 0 15px;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .new-header__right {
        display: none;
    }
    
    .new-header__center {
        display: none;
    }
    
    .new-header__logo-img {
        height: 35px;
        margin-right: 0;
    }
    
    .new-header__mobile-toggle {
        display: block;
        width: 30px;
        height: 30px;
    }
    
    .new-header__hamburger {
        width: 30px;
        height: 30px;
    }
    
    .new-header__hamburger span {
        width: 24px;
        height: 3px;
    }
    
    body {
        padding-top: 60px !important;
        margin-top: 0 !important;
    }
}

/* Extra small devices (up to 320px) */
@media (max-width: 320px) {
    .new-header {
        height: 55px;
    }
    
    .new-header__container {
        height: 55px;
        padding: 0 10px;
    }
    
    .new-header__logo-img {
        height: 30px;
        margin-right: 0;
    }
    
    .new-header__mobile-toggle {
        width: 25px;
        height: 25px;
    }
    
    .new-header__hamburger {
        width: 25px;
        height: 25px;
    }
    
    .new-header__hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .new-header__mobile-menu-content {
        width: 90%;
        max-width: 300px;
        padding: 15px;
    }
    
    .new-header__mobile-nav-link {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .new-header__mobile-phone {
        font-size: 14px;
    }
    
    .new-header__mobile-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    body {
        padding-top: 55px !important;
        margin-top: 0 !important;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Optimize animations for mobile */
    .feature-card,
    .landscape-image,
    .new-header__mobile-menu {
        will-change: transform !important;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Improve touch interactions */
    .feature-card:hover {
        transform: none !important;
    }
    
    .feature-card:active {
        transform: scale(0.98) !important;
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast !important;
        image-rendering: crisp-edges !important;
    }
    
    /* Improve form elements */
    input, textarea, select {
        font-size: 16px !important;
        border-radius: 8px !important;
    }
    
    /* Improve button states */
    .t-btn:active {
        transform: scale(0.95) !important;
        transition: transform 0.1s ease !important;
    }


}
.background-white{
    background: white;
}

/* About dual text section */
.about-dual-section {
    padding: 40px 0;
}
.about-dual-container {max-width: 1200px;margin: 0 auto;padding: 0 20px;}
.about-dual-text {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: start;
}
.about-dual-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.about-dual-col--left p {
    color: #777;
}

@media (max-width: 960px) {
    .about-dual-text {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-dual-col--left p {
        text-align: left;
    }
}

/* About important section (full-width text without left offset) */
.about-important-section { padding: 50px 0; }
.about-important-container {max-width: 1200px;margin: 0 auto;padding: 0 20px;}
.about-important-title { text-align: center; font-size: 2.5rem; font-weight: 400; letter-spacing: 1px; margin: 0 0 20px 0; color:#333; }
.about-important-text { max-width: 100%; }
.about-important-text p {margin: 20px auto 0;font-size: 1.1rem;line-height: 1.8;color: #555;font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;}

/* Two-column split blocks (like on old about) */
.about-split-section { padding: 40px 0; }
.about-split-grid { display: grid; grid-template-columns: 30% 70%; gap: 40px; align-items: start; }
.about-split-left p {font-size: 1.1rem;line-height: 1.8;color: #777;margin: 25px 0px 10px 0;font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;}
.about-split-right p {margin: 0 0 14px 0;font-size: 1.05rem;line-height: 1.8;color:#333;text-align:left;margin: 20px auto 0;font-size: 1.1rem;line-height: 1.8;color: #555;font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;}
@media (max-width: 960px) { .about-split-grid { grid-template-columns: 1fr; gap: 20px; } .about-split-right p { color:#555; } }

.mt50{
    margin-top: 50px;
}

/* Price download button (price2) */
.price-download { text-align: center; margin-top: 20px; }
.price-download__link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #333; }
.price-download__link:hover { color: #000; }
.price-download__icon { width: 28px; height: 28px; display: inline-flex; }
.price-download__icon svg { width: 100%; height: 100%; fill: #e0b690; }
.price-download__text { font-size: 16px; }

/* Price tables (price2) */
.price-section { padding: 20px 0; }
.price-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.price-title { font-size: 32px; line-height: 1.1; font-weight: 400; text-transform: uppercase; text-align: left; margin: 10px 0 20px 0; font-family: "Times New Roman", serif; color: #000; }
.price-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.price-table th, .price-table td {padding: 14px 16px;vertical-align: top;text-align: left;color: #2c3e50;margin: 20px auto 0;font-size: 14px;line-height: 1.2;font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;white-space: normal;word-wrap: break-word;overflow-wrap: anywhere;word-break: break-word;hyphens: auto;}
.price-table th { font-weight: 600; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.price-table tr:nth-child(even) { background: #f8f2ed; }
.price-note { font-size: 14px; line-height: 1.6; color: #555; margin: 12px 0 24px 0; }

/* Scrollable tables */
.price-table-wrapper { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { min-width: 760px; }

@media (max-width: 768px) {
	.price-table { min-width: 640px; }
}

@media (max-width: 768px) {
	.price-title { font-size: 24px; line-height: 1; }
	.price-table th, .price-table td { padding: 10px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
	/* Remove bullets and left indents for lists inside price tables on mobile */
	.price-table td ul, .price-table th ul { list-style: none; padding-left: 0; margin: 0; }
	.price-table td ul li, .price-table th ul li { margin: 0 0 6px 0; padding: 0; text-indent: 0; }
}



.widget {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 1000;
}

/* Кнопка открытия виджета (круглая) */
.widget-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3b8552;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.widget-button img {
    width: 28px;
    height: 28px;
    display: block;
}

.widget-button.active {
    background-color: #3b8552;
    transform: rotate(135deg);
}

.widget-icons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.widget-icons.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.widget-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-label {
    background: rgb(235 235 235);
    color: #333;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.widget-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s;
}

.widget-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.widget-icon.phone {
    background: #007bff;
}

.widget-icon.form {
    background: #ff9800;
}

.widget-icon:hover {
    transform: scale(1.05);
}


/* 2) Пульс + волны */
@keyframes ripple {
    to {
      transform: translate(-50%, -50%) scale(2.5);
      opacity: 0;
    }
  }
  
  .widget-button {
    position: relative;      /* для псевдо-элементов */
    overflow: visible;       /* волны не обрезаются */
    z-index: 1;
  
    width: 60px;
    height: 60px;
    background: #00bc3b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
    /* вибрация */
    animation: vibrate 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  
  .widget-button::before,
  .widget-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;    /* начинаем от размера кнопки */
    height: 100%;
    background-color: #00bc3b; /* чистый фирменный цвет */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;             /* начальная «густота» волны */
    pointer-events: none;     /* чтобы клики проходили сквозь */
    animation: ripple 2s infinite ease-out;
  }
  
  .widget-button::after {
    animation-delay: 1s;      /* вторая волна с задержкой */
  }
  @media (min-width: 769px) {
    .widget-icon.phone, .widget-label.phone {
        display: none;
    }
}