   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .quiz-header {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .quiz-header h1 {
            font-size: 2.8rem;
            color: #2d3748;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .quiz-header .subtitle {
            font-size: 1.3rem;
            color: #667eea;
            margin-bottom: 25px;
            font-style: italic;
        }

        .quiz-header p {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .progress-bar {
            background: rgba(255, 255, 255, 0.3);
            height: 8px;
            border-radius: 4px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea, #764ba2);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 4px;
        }

        .email-form, .quiz-container, .result-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .email-form { text-align: center; margin-bottom: 30px; }
        .email-form h2 { color: #2d3748; margin-bottom: 15px; font-size: 1.8rem; }
        .email-form p { color: #4a5568; margin-bottom: 25px; font-size: 1.1rem; }
        .form-group { margin-bottom: 20px; text-align: left; }
        .form-group label { display: block; margin-bottom: 8px; color: #2d3748; font-weight: bold; }
        .form-group input { width: 100%; padding: 15px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 1rem; transition: border-color 0.3s; }
        .form-group input:focus { outline: none; border-color: #667eea; }

        .question { display: none; animation: fadeIn 0.5s ease-in; }
        .question.active { display: block; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .question h3 { font-size: 1.5rem; color: #2d3748; margin-bottom: 25px; line-height: 1.4; }
        .question-counter { text-align: center; color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 20px; font-weight: bold; text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
        .options { display: grid; gap: 15px; }
        .option { background: #f7fafc; border: 2px solid #e2e8f0; border-radius: 12px; padding: 18px; cursor: pointer; transition: all 0.3s ease; position: relative; }
        .option:hover { border-color: #667eea; background: #edf2f7; transform: translateY(-2px); }
        .option.selected { border-color: #764ba2; background: linear-gradient(135deg, #667eea20, #764ba220); }
        .option input { display: none; }
        .option label { cursor: pointer; display: block; color: #2d3748; font-size: 1rem; line-height: 1.5; }

        .navigation { margin-top: 30px; display: flex; justify-content: space-between; align-items: center; }

        .btn { background: linear-gradient(135deg, #667eea, #764ba2); color: white; border: none; padding: 15px 30px; border-radius: 12px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; min-width: 120px; }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3); }
        .btn:disabled { background: #a0aec0; cursor: not-allowed; transform: none; box-shadow: none; }
        .btn-secondary { background: transparent; border: 2px solid #667eea; color: #667eea; }
        .btn-secondary:hover { background: #667eea; color: white; }

        .result-container { text-align: center;}
        .result-container.hidden { display: none; }
        .result-container.active { display: block; animation: fadeIn 0.8s ease-in; }
        
        .archetype-image { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 30px; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .archetype-title { font-size: 2.5rem; color: #2d3748; margin-bottom: 10px; }
        .archetype-subtitle { font-size: 1.3rem; color: #667eea; font-style: italic; margin-bottom: 25px; }
        
        .archetype-description { font-size: 1.1rem; color: #4a5568; line-height: 1.6; margin-bottom: 30px; text-align: left; }
        .archetype-description h4 { color: #2d3748; margin-top: 20px; margin-bottom: 10px; font-size: 1.2rem; }
        .archetype-description p, .archetype-description li { margin-bottom: 10px; }
        .archetype-description ul { list-style-position: inside; padding-left: 10px; }
        
        .key-verse { margin-top: 30px; padding: 20px; border-top: 2px solid #e2e8f0; border-bottom: 2px solid #e2e8f0; background: #f7fafc; border-radius: 10px; }
        .key-verse h4 { color: #667eea; margin-bottom: 10px; }
        .key-verse p { font-style: italic; color: #4a5568; font-size: 1.1rem; }
        .key-verse .reference { font-style: normal; font-weight: bold; display: block; margin-top: 5px; text-align: right; color: #2d3748; }

        .hidden { display: none !important; }

        .secondary-archetypes { margin-top: 30px; padding-top: 20px; border-top: 1px solid #e2e8f0; }
        .secondary-archetypes h3 { font-size: 1.4rem; color: #2d3748; margin-bottom: 15px; }
        .secondary-archetype { margin-bottom: 15px; text-align: left; }
        .secondary-archetype h4 { color: #667eea; margin-bottom: 5px; }
        .secondary-archetype p { font-size: 1rem; line-height: 1.5; color: #4a5568; }

        .share-results { margin-top: 30px; padding-top: 20px; border-top: 1px solid #e2e8f0; }
        .share-buttons { display: flex; justify-content: center; gap: 15px; margin-top: 15px; }
        .share-button { padding: 10px 15px; border-radius: 8px; color: white; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: opacity 0.3s; }
        .share-button:hover { opacity: 0.9; }
        .share-button.facebook { background-color: #1877f2; }
        .share-button.twitter { background-color: #1da1f2; }
        .share-button.whatsapp { background-color: #25d366; }

        @media (max-width: 768px) {
            .container { padding: 15px; }
            .quiz-header, .email-form, .quiz-container, .result-container { padding: 25px; }
            .quiz-header h1 { font-size: 2.2rem; }
            .navigation { flex-direction: column; gap: 15px; }
            .btn { width: 100%; }
            .share-buttons { flex-direction: column; }
        }

        /* Styles pour l'impression */
@media print {
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Masquer les éléments non nécessaires à l'impression */
    .no-print, 
    .quiz-header,
    .progress-bar,
    .email-form,
    .quiz-container,
    .action-buttons {
        display: none !important;
    }
    
    /* Optimiser l'affichage pour l'impression */
    .result-container {
        background: white !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 20px !important;
    }
    
    .archetype-image {
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
        background: #f0f0f0 !important;
        color: black !important;
        border: 2px solid #ccc !important;
        page-break-inside: avoid;
    }
    
    .archetype-title {
        font-size: 1.8rem !important;
        color: black !important;
        page-break-after: avoid;
    }
    
    .archetype-subtitle {
        font-size: 1.1rem !important;
        color: #666 !important;
        font-style: italic;
    }
    
    .archetype-description h4 {
        color: black !important;
        font-size: 1rem !important;
        margin-top: 15px !important;
        page-break-after: avoid;
    }
    
    .key-verse {
        border: 1px solid #ccc !important;
        background: #f9f9f9 !important;
        page-break-inside: avoid;
    }
    
    .secondary-archetypes {
        page-break-inside: avoid;
    }
    
    /* Éviter les coupures de page malvenues */
    .secondary-archetype {
        page-break-inside: avoid;
        margin-bottom: 10px !important;
    }
    
    /* Ajouter un en-tête personnalisé */
    .result-container::before {
        content: "Mon Archétype Féminin Biblique - Quiz Spirituel";
        display: block;
        font-size: 1.2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #ccc;
    }
}

/* Style des boutons d'action */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
}