 *{
            box-sizing: border-box;
        }
        html{
            overflow-x: hidden;
            height: 100vh;
            width: 100%;
        }
        body{
            width: 100%;
            margin: -10px;
            min-width: 320px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 400;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6, .sec_title, .sec_subtitle, .sec_suptitle{
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        img{
            max-width: 100%;
            height: auto;
            display: block;
        }

        .bodyWrapper{
            display: flex;
            flex-direction: column;

            min-height: 100%;
        }
        .footerSt .headerSt{
            display: flex;
        }
        .burger{
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
            position: relative;
        }
        .burger_line{
            display: block;
            width: 100%;
            height: 2px;
            background: #1a1a1a;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .burger.active .burger_line:nth-child(1){
            transform: translateY(7px) rotate(45deg);
        }
        .burger.active .burger_line:nth-child(2){
            opacity: 0;
        }
        .burger.active .burger_line:nth-child(3){
            transform: translateY(-7px) rotate(-45deg);
        }
        .headerSt{
            justify-content: center;
            position: sticky;
            top: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);

            z-index: 1000;
        }
        .header_cont{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1800px;
            margin: 0 ;
            height: auto;
            min-height: 80px;
            padding: 15px 20px;
            flex-wrap: wrap;
            background-color: #ffffff;
            gap: 15px;
        }
        .header_logo{
            flex-shrink: 0;
        }
        .header_logo img{
            max-height: 60px;
            display: block;
            width: auto;
        }
        .header_logo a{
            display: flex;
            align-items: center;
            line-height: 0;
        }
        .header_nav{
            text-decoration: none;
            flex-flow: 1;
            display: flex;
            justify-content: center;
            flex-shrink: 1;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
           
        }
        .header_menu{
            text-decoration: none;
            list-style: none;
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .header_menu a
        {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: black;
            text-decoration: none !important;
            white-space: nowrap;
        }
        .header_menu a:hover{
            color: #2c9e52;
            text-decoration: none;
        }
        .header_menu a.active{
            color: #2c9e52;
            font-weight: 600;
        }
        .header_btn{
            flex-shrink: 0;
            padding-right: 10px;
        }
        .btn{
            display: inline-block;
            padding: 16px 36px;
            background: linear-gradient(135deg, #7ec395, #2c9e52);
            color: white;
            text-decoration: none;
            border-radius: 15px;
            white-space: nowrap;
            box-shadow: 0 8px 24px rgba(44, 158, 82, 0.3);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            top: 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .btn:hover{
            background-color: #2ea857;
            box-shadow: 0 12px 32px rgba(44, 158, 82, 0.45);
            transform: translateY(-3px);
            color: white;
            text-decoration: none;
        }
        .btn:active{
            background-color: #2f904f;
            box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
            transform: translateY(0);
        }
        .footer_cont{
            height: auto;
            background-color: #1b1b1b;
            width: 100%;
            margin: 0 auto;
            padding: 5px 20px;
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        .map{
            width: 550px;
            min-width: 200px;
            max-width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .map iframe{
            display: block;
            width: 100%;
            height: 300px;
            border: none;
        }
        .footer_info{
            color: white;
            flex: 1 1 450px;
            min-width: 200px;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            line-height: 1;
        }
        .footer_title{
            font-size: 18px;
            margin-bottom: 12px;
            border-bottom: 2px solid #2c9e52;
            padding-bottom: 6px;
            display: inline-block;
        }
        .contacts p{
            margin-bottom: 16px;
            font-size: 15px;
            word-break: break-word;
        }
        .contacts a{
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
            word-break: break-word;
        }
        .contacts a:hover{
            color: #2c9e52;
            text-decoration: none;
        }
        .copyright{
            font-size: 13px;
            text-decoration: none;
            word-break: break-word;
            margin-top: 10px;
        }
        .copyright a{
            color: #ffffff;
            text-decoration: none; 

        }
        .copyright a:hover{
            color: #2c9e52;
            text-decoration: none; 
        }
        .popup{
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
        }
        .popup.active{
            display: block;
        }
        .overlay{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(3px);
        }
        .content{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 36px;
            max-width: 650px;
            width: 90%; 
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        .close{
            position: absolute;
            top: 16px;
            right: 20px;
            width: 36px;
            height: 36px;
            border: none;
            background: #f0f0f0;
            border-radius: 50%;
            font-size: 22px;
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            line-height: 1;
        }
        .close:hover{
            background: #e74c3c;
            color: #fff;
        }
        .popup_title{
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            padding-right: 40px;
            line-height: 1.3;
        }
        .popup_text{
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: #444;
            line-height: 1.7;
        }
        .popup_text p{
            margin-bottom: 14px;
        }
        .popup_text ul{
            margin-bottom: 14px;
            padding-left: 20px;
        }
        .popup_text ul li{
            margin-bottom: 4px;
        }
        .popup_text strong{
            color: #1a1a1a;
        }
        .page_header{
            padding: 70px 0 40px;
            text-align: center;
            background: #f9fafb;
        }
        .page_header_title{
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
        }
        .page-head_label {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 4px;
            color: #2c9e52;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .page_header_subtitle{
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            color: #666666;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .page_suptitle{
            font-family: 'Montserrat', sans-serif;
            font-size: 46px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 14px;
        }
        .main{
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: linear-gradient(to top right, #eaf3eb 70%,#badabe 100%);
            min-height: 150px;
        }
        .cont{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            
        }
        .sec_title{
            font-size: 38px;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .sec_subtitle{
            font-size: 18px;
            color: #777777;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 400;
        }
        .sec_suptitle{
            font-size: 25px;
            font-weight: 600;
            letter-spacing: 4px;
            color: black;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
        }
        .adv_sec{
            padding: 80px 0;
            background-color: #f9fafb;
        }
        .adv_grid{
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .adv_item{
            background: white;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s;
            text-align: center;
            flex: 1 1 180px;
            min-width: 160px;
        }
        .adv_item:hover{
            transform: translateY(-4px);
        }
        .adv_num{
            display: block;
            font-size: 42px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            background: linear-gradient(135deg, #2c9e52, #7ec395);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .adv_text{
            display: block;
            font-size: 15px;
            color: black;
            margin-top: 8px;
        }
        .for_whom{
            padding: 80px 0;
            background-color: #ffffff;
        }
        .whom_grid{
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
            gap: 30px;
        }
        .whom_card{
            background: #ffffff;
            border: none;
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }
        .whom_card::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7ec395, #2c9e52);
            border-radius: 16px 16px 0 0;
        }
        .whom_card:hover{
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
            transform: translateY(-6px);
        }
        .icon{
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: #f0faf3;
            border-radius: 18px;
            padding: 14px;
        }
        .whom_card h3{
            font-size: 19px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .whom_card p{
            font-size: 14px;
            color: #888888;
            line-height: 1.6;
        }
        .work_container{
            display: flex;
            gap: 48px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        .feedback{
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            padding: 28px 24px 24px 24px;
            margin-bottom: 30px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            text-align: center;
        }
        .feedback p{
            font-size: 24px;
        }
        .colsult_bttn{
            flex-shrink: 0; 
        }
        .work{
            padding: 80px 0;
            background-color: #f9fafb;
        }
        .all-steps{
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0px;
            position: relative;
        }
        .icon_step{
            width: 80px;
            height: 80px;
            min-width: 80px;
            background: #f0faf3;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin: 0 auto;
            object-fit: contain;
        }
        .icon_step img{
            display: block;
            height: 40px;
            width: auto;
        }
        .step_container{
            width: 100%;
            max-width: 550px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            position: relative;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .step_container:hover{
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }     
        .step{
            background: white;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 18px;
            display: flex;
            gap: 24px;
            width: 100%;
            max-width: 580px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
      /*  .step::before{
            content: '';
            position: absolute;
            top: 50px;
            left: 60px;
            width: 2px;
            height: calc(100% + 18px);
            background: linear-gradient(to bottom, #2c9e52, #2c9e52);
            z-index: -1;
            border-radius: 2px;
            transform: translateY(-5%);
        }*/
        /* Стрелки между шагами */

        .step_num{
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: linear-gradient(135deg,#7ec395,#2c9e52);
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            box-shadow: 0 6px 18px rgba(44, 158, 82, 0.3);
            position: relative;
            z-index: 3;
           
        }
        .step p{
            font-size: 17px;
            color: black;
            line-height: 1.5;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }
        
        .trust-block {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
            padding: 28px 24px 24px 24px;
            margin-bottom: 30px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .trust-title {
            font-size: 26px;
            font-weight: 700;
            color: #1a2a3a;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .trust-sub {
            font-size: 26px;
            font-weight: 700;
            color: #1a2a3a;
            letter-spacing: -0.3px;
            border-left: 3px solid #2c9e52;
            padding-left: 14px;
            margin-bottom: 24px;
        }
        .logo-single {
            text-align: center;
            margin: 20px 0;
            padding: 10px;
            background: #f8fafc;
            border-radius: 16px;
        }

        .logo-img {
            max-width: 100%;
            height: auto;
            max-height: 500px;
            width: auto;
            display: block;
            margin: 0 auto;
        }
        
        .work_right{
            flex: 0.8;
            min-width: 280px;
            align-items: center;
        }
        .work_left{
            flex: 1.2;
            min-width: 280px;
        }
        .partners{
            font-size: 14px;
            color: #6c7a8a;
            margin-bottom: 24px;
            font-weight: 500;
        }
    @media (max-width: 1024px) {
            .burger{
                display: flex;
            }
            .header_cont{
                flex-wrap: wrap;
                position: relative;
            }
            .header_nav, .header_btn{
                display: none;
                width: 100%;
            }
            .header_nav.active, .header_btn.active{
                display: block;
            }
            .header_menu{
                flex-direction: column;
                gap: 0;
                padding: 16px 0;
                border-top: 1px solid #edf0f4;
            }
            .header_menu li{
                width: 100%;
            }
            .header_menu a{
                display: block;
                padding: 12px 0;
                font-size: 16px;
                border-bottom: 1px solid #f5f5f5;
            }
            .header_btn{
                padding-bottom: 16px;
            }
            .header_btn .btn{
                display: block;
                text-align: center;
                width: 100%;
            }
            .cont {
                padding: 0 16px;
            }
        }
        @media(max-width: 768px){
            .sec_title{
                font-size: 26px !important;
            }
            .sec_subtitle{
                font-size: 15px;
                margin-bottom: 30px !important;
            }
            .page_header_title{
                font-size: 28px !important;
            }
            .page_header_subtitle{
                font-size: 15px !important;
            }
            .page_suptitle{
                font-size: 11px;
                letter-spacing: 3px;
            }
            .page-head_title{
                font-size: 28px !important;
            }
            .page-head_label{
                font-size: 11px;
                letter-spacing: 3px;
            }
            .btn{
                padding: 14px 20px;
                font-size: 14px;
                width: 100%;
                text-align: center;
            }
            .footer_cont{
                flex-direction: column !important;
                gap: 20px !important;
            }
            .map{
                width: 100%;
                min-width: 100%;
            }
            .map iframe{
                height: 220px;
            }
            .footer_info{
                width: 100%;
                text-align: center;
            }
            .copyright{
                text-align: center;
            }
            .popup{
                padding: 24px 18px;
                max-height: 85vh;
                width: 95%;
            }
            .popup_title{
                font-size: 18px !important;
            }
            .popup_text{
                font-size: 13px !important;
            }
            .adv_grid{
                flex-wrap: wrap;
                gap: 12px;
                justify-content: center
            }
            .adv_item{
                flex: 1 1 45%;
                min-width: 140px;
                padding: 16px 10px;
            }
            .adv_num{
                font-size: 28px;
            }
            .adv_text{
                font-size: 13px;
            }
            .whom_grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .whom_card{
                padding: 20px 14px;
            }
            .whom_card h3{
                font-size: 16px;
            }
            .whom_card p{
                font-size: 13px;
            }
            .icon{
                width: 50px;
                height: 50px;
                padding: 10px;
                margin-bottom: 14px;
            }
            .work_container{
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .all_steps{
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .step{
                max-width: 100%;
                padding: 16px 14px;
                gap: 12px;
                flex-direction: row;
                align-items: center;
                text-align: center;
                border-radius: 12px;
                margin-bottom: 10px;
            }
            .step::before{
                display: none;
            }
            .step:last-child::before{
                display: none;
            }
            .step::after{
                display: none;
            }
            .step_num{
                width: 42px;
                height: 42px;
                min-width: 42px;
                font-size: 18px;
                border-radius: 50%;
            }
            .step_container{
                max-width: 100%;
                padding: 14px;
                border-radius: 10px;
                margin-bottom: 10px;
            }
            .icon_step{
                width: 48px;
                height: 48px;
                min-width: 48px;
                border-radius: 10px;
            }
            .icon_step img{
                height: 24px;
            }
            .step p{
                font-size: 14px;
                line-height: 1.4;
            }
            .feedback{
                padding: 24px 16px;
            }
            .feedback p{
                font-size: 18px;
            }
            .feedback .icon_step{
                width: 56px;
                height: 56px;
                min-width: 56px;
            }
        }
        @media(max-width: 480px){
            .header_logo img{
                max-width: 120px;
            }
            .sec_title{
                font-size: 22px !important;
            }
            .adv_grid{
                grid-template-columns: 1fr;
            }
            .whom_grid{
                grid-template-columns: 1fr;
            }
            .step{
                flex-direction: column;
                text-align: center;
            }
            .icon_step{margin: 0 auto;}
        }