        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('/catalog/view/theme/nikan/css/photo-1556740738-b6a63e27c4df.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .steps {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: #444;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #bfa888;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .step-card {
            flex: 1;
            min-width: 220px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: #bfa888;
            margin-bottom: 20px;
        }
        
        .step-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #555;
        }
        
        .step-card p {
            color: #777;
            font-size: 0.95rem;
        }
        
        .form-section {
            padding: 60px 0;
            background-color: #f1f1f1;
        }
        
        .form-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #444;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #bfa888;
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
            color: #555 !important;
            cursor: auto;
        }
        
        .file-input {
            display: none;
        }
        
        .file-label {
            display: block;
            padding: 12px 15px;
            background-color: #f8f9fa;
            border: 1px dashed #ddd;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .file-label:hover {
            background-color: #f1f1f1;
            border-color: #bfa888;
        }
        
        .submit-btn {
            background-color: #bfa888;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            width: 100%;
            font-weight: bold;
        }
        
        .submit-btn:hover {
            background-color: #a8926e;
        }
        
        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            text-align: center;
        }
        
        /* Tracking Section */
        .tracking-section {
            padding: 60px 0;
        }
        
        .tracking-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            /*max-width: 800px;*/
            margin: 0 auto;
        }
        
        .tracking-result {
            display: none;
            margin-top: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 5px;
            border-right: 4px solid #bfa888;
        }
        
        .survey {
            display: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .survey-text {
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .survey-buttons {
            display: flex;
            gap: 10px;
        }
        
        .survey-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .survey-btn.yes {
            background-color: #28a745;
            color: white;
        }
        
        .survey-btn.no {
            background-color: #dc3545;
            color: white;
        }
        
        .survey-result {
            display: none;
            margin-top: 15px;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 60px 0;
            background-color: #f1f1f1;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px 20px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f8f9fa;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #eee;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
        }
        
        .faq-answer.show {
            padding: 15px 20px;
            max-height: 300px;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .steps-container {
                flex-direction: column;
            }
            
            .step-card {
                min-width: 100%;
            }
            
            .form-card, .tracking-card {
                padding: 25px;
            }
        }
.flow-col{
    background-image: url("https://nikanland.ir/wp-content/uploads/2024/02/—Pngtree—quotes-square-border-text-box_7768517.webp");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    background-position: center center;
    /*@media(max-width:992px){*/
    /*    display:none;*/
    /*}*/
}
.flow-wrapper{
        display: flex;
        padding:10px 0;
}
.flow-desc-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 100px;
    text-align:justify;
    >p{
    font-size: 18px;
    font-weight: 600;
    }
}
.flow-img-wrapper{
    
}
.flow-img{
    width: 100%;
    height: 700px;
}
.chart-wrapper{
    display: flex;
    align-items: stretch;
    flex-direction: row-reverse;
    justify-content: center;
    flex-wrap:wrap;
    @media(max-width:768px){
    gap: 10px;
    }
}
.flw-chart{
background-color: white;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #a8926e;
    flex-grow: 1;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    height: 70px;
    &.active{
    background-color: #a8926e;
    color:white;
    }
    &#flw-0{
        flex-grow:1.6;
    }
    @media(max-width:768px){
        clip-path:unset;
        width: 100%;
        height:unset;
        &#flw-0{
        flex-grow:1;
        }
        &::after{
            content:"";
            display:block;
        }
    }
}
.admin_msg_wrapper{
    display:none;
        margin-top: 20px;
    &.active{
        display:block;
    }
}
.admin_msg_header{
    
}
.admin_msg{
        padding: 10px;
    background-color: white;
    border-radius: 8px;
}
.surveyResultInp{
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    >p{
    margin: 0;
    font-weight: bold;
    }
}
#surveyResultInput{
        width: fit-content;
    text-align: center;
}

@media(max-width:992px){
    .flow-container{
    padding: 0;
    margin: 0;
    width: 100%;
    max-width:unset;
    }
    .flow-wrapper{
    flex-wrap: wrap;
     gap: 30px; 
    width: 100%;
        flex-direction: column-reverse;
    }
    .flow-col{
        background-image: unset;
        padding:20px;
    }
    .flow-desc-wrapper{
            padding: 20px;
            background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
}