.hdr_x92 {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav_m45 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_k73 {
    width: 240px;
    height: 80px;
    object-fit: contain;
}

.menu_p31 {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu_p31 a {
    color: #333;
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    transition: color 0.3s;
}

.menu_p31 a:hover {
    color: #0066cc;
}

.hero_w84 {
    margin-top: 110px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.hero_content_j62 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero_img_t95 {
    width: 800px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta_btn_h37 {
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.cta_btn_h37:hover {
    transform: translateY(-2px);
    background: #0052a3;
}

.process_v28 {
    padding: 80px 20px;
    background: white;
}

.process_grid_k94 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.process_img_x61 {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features_j51 {
    padding: 80px 20px;
    background: #f8f9fa;
}

.features_grid_w37 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features_img_k82 {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services_x83 {
    padding: 80px 20px;
    background: white;
}

.services_container_p64 {
    max-width: 1200px;
    margin: 0 auto;
}

.services_img_j92 {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.testimonials_m47 {
    padding: 80px 20px;
    background: #f0f2f5;
}

.testimonial_img_t83 {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact_v84 {
    padding: 80px 20px;
    background: white;
}

.contact_form_w47 {
    max-width: 600px;
    margin: 0 auto;
}

.input_m92, .textarea_p74 {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
}

.submit_btn_j65 {
    width: 100%;
    padding: 15px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.footer_k92 {
    background: #333;
    color: white;
    padding: 40px 20px;
}

.cookie_consent_x74 {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.cookie_buttons_p83 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.accept_btn_t92, .reject_btn_w47 {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.accept_btn_t92 {
    background: #0066cc;
    color: white;
}

.reject_btn_w47 {
    background: #666;
    color: white;
}

@media (max-width: 768px) {
    .nav_m45 {
        flex-direction: column;
        gap: 20px;
    }

    .menu_p31 {
        flex-direction: column;
        align-items: center;
    }

    .process_grid_k94, .features_grid_w37 {
        grid-template-columns: 1fr;
    }

    .hero_img_t95, .process_img_x61, .features_img_k82, .services_img_j92 {
        width: 100%;
        height: auto;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about_k73 {
    padding: 80px 20px;
    background: #ffffff;
}

.about_grid_w92 {
    max-width: 1200px;
    margin: 0 auto;
}

.about_content_m84 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.expertise_btn_t47 {
    background: #0066cc;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculator_p93 {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calculator_content_k82 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.calculate_btn_m38 {
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 30px;
}

.services_grid_h38 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service_card_w75 {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service_card_w75:hover {
    transform: translateY(-5px);
}

.compare_service_btn_k91 {
    background: #0066cc;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.testimonials_grid_x92 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.testimonial_card_w29 {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.reviews_btn_h56 {
    background: #0066cc;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer_content_t83 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer_links_w64 {
    display: flex;
    gap: 30px;
}

.footer_links_w64 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer_links_w64 a:hover {
    color: #0066cc;
}

.footer_info_m37 {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
    .testimonials_grid_x92 {
        grid-template-columns: 1fr;
    }

    .footer_content_t83 {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer_links_w64 {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .service_card_w75 {
        padding: 20px;
    }
}

.cta_btn_h37 {
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta_btn_h37:hover {
    transform: translateY(-2px);
    background: #0052a3;
    color: white;
}