
    .custom-quiz-submit{
        font-size: 25px;
    }
    .custom-quiz-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    .custom-quiz-section {
        margin-bottom: 60px;
        border-bottom: 1px solid #FFE4E8; /* Pinkish separator */
        padding-bottom: 40px;
    }
    .custom-quiz-section:last-of-type {
        border-bottom: none;
    }
    .custom-quiz-title {
        color: #E7345A;
        font-size: 42px;
        font-weight: 400; /* Looks somewhat light/regular in image */
        margin-bottom: 15px;
        text-align: left;
    }
    .custom-quiz-subtitle {
        color: #666;
        font-size: 24px;
        margin-bottom: 30px;
    }
    .custom-quiz-options {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start; /* Or center? Image aligns left/start */
    }
    
    /* Option Item */
    .custom-quiz-item {
        position: relative;
        cursor: pointer;
        width: 140px;
        text-align: center;
    }
    
    .custom-quiz-item input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .custom-quiz-visual {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: #f9f9f9; /* Placeholder bg */
        margin: 0 auto 15px;
        overflow: hidden;
        border: 2px solid transparent;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    /* Image Placeholder styling */
    .custom-quiz-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* Fallback if no image */
    .custom-quiz-visual::after {
        content: '?';
        font-size: 40px;
        color: #ccc;
    }
    .custom-quiz-visual:has(img)::after {
        content: none;
    }

    .custom-quiz-label {
        font-size: 22px;
        color: #444;
        line-height: 1.3;
        display: block;
        font-weight: 500;
    }
    
    /* Checked State */
    .custom-quiz-item input:checked ~ .custom-quiz-visual {
        border-color: #E7345A;
        box-shadow: 0 0 0 4px #FFE4E8; /* Outer glow ring */
    }
    .custom-quiz-item input:checked ~ .custom-quiz-visual::before {
        /* Optional overlay or icon */
    }
    
    /* Hover */
    .custom-quiz-item:hover .custom-quiz-visual {
        border-color: #facacf;
    }
    
    /* Footer & Submit */
    .custom-quiz-footer {
        text-align: center;
        margin-top: 40px;
    }
    .custom-quiz-btn {
        background-color: #E7345A;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: transform 0.2s, background 0.2s;
    }
    .custom-quiz-btn:hover {
        background-color: #d62f52;
        transform: translateY(-2px);
    }
    .custom-quiz-note {
        font-size: 18px;
        color: #666;
        margin-bottom: 20px;
    }

    /* Results Grid Reuse */
    #custom-quiz-results {
        margin-top: 50px;
    }

    /* Mobile Responsive Quiz */
    @media (max-width: 768px) {
        .custom-quiz-wrapper {
            padding: 20px 10px;
        }
        .custom-quiz-title {
            font-size: 37px;
            text-align: center;
        }
        .custom-quiz-subtitle {
             text-align: center;
        }
        .custom-quiz-options {
            justify-content: center;
            gap: 15px;
        }
        .custom-quiz-item {
            width: 45%; /* 2 per row */
            max-width: 140px;
        }
        .custom-quiz-visual {
            width: 90px;
            height: 90px;
        }
    }
    @media (max-width: 400px) {
        .custom-quiz-item {
            width: 120px;
        }
    }