
    .honesty-test-container {
        font-family: "Vazirmatn", sans-serif;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .test-intro {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .test-intro h2 {
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .test-intro p {
        color: #546e7a;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .start-btn, .nav-btn, .submit-btn, .restart-btn {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }
    
    .start-btn:hover, .nav-btn:hover, .submit-btn:hover, .restart-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    }
    
    .honesty-test-form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .question {
        margin-bottom: 25px;
    }
    
    .question h3 {
        color: #2c3e50;
        margin-bottom: 15px;
        border-bottom: 2px solid #3498db;
        padding-bottom: 10px;
    }
    
    .question p {
        font-weight: 600;
        color: #34495e;
        margin-bottom: 15px;
    }
    
    .question label {
        display: block;
        padding: 12px 15px;
        margin-bottom: 10px;
        background: #f8f9fa;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: 2px solid transparent;
    }
    
    .question label:hover {
        background: #e3f2fd;
        border-color: #3498db;
    }
    
    .question input[type="radio"] {
        margin-left: 10px;
    }
    
    .navigation-buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }
    
    .test-results {
        text-align: center;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .test-results h2 {
        color: #2c3e50;
        margin-bottom: 25px;
    }
    
    .results-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .result-meter {
        margin-bottom: 30px;
    }
    
    .meter-background {
        height: 30px;
        background: #ecf0f1;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        margin-bottom: 10px;
    }
    
    .meter-fill {
        height: 100%;
        background: linear-gradient(90deg, #e74c3c 0%, #f39c12 50%, #2ecc71 100%);
        border-radius: 15px;
        width: 0%;
        transition: width 1.5s ease-in-out;
    }
    
    .meter-labels {
        display: flex;
        justify-content: space-between;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .result-description {
        text-align: right;
        margin-bottom: 25px;
    }
    
    .result-description p {
        line-height: 1.6;
        color: #546e7a;
        margin-bottom: 15px;
    }
    
    .disclaimer {
        font-size: 14px;
        color: #7f8c8d;
        font-style: italic;
    }
    
    @media (max-width: 768px) {
        .honesty-test-container {
            padding: 15px;
        }
        
        .test-intro, .honesty-test-form, .test-results {
            padding: 20px;
        }
        
        .navigation-buttons {
            flex-direction: column;
            gap: 10px;
        }
        
        .nav-btn, .submit-btn {
            width: 100%;
        }
    }
    