@font-face {
    font-family: icomoon;
    src: url('../fonts/icomoon.ttf');
}


:root {
    --prp_bg: #F6F2ED;
    --prp_wrapper: #fff;
    --prp_subtitle: #086AD8;
    --prp_heading: #000;
    --prp_text: #696969;
    --prp_button: #086AD8;
    --prp_block1: #fff;
    --prp_block2: #F8F8F8;
    --prp_footer: #020626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.prp_wrap {
    max-width: 90%;
    width: 100%;
    margin: 20px auto;
    position: relative;
    background: #fff;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--prp_text);
    background-color: var(--prp_bg);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--prp_heading);
    font-weight: 600;
    line-height: 1.2;
}

.prp_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prp_btn {
    display: inline-block;
    background-color: var(--prp_button);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.prp_btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.prp_section {
    padding: 80px 0;
}


.prp_topline {
    background-color: var(--prp_wrapper);
    padding: 8px 0;
    font-size: 14px;
}

.prp_topline_content {
    display: flex;
    justify-content: space-between;
}

.prp_topline_left {
    display: flex;
    gap: 20px;
}

.prp_topline_item {
    display: flex;
    align-items: center;
    gap: 5px;
}


.prp_header {
    background-color: var(--prp_wrapper);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.prp_header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prp_logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--prp_heading);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.prp_logo img {
    width: 35px;
}

.prp_nav {
    display: flex;
    align-items: center;
}

.prp_nav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.prp_nav_link {
    text-decoration: none;
    color: var(--prp_heading);
    font-weight: 500;
    transition: color 0.3s ease;
}

.prp_nav_link:hover {
    color: var(--prp_button);
}

.prp_nav_btn {
    margin-left: 30px;
}

.prp_mobile_toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


.prp_banner {
    background: var(--prp_wrapper) url('../img/bg.png') left center no-repeat;
    padding: 50px 0 0 0;
}

.prp_banner_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prp_banner_text {
    flex: 1;
    max-width: 50%;
}

.prp_banner_subtitle {
    color: var(--prp_subtitle);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prp_banner_title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.prp_banner_desc {
    font-size: 18px;
    margin-bottom: 30px;
}

.prp_banner_btns {
    display: flex;
    gap: 15px;
}

.prp_banner_img {
    flex: 1;
    text-align: center;
}

.prp_banner_img img {
    max-width: 100%;
    height: auto;
    margin-bottom: -5px;
}


.prp_whyus {
    background-color: var(--prp_bg);
}

.prp_whyus_title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.prp_whyus_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.prp_whyus_item {
    background-color: var(--prp_wrapper);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: transform 0.3s ease;
}

.prp_whyus_item:hover {
    transform: translateY(-5px);
}

.prp_whyus_number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
}

.prp_whyus_icon {
    font-size: 40px;
    color: var(--prp_button);
    margin-bottom: 10px;
}

.prp_whyus_item_title {
    font-size: 22px;
    margin-bottom: 15px;
}


.prp_about_content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.prp_about_img {
    flex: 1;
}

.prp_about_img img {
    max-width: 100%;
    border-radius: 8px;
}

.prp_about_text {
    flex: 1;
}

.prp_about_title {
    font-size: 36px;
    margin-bottom: 20px;
}

.prp_about_desc {
    margin-bottom: 30px;
}

.prp_about_stats {
    display: flex;
    gap: 40px;
}

.prp_stat_item {
    text-align: center;
}

.prp_stat_number {
    font-size: 36px;
    font-weight: 700;
    color: var(--prp_button);
}

.prp_stat_label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.prp_services {
    background: var(--prp_footer) url('../img/feature-h2.png') center no-repeat;
    color: white;
}

.prp_services .prp_section_title {
    color: white;
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.prp_services .prp_section_desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.8);
}

.prp_services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.prp_service_item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prp_service_item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.prp_service_icon {
    font-size: 40px;
    color: #D2A98E;
    margin-bottom: 20px;
}

.prp_service_title {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.prp_service_desc {
    color: rgba(255, 255, 255, 0.7);
}

.prp_services_extra {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 8px;
}

.prp_services_extra_text {
    flex: 1;
}

.prp_services_extra_text p {
    margin-bottom: 12px;
}

.prp_services_extra_title {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.prp_services_extra_img {
    flex: 1;
    text-align: center;
}

.prp_services_extra_img img {
    max-width: 100%;
    border-radius: 8px;
}


.prp_testimonials {
    background-color: var(--prp_bg);
}

.prp_testimonials_title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}



.prp_testimonial_item {
    background-color: var(--prp_wrapper);
    padding: 30px;
    border-radius: 8px;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prp_testimonial_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.prp_testimonial_avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.prp_testimonial_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prp_testimonial_info {
    flex: 1;
}

.prp_testimonial_name {
    font-weight: 600;
    margin-bottom: 5px;
}

.prp_testimonial_rating {
    color: #FFC107;
}

.prp_testimonial_text {
    font-style: italic;
}


.prp_cta {
    background: var(--prp_wrapper) url('../img/bg.png') left center no-repeat;
    background-size: 100%;
    text-align: center;
    padding: 100px 0;
}

.prp_cta_title {
    font-size: 36px;
    margin-bottom: 20px;
}

.prp_cta_desc {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}


.prp_footer {
    background-color: var(--prp_footer);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.prp_footer_content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.slick-dots {
    bottom: -35px !important;
}

.prp_footer_logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.prp_footer_logo img {
    width: 32px;
    margin-right: 4px;
}

.prp_footer_contact {
    max-width: 350px;
}

.prp_footer_contact_item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.prp_footer_contact_icon {
    margin-right: 10px;
    margin-top: 3px;
}

.prp_footer_menu {
    display: flex;
    gap: 60px;
    min-width: 300px;
}

.prp_footer_menu_title {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.prp_footer_menu_list {
    list-style: none;
}

.prp_footer_menu_item {
    margin-bottom: 10px;
}

.prp_footer_menu_link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.prp_footer_menu_link:hover {
    color: white;
}

.prp_footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prp_footer_links {
    display: flex;
    gap: 20px;
}

.prp_footer_link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.prp_footer_link:hover {
    color: white;
}


.prp_cookie_popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--prp_wrapper);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 1001;
    display: none;
}

.prp_cookie_title {
    font-size: 18px;
    margin-bottom: 10px;
}

.prp_cookie_desc {
    margin-bottom: 20px;
    font-size: 14px;
}

.prp_cookie_options {
    margin-bottom: 20px;
}

.prp_cookie_option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.prp_cookie_option input {
    margin-right: 10px;
}

.prp_cookie_btns {
    display: flex;
    gap: 10px;
}

.prp_cookie_btn {
    flex: 1;
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.prp_cookie_accept {
    background-color: var(--prp_button);
    color: white;
}

.prp_cookie_reject {
    background-color: #f0f0f0;
    color: var(--prp_text);
}


.prp_contact_info {
    background: linear-gradient(135deg, var(--prp_wrapper) 0%, #f8fafc 100%);
    padding: 100px 0;
}

.prp_contact_info_header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.prp_contact_subtitle {
    color: var(--prp_subtitle);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.prp_contact_title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.prp_contact_desc {
    font-size: 18px;
    color: var(--prp_text);
}

.prp_contact_info_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.prp_contact_info_item {
    background-color: var(--prp_wrapper);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.prp_contact_info_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prp_contact_info_icon {
    font-size: 30px;
    color: var(--prp_button);
    margin-bottom: 15px;
}

.prp_contact_info_title {
    font-size: 22px;
    margin-bottom: 15px;
}

.prp_contact_info_text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--prp_heading);
}

.prp_contact_info_note {
    font-size: 14px;
    color: var(--prp_text);
}

.prp_contact_form_section {
    background-color: var(--prp_bg);
    padding: 100px 0;
}

.prp_contact_form_content {
    max-width: 800px;
    margin: 0 auto;
}

.prp_contact_form_header {
    text-align: center;
    margin-bottom: 50px;
}

.prp_contact_form_title {
    font-size: 36px;
    margin-bottom: 15px;
}

.prp_contact_form_desc {
    color: var(--prp_text);
    font-size: 18px;
}

.prp_contact_form {
    background-color: var(--prp_wrapper);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.prp_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.prp_form_group {
    margin-bottom: 30px;
}

.prp_form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--prp_heading);
}

.prp_form_input,
.prp_form_textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.prp_form_input:focus,
.prp_form_textarea:focus {
    outline: none;
    border-color: var(--prp_button);
    box-shadow: 0 0 0 3px rgba(8, 106, 216, 0.1);
}

.prp_form_textarea {
    resize: vertical;
    min-height: 150px;
}

.prp_form_btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.prp_btn_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prp_loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.prp_contact_success {
    background-color: var(--prp_wrapper);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.prp_contact_success_icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.prp_contact_success_title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4CAF50;
}

.prp_contact_success_desc {
    font-size: 18px;
    color: var(--prp_text);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .prp_contact_info_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prp_form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .prp_contact_form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .prp_contact_title {
        font-size: 36px;
    }

    .prp_contact_form_title {
        font-size: 28px;
    }

    .prp_contact_form {
        padding: 20px;
    }
}

.prp_company_hero {
    background: linear-gradient(135deg, var(--prp_wrapper) 0%, #f8fafc 100%);
    padding: 120px 0;
}

.prp_company_hero_content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.prp_company_hero_text {
    flex: 1;
}

.prp_company_subtitle {
    color: var(--prp_subtitle);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.prp_company_title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--prp_heading) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prp_company_desc {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.prp_company_stats {
    display: flex;
    gap: 40px;
}

.prp_company_stat {
    text-align: center;
}

.prp_company_stat_number {
    font-size: 36px;
    font-weight: 700;
    color: var(--prp_button);
    margin-bottom: 5px;
}

.prp_company_stat_label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--prp_text);
}

.prp_company_hero_img {
    flex: 1;
    text-align: center;
    position: relative;
}

.prp_company_hero_img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.prp_company_hero_img:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.prp_company_values {
    background-color: var(--prp_bg);
}

.prp_company_values_header {
    text-align: center;
    margin-bottom: 60px;
}

.prp_company_values_title {
    font-size: 36px;
    margin-bottom: 15px;
}

.prp_company_values_desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.prp_company_values_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.prp_company_value_item {
    background-color: var(--prp_wrapper);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prp_company_value_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--prp_button), #D2A98E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.prp_company_value_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prp_company_value_item:hover::before {
    transform: scaleX(1);
}

.prp_company_value_icon {
    font-size: 50px;
    color: var(--prp_button);
    margin-bottom: 15px;
}

.prp_company_value_title {
    font-size: 24px;
    margin-bottom: 15px;
}

.prp_company_value_desc {
    color: var(--prp_text);
}

@media (max-width: 992px) {
    .prp_company_hero_content {
        flex-direction: column;
    }

    .prp_company_hero_img {
        order: -1;
    }

    .prp_company_values_grid {
        grid-template-columns: 1fr;
    }

    .prp_company_stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .prp_company_title {
        font-size: 36px;
    }

    .prp_company_stats {
        flex-direction: column;
        gap: 20px;
    }
}



.prp_services_hero {
    background: linear-gradient(135deg, #f8fafc 0%, var(--prp_wrapper) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.prp_services_hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 106, 216, 0.05) 0%, rgba(8, 106, 216, 0) 70%);
    border-radius: 50%;
}

.prp_services_hero_content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.prp_services_hero_text {
    flex: 1;
}

.prp_services_subtitle {
    color: var(--prp_subtitle);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.prp_services_title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--prp_heading) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prp_services_desc {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.prp_services_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.prp_services_feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prp_services_feature i {
    color: var(--prp_button);
}

.prp_services_hero_img {
    flex: 1;
    position: relative;
    text-align: center;
}

.prp_services_hero_img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.prp_services_hero_img:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.prp_services_floating_element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--prp_wrapper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    color: var(--prp_button);
    animation: float 6s ease-in-out infinite;
}

.prp_services_floating_1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.prp_services_floating_2 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.prp_services_floating_3 {
    bottom: 20%;
    left: 0%;
    animation-delay: 4s;
}

.prp_services_detailed {
    background-color: var(--prp_bg);
}

.prp_services_detailed_header {
    text-align: center;
    margin-bottom: 80px;
}

.prp_services_detailed_title {
    font-size: 36px;
    margin-bottom: 15px;
}

.prp_services_detailed_desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.prp_services_process {
    max-width: 900px;
    margin: 0 auto;
}

.prp_services_process_item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.prp_services_process_item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 100px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--prp_button), #D2A98E);
}

.prp_services_process_number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    margin-right: 30px;
    min-width: 80px;
}

.prp_services_process_content {
    flex: 1;
    padding-right: 30px;
}

.prp_services_process_title {
    font-size: 24px;
    margin-bottom: 15px;
}

.prp_services_process_desc {
    color: var(--prp_text);
}

.prp_services_process_icon {
    font-size: 50px;
    color: var(--prp_button);
    min-width: 80px;
    text-align: center;
}

@media (max-width: 992px) {
    .prp_services_hero_content {
        flex-direction: column;
    }

    .prp_services_hero_img {
        order: -1;
    }

    .prp_services_features {
        grid-template-columns: 1fr;
    }

    .prp_services_process_item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        background: var(--prp_wrapper);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .prp_services_process_item:not(:last-child)::after {
        display: none;
    }

    .prp_services_process_number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .prp_services_process_content {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .prp_services_title {
        font-size: 36px;
    }

    .prp_services_floating_element {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}


.prp_terms_hero {
    background: linear-gradient(135deg, var(--prp_wrapper) 0%, #f8fafc 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.prp_terms_title {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--prp_heading) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prp_terms_subtitle {
    font-size: 18px;
    color: var(--prp_text);
    margin-bottom: 30px;
}

.prp_terms_intro {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.prp_terms_content {
    background-color: var(--prp_bg);
    padding: 80px 0;
}

.prp_terms_sections {
    max-width: 900px;
    margin: 0 auto;
}

.prp_terms_section {
    background-color: var(--prp_wrapper);
    margin-bottom: 30px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--prp_subtitle);
}

.prp_terms_section_title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--prp_heading);
}

.prp_terms_section_content {
    color: var(--prp_text);
    line-height: 1.7;
}

.prp_terms_list {
    margin: 15px 0;
    padding-left: 20px;
}

.prp_terms_list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

.prp_terms_list li::before {
    content: "•";
    color: var(--prp_subtitle);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

@media (max-width: 768px) {
    .prp_terms_title {
        font-size: 36px;
    }

    .prp_terms_section {
        padding: 25px 20px;
    }

    .prp_terms_section_title {
        font-size: 22px;
    }
}

.prp_policy_hero {
    background: linear-gradient(135deg, var(--prp_wrapper) 0%, #f8fafc 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.prp_policy_title {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--prp_heading) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prp_policy_subtitle {
    font-size: 18px;
    color: var(--prp_text);
    margin-bottom: 30px;
}

.prp_policy_intro {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.prp_policy_content {
    background-color: var(--prp_bg);
    padding: 80px 0;
}

.prp_policy_sections {
    max-width: 900px;
    margin: 0 auto;
}

.prp_policy_section {
    background-color: var(--prp_wrapper);
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--prp_button);
}

.prp_policy_section_title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--prp_heading);
}

.prp_policy_section_content {
    color: var(--prp_text);
    line-height: 1.7;
}

.prp_policy_list {
    margin: 20px 0;
    padding-left: 20px;
}

.prp_policy_list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.prp_policy_list li::before {
    content: "•";
    color: var(--prp_button);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.prp_policy_contact {
    background-color: var(--prp_bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .prp_policy_title {
        font-size: 36px;
    }

    .prp_policy_section {
        padding: 30px 20px;
    }

    .prp_policy_section_title {
        font-size: 24px;
    }
}


.prp_cookies_hero {
    background: linear-gradient(135deg, var(--prp_wrapper) 0%, #f8fafc 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.prp_cookies_title {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--prp_heading) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prp_cookies_subtitle {
    font-size: 18px;
    color: var(--prp_text);
    margin-bottom: 30px;
}

.prp_cookies_intro {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.prp_cookies_content {
    background-color: var(--prp_bg);
    padding: 80px 0;
}

.prp_cookies_sections {
    max-width: 900px;
    margin: 0 auto;
}

.prp_cookies_section {
    background-color: var(--prp_wrapper);
    margin-bottom: 30px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #D2A98E;
}

.prp_cookies_section_title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--prp_heading);
}

.prp_cookies_section_content {
    color: var(--prp_text);
    line-height: 1.7;
}

.prp_cookies_types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.prp_cookie_type {
    background-color: var(--prp_bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.prp_cookie_type_title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--prp_heading);
}

.prp_cookies_list {
    margin: 15px 0;
    padding-left: 20px;
}

.prp_cookies_list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.prp_cookies_list li::before {
    content: "•";
    color: #D2A98E;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.prp_cookies_note {
    background-color: var(--prp_bg);
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid var(--prp_subtitle);
    margin-top: 15px;
    font-style: italic;
}

.prp_cookies_contact {
    background-color: var(--prp_bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .prp_cookies_title {
        font-size: 36px;
    }

    .prp_cookies_section {
        padding: 25px 20px;
    }

    .prp_cookies_section_title {
        font-size: 22px;
    }

    .prp_cookies_types {
        grid-template-columns: 1fr;
    }
}


























@media (max-width: 992px) {

    .prp_banner_content,
    .prp_about_content,
    .prp_services_extra {
        flex-direction: column;
    }

    .prp_banner_text,
    .prp_about_img,
    .prp_about_text,
    .prp_services_extra_text,
    .prp_services_extra_img {
        max-width: 100%;
    }

    .prp_whyus_grid,
    .prp_services_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prp_footer_content {
        flex-direction: column;
        gap: 40px;
    }

    .prp_footer_menu {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .prp_mobile_toggle {
        display: block;
    }

    .prp_topline {
        display: none;
    }

    .prp_banner_img img {
        max-width: 350px;
        margin-top: 40px;
    }

    .prp_wrap {
        max-width: 96%;
    }

    .prp_logo {
        font-size: 20px;
    }

    .prp_services_extra {
        gap: 30px;
        padding: 50px 20px;
    }

    .prp_footer_content {
        gap: 15px;
    }

    .prp_testimonials_title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .prp_nav {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--prp_wrapper);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .prp_nav.active {
        right: 0;
    }

    .prp_nav_list {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .prp_nav_btn {
        margin-left: 0;
    }

    .prp_mobile_close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    .prp_banner_title {
        font-size: 36px;
    }

    .prp_whyus_grid,
    .prp_services_grid {
        grid-template-columns: 1fr;
    }

    .prp_about_stats {
        flex-direction: column;
        gap: 20px;
    }

    .prp_footer_menu {
        flex-direction: column;
        gap: 30px;
    }

    .prp_footer_bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .prp_cookie_popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .prp_banner_btns {
        text-align: center;
        flex-direction: column;
    }

    .prp_banner_title {
        font-size: 32px;
    }

    .prp_section {
        padding: 60px 0;
    }

    .prp_services_process_item {
        margin-bottom: 25px
    }
}