:root {
    --primary-color_9f3: #FF6B35;
    --secondary-color_8j2: #1A936F;
    --dark-color_7h1: #114B5F;
    --light-color_3k9: #F7F7F7;
    --text-color_2t5: #333333;
    --text-light_6y8: #777777;
    --white_1p0: #FFFFFF;
    --black_4q7: #000000;
    --transition_5g6: all 0.3s ease;
    --shadow_7u8: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius_3n4: 8px;
    --max-width_2j9: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color_2t5);
    background-color: var(--light-color_3k9);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
header .container_pl6
{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.container_pl6 {
    width: 100%;
    max-width: var(--max-width_2j9);
    margin: 0 auto;
    padding: 0 20px;
}

.header_zx9 {
    background-color: var(--white_1p0);
    box-shadow: var(--shadow_7u8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 30px;
}

/*.header-container_kl4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}*/

.logo-link_qw2 {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition_5g6);
}

.logo-link_qw2:hover {
    opacity: 0.8;
}

.brand-name_rt5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color_7h1);
}

.nav-menu_f8e {
    display: flex;
    align-items: center;
}

.burger-toggle_gh3 {
    display: none;
}

.burger-label_p6y {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.burger-line_1mn {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color_7h1);
    transition: var(--transition_5g6);
}

.nav-list_ty2 {
    display: flex;
    gap: 30px;
}

.nav-item_l9p {
    position: relative;
}

.nav-link_3d4 {
    font-weight: 600;
    padding: 5px 0;
    transition: var(--transition_5g6);
    position: relative;
}

.nav-link_3d4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color_9f3);
    transition: var(--transition_5g6);
}

.nav-link_3d4:hover::after,
.nav-link_3d4.active::after {
    width: 100%;
}

.nav-link_3d4.active {
    color: var(--primary-color_9f3);
}

.main-content_xk8 {
    margin-top: 80px;
    padding: 40px 0;
}

.hero-section_bn3 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg.webp') no-repeat center center/cover;
    color: var(--white_1p0);
    padding: 100px 0;
    text-align: center;
}

.hero-title_9m1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text_4f7 {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn-explore_2w5 {
    display: inline-block;
    background-color: var(--primary-color_9f3);
    color: var(--white_1p0);
    padding: 12px 30px;
    border-radius: var(--radius_3n4);
    font-weight: 600;
    transition: var(--transition_5g6);
    border: none;
    cursor: pointer;
}

.btn-explore_2w5:hover {
    background-color: var(--secondary-color_8j2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.features-section_yt6 {
    padding: 80px 0;
}

.section-title_jk8 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-color_7h1);
    position: relative;
}

.section-title_jk8::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color_9f3);
    margin: 15px auto 0;
}

.features-grid_7h2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card_l3q {
    background-color: var(--white_1p0);
    padding: 30px;
    border-radius: var(--radius_3n4);
    box-shadow: var(--shadow_7u8);
    text-align: center;
    transition: var(--transition_5g6);
}

.feature-card_l3q:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon_9p4 {
    margin-bottom: 20px;
}

.feature-title_8u3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color_7h1);
}

.feature-text_5t9 {
    color: var(--text-light_6y8);
}

.showcase-section_rf4 {
    padding: 80px 0;
    background-color: var(--white_1p0);
}

.showcase-grid_n7y {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.showcase-item_2k1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius_3n4);
    box-shadow: var(--shadow_7u8);
}

.showcase-img_9o0 {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition_5g6);
}

.showcase-item_2k1:hover .showcase-img_9o0 {
    transform: scale(1.05);
}

.showcase-title_3p8 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white_1p0);
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.btn-explore_2w5 {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.footer_hn7 {
    background-color: var(--dark-color_7h1);
    color: var(--white_1p0);
    padding: 60px 0 20px;
}

.footer-content_qp3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand_2m9 {
    margin-bottom: 20px;
}

.footer-text_8j2 {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.links-title_5f1 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.links-title_5f1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color_9f3);
}

.links-list_k9l {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link_7y5 {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition_5g6);
}

.footer-link_7y5:hover {
    color: var(--white_1p0);
    padding-left: 5px;
}

.footer-copyright_3d8 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.shop-hero_b3m {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    color: var(--white_1p0);
    padding: 100px 0;
    text-align: center;
}

.collection-grid_2v7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.collection-card_8k4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    background-color: var(--white_1p0);
    border-radius: var(--radius_3n4);
    overflow: hidden;
    box-shadow: var(--shadow_7u8);
}

.collection-img_5h1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-content_3n2 {
    padding: 30px;
}

.collection-title_7f6 {
    font-size: 1.8rem;
    color: var(--dark-color_7h1);
    margin-bottom: 15px;
}

.collection-desc_9t1 {
    margin-bottom: 20px;
    color: var(--text-light_6y8);
}

.collection-features_1y8 {
    margin-bottom: 25px;
    padding-left: 20px;
}

.collection-features_1y8 li {
    margin-bottom: 8px;
    position: relative;
}

.collection-features_1y8 li::before {
    content: '•';
    color: var(--primary-color_9f3);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.cta-section_r4t {
    background-color: var(--primary-color_9f3);
    color: var(--white_1p0);
    padding: 80px 0;
    text-align: center;
    margin-top: 80px;
}

.cta-title_6j9 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-text_2h1 {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.about-hero_4j7 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    color: var(--white_1p0);
    padding: 100px 0;
    text-align: center;
}

.story-content_8t3 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text_9q1 {
    margin-bottom: 40px;
    color: var(--text-light_6y8);
    line-height: 1.8;
}

.milestones_3n8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.milestone_7f2 {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white_1p0);
    border-radius: var(--radius_3n4);
    box-shadow: var(--shadow_7u8);
    transition: var(--transition_5g6);
}

.milestone_7f2:hover {
    transform: translateY(-10px);
}

.milestone-title_4r9 {
    font-size: 1.5rem;
    color: var(--primary-color_9f3);
    margin: 15px 0 10px;
}

.milestone-text_2t6 {
    color: var(--text-light_6y8);
    font-size: 0.9rem;
}

.team-section_6y5 {
    padding: 80px 0;
    background-color: var(--white_1p0);
}

.team-grid_3k9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member_1p4 {
    text-align: center;
    background-color: var(--light-color_3k9);
    padding: 30px 20px;
    border-radius: var(--radius_3n4);
    box-shadow: var(--shadow_7u8);
    transition: var(--transition_5g6);
}

.team-member_1p4:hover {
    transform: translateY(-10px);
}

.member-photo_7h2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--white_1p0);
    box-shadow: var(--shadow_7u8);
}

.member-photo_7h2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name_8t2 {
    font-size: 1.3rem;
    color: var(--dark-color_7h1);
    margin-bottom: 5px;
}

.member-position_4q1 {
    color: var(--primary-color_9f3);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio_9w3 {
    color: var(--text-light_6y8);
    font-size: 0.9rem;
}

.values-section_2n7 {
    padding: 80px 0;
}

.values-grid_5t3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card_8k1 {
    text-align: center;
    padding: 30px;
    background-color: var(--white_1p0);
    border-radius: var(--radius_3n4);
    box-shadow: var(--shadow_7u8);
    transition: var(--transition_5g6);
}

.value-card_8k1:hover {
    transform: translateY(-10px);
}

.value-title_7f2 {
    font-size: 1.3rem;
    color: var(--dark-color_7h1);
    margin: 20px 0 15px;
}

.value-text_9h4 {
    color: var(--text-light_6y8);
}

.contact-section_8h2 {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-grid_5f6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info_7t3 {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form_6n5 {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item_4k9 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon_2j5 {
    flex-shrink: 0;
    margin-top: 5px;
}

.info-title_6y3 {
    color: #114B5F;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-text_9q2 {
    color: #555;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.form-group_2t7 {
    margin-bottom: 25px;
}

.form-label_4k3 {
    display: block;
    margin-bottom: 8px;
    color: #114B5F;
    font-weight: 600;
}

.form-input_1q5, 
.form-textarea_6y1 {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input_1q5:focus, 
.form-textarea_6y1:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.2);
}

.form-textarea_6y1 {
    resize: vertical;
    min-height: 150px;
}

.privacy-agreement_4h3 {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.privacy-checkbox_7f6 {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #FF6B35;
}

.privacy-text_8t3 {
    color: #555;
    font-size: 0.9rem;
}

.privacy-link_5n1 {
    color: #FF6B35;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link_5n1:hover {
    color: #114B5F;
}

.gradient-btn_2w5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #114B5F 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.gradient-btn_2w5:hover {
    background: linear-gradient(135deg, #114B5F 0%, #FF6B35 100%);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    transform: translateY(-2px);
}

.gradient-btn_2w5:active {
    transform: translateY(0);
}

.btn-icon_9p3 {
    transition: transform 0.3s ease;
}

.gradient-btn_2w5:hover .btn-icon_9p3 {
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .contact-grid_5f6 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info_7t3, 
    .contact-form_6n5 {
        padding: 30px 20px;
    }
    
    .info-item_4k9 {
        flex-direction: column;
        gap: 10px;
    }
}

.text-heavy-section_9x8 {
    padding: 50px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.text-columns_3n7 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.text-column_5m2 {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.column-title_8k4 {
    color: #114B5F;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF6B35;
}

.text-block_7t1 {
    margin-bottom: 30px;
}

.text-block_7t1 p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.disclaimer_4h9 {
    margin-top: 40px;
    padding: 20px;
    background: #f1f1f1;
    border-left: 4px solid #E74C3C;
}

.disclaimer_4h9 p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
}

@media (min-width: 768px) {
    .text-columns_3n7 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .text-column_5m2 {
        padding: 30px;
    }
}

@media (max-width: 320px) {
    .text-heavy-section_9x8 {
        padding: 30px 0;
    }
    
    .column-title_8k4 {
        font-size: 1.2rem;
    }
    
    .text-block_7t1 p {
        font-size: 0.9rem;
    }
    
    .disclaimer_4h9 {
        padding: 15px;
    }
}
.contact-hero_3n9
{
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    color: var(--white_1p0);
    padding: 100px 0;
    text-align: center;
}
.policy-hero_4n2, .terms-hero_6m4 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg1.webp') no-repeat center center/cover;
    color: var(--white_1p0);
    padding: 100px 0;
    text-align: center;
}

.policy-content_7h3, .terms-content_9p2 {
    padding: 80px 0;
}

.policy-article_5t8, .terms-article_3r7 {
    margin-bottom: 50px;
}

.policy-text_8q1, .terms-text_1q5 {
    margin-bottom: 20px;
    color: var(--text-light_6y8);
    line-height: 1.8;
}

.policy-list_3k9, .terms-list_8k9 {
    margin: 20px 0 20px 30px;
    color: var(--text-light_6y8);
}

.policy-list_3k9 li, .terms-list_8k9 li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-list_3k9 li::before, .terms-list_8k9 li::before {
    content: '•';
    color: var(--primary-color_9f3);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .burger-label_p6y {
        display: flex;
    }

    .nav-list_ty2 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white_1p0);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition_5g6);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .burger-toggle_gh3:checked ~ .nav-list_ty2 {
        right: 0;
    }

    .burger-toggle_gh3:checked ~ .burger-label_p6y .burger-line_1mn:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-toggle_gh3:checked ~ .burger-label_p6y .burger-line_1mn:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle_gh3:checked ~ .burger-label_p6y .burger-line_1mn:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title_9m1 {
        font-size: 2rem;
    }

    .hero-text_4f7 {
        font-size: 1rem;
    }

    .section-title_jk8 {
        font-size: 1.8rem;
    }

    .collection-card_8k4 {
        grid-template-columns: 1fr;
    }

    .collection-content_3n2 {
        padding: 20px;
    }
    .showcase-title_3p8
    {
        top: 10px;
    }

}

@media (max-width: 480px) {
    .brand-name_rt5 {
        font-size: 1.2rem;
    }

    .hero-title_9m1 {
        font-size: 1.8rem;
    }

    .section-title_jk8 {
        font-size: 1.5rem;
    }

    .features-grid_7h2, .showcase-grid_n7y {
        grid-template-columns: 1fr;
    }

    .contact-grid_5f6 {
        grid-template-columns: 1fr;
    }

    .info-item_4k9 {
        flex-direction: column;
        text-align: center;
    }

    .milestones_3n8, .team-grid_3k9, .values-grid_5t3 {
        grid-template-columns: 1fr;
    }
}
.text-features_9k7 {
    padding: 80px 0;
    background-color: var(--white_1p0);
}

.text-grid_3q8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.text-item_5t1 {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: start;
}

.text-icon_7w4 {
    position: relative;
}

.text-content_9p1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-title_3f8 {
    font-size: 1.5rem;
    color: var(--dark-color_7h1);
    margin-bottom: 10px;
}

.text-desc_6y5 {
    color: var(--text-light_6y8);
    line-height: 1.8;
}

.svg-animate_2n3 {
    opacity: 0;
    transform: scale(0.8);
    animation: svg-appear_8k9 0.8s forwards;
    animation-delay: 0.3s;
}

.circle-anim_8j2 {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: circle-draw_4h2 1.5s forwards;
    animation-delay: 0.8s;
}

.check-anim_4h6 {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: check-draw_3j8 0.8s forwards;
    animation-delay: 1.8s;
}

.rect-anim_9q3 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: rect-draw_7f1 1.2s forwards;
    animation-delay: 0.8s;
}

.plus-anim_1p7 {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: plus-draw_5k3 0.8s forwards;
    animation-delay: 1.5s;
}

.triangle-anim_5f4 {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: triangle-draw_9p2 1.5s forwards;
    animation-delay: 0.8s;
}

.circle-fill_3k8 {
    transform: scale(0);
    transform-origin: center;
    animation: circle-fill_6m4 0.8s forwards;
    animation-delay: 1.8s;
}

@keyframes svg-appear_8k9 {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes circle-draw_4h2 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes check-draw_3j8 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes rect-draw_7f1 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes plus-draw_5k3 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes triangle-draw_9p2 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes circle-fill_6m4 {
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .text-item_5t1 {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .text-icon_7w4 svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .text-features_9k7 {
        padding: 50px 0;
    }
    
    .text-item_5t1 {
        grid-template-columns: 1fr;
    }
    
    .text-icon_7w4 {
        margin: 0 auto 20px;
    }
    
    .text-title_3f8 {
        text-align: center;
    }
}

@media (max-width: 320px) {
    .text-desc_6y5 {
        font-size: 0.9rem;
    }
    
    .text-title_3f8 {
        font-size: 1.3rem;
    }
}
.ultimate-benefits_x8k {
    padding: 90px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.benefits-wrapper_3t9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.benefits-content_7f2 {
    display: grid;
    gap: 40px;
}

.benefit-card_5n1 {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    align-items: start;
}

.benefit-icon_8j3 {
    position: relative;
    margin-top: 5px;
}

.benefit-title_6y7 {
    font-size: 1.5rem;
    color: #114B5F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-desc_9t3 {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-image_4m7 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper_9q1 {
    position: relative;
    padding-top: 70%; 
}

.feature-image_3k8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-overlay_7j5 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: fade-up_3k9 1s forwards 1.5s;
}

.badge-svg_2n6 {
    width: 30px;
    height: 30px;
}

.overlay-text_8t3 {
    font-weight: 600;
    color: #114B5F;
}

.svg-animate_4q9 {
    opacity: 0;
    transform: scale(0.9);
    animation: pop-in_8j2 0.6s forwards;
}

.outer-circle_3m8 {
    stroke-dasharray: 235;
    stroke-dashoffset: 235;
    animation: draw-circle_9p1 1.2s forwards 0.3s;
}

.inner-circle_9k2 {
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
    animation: draw-circle_9p1 1s forwards 0.8s;
}

.cross_7p1 {
    stroke-dasharray: 85;
    stroke-dashoffset: 85;
    animation: draw-check_4h3 0.6s forwards 1.4s;
}

.square_3f6 {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-square_7m2 1s forwards 0.3s;
}

.x-mark_8p2 {
    stroke-dasharray: 57;
    stroke-dashoffset: 57;
    animation: draw-x_5k9 0.6s forwards 1s;
}

@keyframes pop-in_8j2 {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes draw-circle_9p1 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-check_4h3 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-square_7m2 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-x_5k9 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fade-up_3k9 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefits-image_4m7:hover .feature-image_3k8 {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .benefits-wrapper_3t9 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .image-wrapper_9q1 {
        padding-top: 100%;
    }
}

@media (max-width: 767px) {
    .benefit-card_5n1 {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .benefit-icon_8j3 svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .ultimate-benefits_x8k {
        padding: 60px 0;
    }
    
    .benefit-title_6y7 {
        font-size: 1.3rem;
    }
    
    .benefit-desc_9t3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .benefit-card_5n1 {
        grid-template-columns: 1fr;
    }
    
    .benefit-icon_8j3 {
        margin-bottom: 15px;
    }
    
    .image-overlay_7j5 {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
.text-svg-section_k8j {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.content-wrapper_3p9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
}

.text-content_7f2 {
    display: grid;
    gap: 40px;
}

.text-block_5n1 {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
}

.icon-wrapper_8t3 {
    position: relative;
    margin-top: 5px;
}

.block-title_6y7 {
    font-size: 1.5rem;
    color: #114B5F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.text-columns_9t3 {
    columns: 1;
    column-gap: 30px;
}

.text-columns_9t3 p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    break-inside: avoid;
}

.svg-graphic_4m7 {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-graphic_3k8 {
    max-width: 100%;
    height: auto;
}

.full-width-text_3n9 {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.subtitle_7f8 {
    font-size: 1.3rem;
    color: #114B5F;
    margin-bottom: 20px;
    text-align: center;
}

.svg-animate_4q7 {
    opacity: 0;
    transform: scale(0.9);
    animation: pop-in_8j2 0.6s forwards;
}

.hex-path_9k4 {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: draw-path_9p1 1.2s forwards 0.3s;
}

.diamond_3m8 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: draw-path_9p1 0.8s forwards 0.8s;
}

.circle-path_7p2 {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: draw-path_9p1 1s forwards 0.3s;
}

.cross_9k2 {
    stroke-dasharray: 85;
    stroke-dashoffset: 85;
    animation: draw-path_9p1 0.6s forwards 1s;
}

.cabinet-door_8p2 {
    transform-origin: 200px 300px;
}

.dimension-line_6m2 {
    stroke-dasharray: 310;
    stroke-dashoffset: 310;
    animation: draw-path_9p1 0.8s forwards 1.5s;
}

.dimension-text_5k9 {
    opacity: 0;
    animation: fade-in_3k9 0.5s forwards 2s;
}

@keyframes pop-in_8j2 {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes draw-path_9p1 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fade-in_3k9 {
    to {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .content-wrapper_3p9 {
        grid-template-columns: 1fr 1fr;
    }
    
    .text-columns_9t3 {
        columns: 2;
    }
    
    .svg-graphic_4m7 {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .text-block_5n1 {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .icon-wrapper_8t3 svg {
        width: 60px;
        height: 60px;
    }
    
    .block-title_6y7 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .text-svg-section_k8j {
        padding: 60px 0;
    }
    
    .text-columns_9t3 p {
        font-size: 0.95rem;
    }
    
    .full-width-text_3n9 {
        margin-top: 40px;
        padding-top: 30px;
    }
}

@media (max-width: 320px) {
    .text-block_5n1 {
        grid-template-columns: 1fr;
    }
    
    .icon-wrapper_8t3 {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .block-title_6y7 {
        text-align: center;
    }
    
    .text-columns_9t3 {
        columns: 1;
    }
}
.collections-showcase_9x2 {
    padding: 90px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.section-subtitle_4m7 {
    text-align: center;
    color: #4A6B7D;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 300;
}

.collections-grid_3t8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.collection-card_5n1 {
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card_5n1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.collection-visual_8j3 {
    background: #F8F5F2;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.collection-svg_4q7 {
    max-width: 100%;
    height: auto;
}

.collection-content_2h4 {
    padding: 30px;
}

.collection-title_6y7 {
    color: #2A4E68;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.collection-title_6y7::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #E74C3C;
}

.collection-desc_9t3 p {
    color: #4A6B7D;
    line-height: 1.8;
    margin-bottom: 15px;
}

.collection-features_3k9 {
    margin: 25px 0;
    padding-left: 20px;
}

.collection-features_3k9 li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #4A6B7D;
}

.collection-features_3k9 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 2px;
    background: #E74C3C;
}

.consultation-btn_7f8 {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.consultation-btn_7f8:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.collection-cta_8t3 {
    background: #2A4E68;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.collection-cta_8t3::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.collection-cta_8t3::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: rgba(231, 76, 60, 0.08);
    border-radius: 50%;
}

.cta-svg_5n1 {
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-title_6m2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.cta-title_6m2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #E74C3C;
}

.cta-text_3k8 {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.cta-btn_4h3 {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    padding: 16px 40px;
    font-size: 1rem;
}

.cta-btn_4h3:hover {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.diamond-outline_7j5 {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: draw-outline_9p1 2s forwards 0.5s;
}

.diamond-inner_9q1 {
    stroke-dasharray: 160;
    stroke-dashoffset: 160;
    animation: draw-outline_9p1 1.5s forwards 1s;
}

@keyframes draw-outline_9p1 {
    to {
        stroke-dashoffset: 0;
    }
}

@media (min-width: 992px) {
    .collection-card_5n1 {
        grid-template-columns: 1fr 1fr;
    }
    
    .collection-visual_8j3 {
        border-bottom: none;
        border-right: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .collections-showcase_9x2 {
        padding: 60px 0;
    }
    
    .collection-content_2h4 {
        padding: 25px;
    }
    
    .collection-cta_8t3 {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .collection-title_6y7 {
        font-size: 1.5rem;
    }
    
    .collection-desc_9t3 p {
        font-size: 0.95rem;
    }
    
    .consultation-btn_7f8 {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .collection-visual_8j3 {
        padding: 20px 15px;
    }
    
    .collection-content_2h4 {
        padding: 20px;
    }
    
    .collection-title_6y7 {
        font-size: 1.3rem;
    }
    
    .collection-features_3k9 li {
        font-size: 0.9rem;
    }
    
    .cta-title_6m2 {
        font-size: 1.4rem;
    }
    
    .cta-text_3k8 {
        font-size: 0.95rem;
    }
      }
    .uIkJnHbVcXZaSdFg {
        padding: 1.5rem;
    }
    .uIkJnHbVcXZaSdFg h3 {
        margin-top: 0;
    }
    .iKjNhBvCxZaSdFgh {
        background-color: var(--accent-color);
        color: var(--primary-color);
        padding: 0.75rem 1.5rem;
        display: block;
        text-align: center;
        font-weight: bold;
    }
    .jKlHnBvCxZaSdF {
        background-color: var(--white-color);
        padding: 3rem 2rem;
        border-radius: 10px;
    }
    form {
        display: grid;
        gap: 1.5rem;
        max-width: 700px;
        margin: 2rem auto 0;
    }
    .kLpQwErTyUjGfHjKlP {
        display: flex;
        flex-direction: column;
    }
    .lOpQweRtYuIkJnHbVcCx {
        padding: 0.8rem 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
    }
    .pQwErTyUjGfHjKlpQw {
        border: 1px solid red;
    }
    .qWeRtYuIkJnHbVcXZaS {
        color: red;
        font-size: 0.9rem;
        display: none;
    }
    .rTyUiKjNhBvCxZaSdf {
        background-color: var(--primary-color);
        color: var(--white-color);
        border: none;
        padding: 1rem;
        border-radius: 5px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .rTyUiKjNhBvCxZaSdf:hover {
        background-color: var(--secondary-color);
    }
    .premium-collections_x8k {
        padding: 100px 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
        position: relative;
    }

    .section-intro_3t9 {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title_jk8 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
    }

    .section-title_jk8::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #e74c3c;
    }

    .section-subtitle_4m7 {
        font-size: 1.2rem;
        color: #7f8c8d;
        font-weight: 300;
    }

    .collections-wrapper_5f1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .collection-card_3m8 {
        display: grid;
        grid-template-columns: 1fr;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transition: transform 0.4s ease;
    }

    .collection-card_3m8:hover {
        transform: translateY(-10px);
    }

    .collection-visual_6y2 {
        background: #f9f9f9;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #eee;
    }

    .kitchen-svg_9q1 {
        max-width: 100%;
        height: auto;
    }

    .collection-content_9t4 {
        padding: 40px;
    }

    .collection-title_2h5 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 20px;
        position: relative;
    }

    .collection-title_2h5::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #3498db;
    }

    .collection-description_1j8 p {
        color: #34495e;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .features-list_4q7 {
        margin: 25px 0;
        padding-left: 20px;
    }

    .features-list_4q7 li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        color: #34495e;
        line-height: 1.6;
    }

    .features-list_4q7 li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 16px;
        height: 2px;
        background: #e74c3c;
    }

    .tech-specs_3k5 {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .tech-specs_3k5 h4 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .specs-grid_8j2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spec-item_6y7 {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #34495e;
        font-size: 0.95rem;
    }

    .spec-icon_9p3 {
        flex-shrink: 0;
    }

    .decor-wave_7f8 {
        animation: draw-wave_9p1 8s linear infinite;
    }

    @keyframes draw-wave_9p1 {
        0% {
            stroke-dashoffset: 120;
        }
        50% {
            stroke-dashoffset: 0;
        }
        100% {
            stroke-dashoffset: -120;
        }
    }
    @media (min-width: 992px) {
        .collection-card_3m8 {
            grid-template-columns: 1fr 1fr;
        }

        .collection-visual_6y2 {
            border-bottom: none;
            border-right: 1px solid #eee;
        }
    }

    @media (max-width: 768px) {
        .premium-collections_x8k {
            padding: 70px 0;
        }

        .section-title_jk8 {
            font-size: 2rem;
        }

        .collections-wrapper_5f1 {
            gap: 60px;
        }

        .collection-content_9t4 {
            padding: 30px;
        }
    }

    @media (max-width: 576px) {
        .collection-visual_6y2 {
            padding: 30px 20px;
        }

        .collection-title_2h5 {
            font-size: 1.5rem;
        }

        .collection-description_1j8 p,
        .features-list_4q7 li {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 400px) {
        .section-title_jk8 {
            font-size: 1.8rem;
        }

        .section-subtitle_4m7 {
            font-size: 1.1rem;
        }

        .collection-visual_6y2 {
            padding: 25px 15px;
        }

        .collection-content_9t4 {
            padding: 25px;
        }

        .spec-item_6y7 {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 320px) {
        .premium-collections_x8k {
            padding: 60px 0;
        }

        .section-title_jk8 {
            font-size: 1.6rem;
        }

        .collection-title_2h5 {
            font-size: 1.3rem;
        }

        .features-list_4q7 li {
            padding-left: 25px;
        }
    }
    .text-centric-showcase_7d3 {
        padding: 90px 0;
        background-color: #f9f9f9;
        position: relative;
    }

    .section-intro_9k4 {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .section-title_jk8 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .title-divider_5f1 {
        width: 80px;
        height: 4px;
        background: #e74c3c;
        margin: 20px auto;
        position: relative;
    }

    .title-divider_5f1::before {
        content: '';
        position: absolute;
        left: -30px;
        top: 0;
        width: 30px;
        height: 100%;
        background: #3498db;
    }

    .section-subtitle_8t2 {
        font-size: 1.2rem;
        color: #7f8c8d;
        font-weight: 300;
    }

    .text-modules_3m8 {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-module_6y2 {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.4s ease;
    }

    .text-module_6y2:hover {
        transform: translateY(-5px);
    }

    .module-header_8j3 {
        padding: 25px 30px;
        background: #2c3e50;
        color: white;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .module-number_4q7 {
        font-size: 1.8rem;
        font-weight: 700;
        color: rgba(255,255,255,0.2);
    }

    .module-title_2h5 {
        font-size: 1.5rem;
        margin: 0;
    }

    .module-content_9t4 {
        padding: 30px;
    }

    .module-content_9t4 p {
        color: #34495e;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .feature-grid_1j8 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .feature-item_4k5 {
        display: flex;
        gap: 15px;
    }

    .feature-icon_7f8 {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        background: #3498db;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-top: 3px;
    }

    .feature-text_3n9 h4 {
        color: #2c3e50;
        margin-bottom: 8px;
        font-size: 1.1rem;
    }

    .feature-text_3n9 p {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin-bottom: 0;
    }

    .specs-table_5t1 {
        margin: 25px 0;
        border-top: 1px solid #eee;
    }

    .spec-row_6m2 {
        display: flex;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .spec-name_8p4 {
        width: 40%;
        font-weight: 600;
        color: #2c3e50;
    }

    .spec-value_3f6 {
        width: 60%;
        color: #e74c3c;
        font-weight: 500;
    }

    .material-list_7j5 {
        margin: 25px 0;
        padding-left: 20px;
    }

    .material-list_7j5 li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        color: #34495e;
        line-height: 1.7;
    }

    .material-list_7j5 li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 12px;
        height: 2px;
        background: #3498db;
    }

    .material-list_7j5 strong {
        color: #2c3e50;
    }

    .eco-stats_8k9 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .stat-item_4h3 {
        text-align: center;
        padding: 20px;
        background: #f1f5f8;
        border-radius: 5px;
    }

    .stat-value_6y7 {
        font-size: 2rem;
        font-weight: 700;
        color: #e74c3c;
        line-height: 1;
        margin-bottom: 5px;
    }

    .stat-label_3m4 {
        font-size: 0.9rem;
        color: #7f8c8d;
    }

    .accent-module_9q3 .module-header_8j3 {
        background: #e74c3c;
    }

    .engineering-cta_5f4 {
        max-width: 800px;
        margin: 80px auto 0;
        padding: 50px;
        background: #2c3e50;
        color: white;
        text-align: center;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }

    .engineering-cta_5f4::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

    .cta-title_7d2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        position: relative;
    }

    .cta-title_7d2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #e74c3c;
    }

    .cta-text_9k1 {
        max-width: 600px;
        margin: 0 auto 30px;
        color: rgba(255,255,255,0.8);
        line-height: 1.7;
    }

    .cta-button_8j6 {
        display: inline-block;
        padding: 16px 40px;
        background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
        color: white;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }

    .cta-button_8j6:hover {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
        transform: translateY(-3px);
    }

    .cta-note_3t8 {
        margin-top: 20px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
    }
    @media (max-width: 768px) {
        .text-centric-showcase_7d3 {
            padding: 70px 0;
        }

        .section-title_jk8 {
            font-size: 2rem;
        }

        .module-header_8j3 {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }

        .spec-row_6m2 {
            flex-direction: column;
            gap: 5px;
        }

        .spec-name_8p4,
        .spec-value_3f6 {
            width: 100%;
        }

        .engineering-cta_5f4 {
            padding: 40px 25px;
        }
    }

    @media (max-width: 576px) {
        .section-title_jk8 {
            font-size: 1.8rem;
        }

        .module-title_2h5 {
            font-size: 1.3rem;
        }

        .feature-grid_1j8 {
            grid-template-columns: 1fr;
        }

        .eco-stats_8k9 {
            grid-template-columns: 1fr;
        }

        .cta-title_7d2 {
            font-size: 1.5rem;
        }

        .cta-button_8j6 {
            padding: 14px 30px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 400px) {
        .section-title_jk8 {
            font-size: 1.6rem;
        }

        .module-content_9t4 {
            padding: 25px;
        }

        .engineering-cta_5f4 {
            padding: 30px 20px;
        }
    }

    @media (max-width: 320px) {
        .section-title_jk8 {
            font-size: 1.4rem;
        }

        .module-title_2h5 {
            font-size: 1.2rem;
        }

        .stat-value_6y7 {
            font-size: 1.5rem;
        }

        .cta-title_7d2 {
            font-size: 1.3rem;
        }

        .cta-text_9k1 {
            font-size: 0.95rem;
        }
    }
    .heritage-showcase_9x2 {
        padding: 100px 0;
        background-color: #F9F9F9;
        position: relative;
    }

    .heritage-header_5f1 {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }

    .title-decoration_8t3 {
        margin: 25px 0;
        display: flex;
        justify-content: center;
    }

    .title-line_3n8 {
        animation: line-draw_7f2 1.5s forwards 0.3s;
    }

    .title-circle_9k4 {
        opacity: 0;
        animation: fade-in_3n9 0.8s forwards 1.2s;
    }

    .section-subtitle_7f2 {
        font-size: 1.2rem;
        color: #7F8C8D;
        font-weight: 300;
    }

    .heritage-timeline_6y2 {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding-left: 50px;
    }

    .heritage-timeline_6y2::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #3498DB, #E74C3C);
    }

    .timeline-item_8j3 {
        position: relative;
        margin-bottom: 60px;
    }

    .timeline-year_4q7 {
        position: absolute;
        left: -50px;
        top: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #2C3E50;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        z-index: 2;
    }

    .timeline-content_9t4 {
        position: relative;
        margin-left: 30px;
    }

    .timeline-marker_2h5 {
        position: absolute;
        left: -40px;
        top: 10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #E74C3C;
        border: 4px solid #F9F9F9;
    }

    .timeline-card_6y7 {
        background: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        position: relative;
    }

    .timeline-card_6y7::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 20px;
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid white;
    }

    .era-title_3k5 {
        font-size: 1.5rem;
        color: #2C3E50;
        margin-bottom: 20px;
    }

    .era-content_8p2 p {
        color: #34495E;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .innovation-grid_1j8 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin: 30px 0;
    }

    .innovation-item_4k9 {
        text-align: center;
        padding: 25px 15px;
        background: #F1F5F8;
        border-radius: 5px;
    }

    .innovation-icon_7f5 {
        margin-bottom: 15px;
    }

    .innovation-item_4k9 h4 {
        color: #2C3E50;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .innovation-item_4k9 p {
        color: #7F8C8D;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .milestone-stats_3m4 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .stat-block_6y8 {
        text-align: center;
        padding: 20px;
        background: #F1F5F8;
        border-radius: 5px;
    }

    .stat-number_7f8 {
        font-size: 2rem;
        font-weight: 700;
        color: #E74C3C;
        line-height: 1;
        margin-bottom: 5px;
    }

    .stat-label_9q1 {
        font-size: 0.9rem;
        color: #7F8C8D;
    }

    .tech-features_5t3 {
        margin-top: 25px;
    }

    .tech-item_8k9 {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: #34495E;
    }

    .tech-icon_4h3 {
        flex-shrink: 0;
    }

    .philosophy-block_7d2 {
        max-width: 1000px;
        margin: 80px auto 0;
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 40px;
        align-items: start;
    }

    .philosophy-icon_9p1 {
        position: relative;
        padding-top: 20px;
    }

    .philosophy-svg_3k8 {
        position: relative;
        z-index: 2;
    }

    .symbol-outline_6m2 {
        stroke-dasharray: 250;
        stroke-dashoffset: 250;
        animation: draw-symbol_8j6 1.5s forwards;
    }

    .symbol-inner_4n9 {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
        animation: draw-symbol_8j6 1.2s forwards 0.5s;
    }

    .symbol-core_8p4 {
        stroke-dasharray: 150;
        stroke-dashoffset: 150;
        animation: draw-symbol_8j6 0.8s forwards 1s;
    }

    .philosophy-content_5f4 {
        background: white;
        border-radius: 8px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .philosophy-title_6y7 {
        font-size: 1.8rem;
        color: #2C3E50;
        margin-bottom: 25px;
        position: relative;
    }

    .philosophy-title_6y7::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #3498DB;
    }

    .philosophy-text_3t8 p {
        color: #34495E;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .principle-item_9k3 {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .principle-number_7j5 {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #E74C3C;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .principle-text_8t2 h4 {
        color: #2C3E50;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .principle-text_8t2 p {
        color: #7F8C8D;
        line-height: 1.7;
        margin-bottom: 0;
    }

    @keyframes line-draw_7f2 {
        to {
            stroke-dashoffset: 0;
        }
    }

    @keyframes fade-in_3n9 {
        to {
            opacity: 1;
        }
    }

    @keyframes draw-symbol_8j6 {
        to {
            stroke-dashoffset: 0;
        }
    }

    @media (max-width: 992px) {
        .heritage-timeline_6y2 {
            padding-left: 40px;
        }

        .philosophy-block_7d2 {
            grid-template-columns: 1fr;
        }

        .philosophy-icon_9p1 {
            display: flex;
            justify-content: center;
            padding-top: 0;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .heritage-showcase_9x2 {
            padding: 80px 0;
        }

        .heritage-header_5f1 {
            margin-bottom: 60px;
        }

        .heritage-timeline_6y2 {
            padding-left: 30px;
        }

        .heritage-timeline_6y2::before {
            left: 15px;
            width: 3px;
        }

        .timeline-year_4q7 {
            left: -40px;
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }

        .timeline-marker_2h5 {
            left: -33px;
            width: 16px;
            height: 16px;
        }

        .timeline-card_6y7 {
            padding: 25px;
        }

        .innovation-grid_1j8 {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .section-title_jk8 {
            font-size: 2rem;
        }

        .era-title_3k5 {
            font-size: 1.3rem;
        }

        .philosophy-content_5f4 {
            padding: 30px;
        }

        .principle-item_9k3 {
            grid-template-columns: 40px 1fr;
            gap: 15px;
        }

        .principle-number_7j5 {
            width: 30px;
            height: 30px;
            font-size: 1rem;
        }
    }

    @media (max-width: 400px) {
        .heritage-timeline_6y2 {
            padding-left: 20px;
        }

        .timeline-year_4q7 {
            left: -30px;
        }

        .timeline-content_9t4 {
            margin-left: 20px;
        }

        .milestone-stats_3m4 {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 320px) {
        .section-title_jk8 {
            font-size: 1.8rem;
        }

        .section-subtitle_7f2 {
            font-size: 1.1rem;
        }

        .timeline-card_6y7 {
            padding: 20px;
        }

        .philosophy-title_6y7 {
            font-size: 1.5rem;
        }
    }
    .philosophy-showcase_8x3 {
        padding: 100px 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    }

    .philosophy-grid_5t1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 50px;
        margin-top: 60px;
    }

    .philosophy-card_6y2 {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        transition: transform 0.4s ease;
    }

    .philosophy-card_6y2:hover {
        transform: translateY(-10px);
    }

    .card-visual_8j3 {
        background: #f5f5f5;
        padding: 30px;
        border-bottom: 1px solid #eee;
    }

    .card-content_2h4 {
        padding: 30px;
    }

    .card-title_6y7 {
        color: #114B5F;
        font-size: 1.8rem;
        margin-bottom: 20px;
        position: relative;
    }

    .card-title_6y7::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #FF6B35;
    }

    .card-text_9t3 p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .feature-list_3k9 {
        margin: 25px 0;
        padding-left: 20px;
    }

    .feature-list_3k9 li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: #555;
        line-height: 1.6;
    }

    .feature-list_3k9 li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 12px;
        height: 2px;
        background: #1A936F;
    }

    .feature-list_3k9 strong {
        color: #114B5F;
    }

    .spec-grid_8j2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px 0;
    }

    .spec-item_6y7 {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #555;
        font-size: 0.95rem;
    }

    .philosophy-cta_7d2 {
        max-width: 800px;
        margin: 80px auto 0;
        padding: 40px;
        background: #114B5F;
        border-radius: 12px;
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 30px;
        align-items: center;
    }

    .cta-content_9p1 h3 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-content_9p1 p {
        color: rgba(255,255,255,0.8);
        line-height: 1.7;
    }

    @media (max-width: 992px) {
        .philosophy-grid_5t1 {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .philosophy-showcase_8x3 {
            padding: 80px 0;
        }

        .philosophy-cta_7d2 {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .philosophy-card_6y2 {
            margin-bottom: 40px;
        }

        .card-content_2h4 {
            padding: 25px;
        }

        .card-title_6y7 {
            font-size: 1.5rem;
        }

        .philosophy-cta_7d2 {
            padding: 30px 25px;
        }

        .cta-content_9p1 h3 {
            font-size: 1.5rem;
        }
    }
    .craftsmanship-showcase_9x2 {
        padding: 100px 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    }

    .section-header_5f1 {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .title-divider_8t3 {
        margin: 25px 0;
    }

    .section-subtitle_7f2 {
        font-size: 1.2rem;
        color: #7f8c8d;
        font-weight: 300;
        margin-top: 15px;
    }

    .craftsmanship-grid_3t8 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .craft-item_5n1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .craft-visual_8j3 {
        position: relative;
    }
    .image-wrapper_9q12
    {
       position: relative;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 15px 40px rgba(0,0,0,0.1);
   }
   .image-wrapper_9q12 img
   {
       position: relative;
       border-radius: 8px;
       overflow: hidden;
       box-shadow: 0 15px 40px rgba(0,0,0,0.1);
   }
   .image-wrapper_9q1 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding-top: 22px;
}

.image-wrapper_9q1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.craft-item_5n1:hover .image-wrapper_9q1 img {
    transform: scale(1.03);
}

.badge-svg_2n6 {
    position: absolute;
    top: 20px;
    right: 20px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.16));
}

.precision-svg_4q7 {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.image-overlay_7j5 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 147, 111, 0.9);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.craft-content_2h4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-title_6y7 {
    font-size: 1.8rem;
    color: #114B5F;
    margin-bottom: 20px;
    position: relative;
}

.craft-title_6y7::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF6B35;
}

.craft-text_9t3 p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list_3k9 {
    margin: 25px 0;
    padding-left: 20px;
}

.feature-list_3k9 li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.feature-list_3k9 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 2px;
    background: #1A936F;
}

.feature-list_3k9 strong {
    color: #114B5F;
}

.spec-grid_8j2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
}

.spec-item_6y7 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
}

.spec-item_6y7 svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.philosophy-block_7d2 {
    max-width: 1000px;
    margin: 100px auto 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.philosophy-content_5f4 h3 {
    font-size: 2rem;
    color: #114B5F;
    margin-bottom: 25px;
}

.philosophy-text_3t8 p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.principle-item_9k3 {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.principle-number_7j5 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF6B35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.principle-text_8t2 h4 {
    color: #114B5F;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.principle-text_8t2 p {
    color: #777;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .craft-item_5n1 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .craft-item_5n1:nth-child(even) .craft-visual_8j3 {
        order: 2;
    }
}

@media (max-width: 768px) {
    .craftsmanship-showcase_9x2 {
        padding: 80px 0;
    }
    
    .philosophy-block_7d2 {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    
    .philosophy-icon_9p1 {
        margin: 0 auto 30px;
    }
    
    .principle-item_9k3 {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .principle-number_7j5 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .craft-title_6y7 {
        font-size: 1.5rem;
    }
    
    .image-wrapper_9q1 img {
        height: 300px;
    }
    
    .philosophy-content_5f4 h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .craftsmanship-grid_3t8 {
        gap: 60px;
    }
    
    .image-overlay_7j5 {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .philosophy-block_7d2 {
        padding: 30px 20px;
    }
}
.thank-you-section_bn3 {
    padding: 80px 0;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.thank-you-card_8k1 {
    background: var(--white_1p0);
    padding: 50px;
    border-radius: var(--radius_3n4);
    box-shadow: var(--shadow_7u8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -100px;
}

.thank-you-icon_7w4 {
    margin-bottom: 30px;
}

.thank-you-title_9m1 {
    font-size: 2.2rem;
    color: var(--dark-color_7h1);
    margin-bottom: 20px;
}

.thank-you-text_4f7 {
    color: var(--text-light_6y8);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.order-details_5h2 {
    background: var(--light-color_3k9);
    padding: 30px;
    border-radius: var(--radius_3n4);
    margin-bottom: 40px;
    text-align: left;
}

.detail-grid_3k9 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.detail-item_1p4 {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.detail-label_8t2 {
    width: 180px;
    font-weight: 600;
    color: var(--dark-color_7h1);
}

.detail-value_4q1 {
    flex: 1;
    color: var(--text-light_6y8);
}

.action-buttons_6y5 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact_3n8 {
    display: inline-block;
    background: var(--dark-color_7h1);
    color: var(--white_1p0);
    padding: 12px 30px;
    border-radius: var(--radius_3n4);
    font-weight: 600;
    transition: var(--transition_5g6);
}

.btn-contact_3n8:hover {
    background: #0d3a4d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .thank-you-card_8k1 {
        padding: 40px 30px;
    }
    
    .thank-you-title_9m1 {
        font-size: 1.8rem;
    }
    
    .detail-item_1p4 {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label_8t2 {
        width: 100%;
    }
    .btn-explore_2w5
    {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .thank-you-section_bn3 {
        padding: 60px 0;
    }
    
    .thank-you-card_8k1 {
        padding: 30px 20px;
    }
    
    .thank-you-title_9m1 {
        font-size: 1.6rem;
    }
    
    .action-buttons_6y5 {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-explore_2w5,
    .btn-contact_3n8 {
        width: 50%;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .thank-you-card_8k1 {
        padding: 25px 15px;
    }
    
    .thank-you-title_9m1 {
        font-size: 1.4rem;
    }
    
    .order-details_5h2 {
        padding: 20px 15px;
    }
    
    .thank-you-text_4f7 {
        font-size: 1rem;
    }
}

.dfbksmdfkbm
{
    position: unset;
}
.dbnfsjdbsdkj
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}