/* Copy all the CSS from your original question here */
/* This is the same CSS you provided in the question */
 ul.cma_survey_contact {
    list-style: none;
    padding: 0;
    display: flex
;justify-content: center;
    gap: 25px;
}
        .cma_survey-header {
            text-align: center;
            margin-bottom: 30px;
            display: none;
            padding-bottom: 20px;
            border-bottom: 1px solid #F4F4F4;
        }
#cma_survey-popup-incomplete {
    display: none;
}
        .cma_survey-title {
            margin-bottom: 10px;
            font-size: 28px;
        }
input.cma_survey-popup-input {
    border: 1px solid #f4f4f4 !important;
    border-radius: 0px !important;
    background: #f4f4f4 !important;
}
.cma_survey-popup-buttons button.cma_survey-popup-btn {
    color: #fff;
    border-radius: 0;
}
.cma_survey-popup-buttons button.cma_survey-popup-btn:hover {
    background: #000;
}
        .cma_survey-results-score,
        .cma_survey-results.active .cma_survey-title {
            display: none;
        }
        .cma_survey-description {
            
        }

        .cma_survey-progress-container {
            margin: 50px 0;
        }

        .cma_survey-progress-bar {
            height: 24px;
            background-color: #F4F4F4;
            border-radius: 20px;
            overflow: hidden;
        }

        .cma_survey-progress {
            height: 100%;
            background-color: #211894;
            width: 16.66%;
            transition: width 0.3s ease;
        }

        .cma_survey-progress-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 14px;
        }

        .cma_survey-step {
            display: none;
            animation: cma_survey-fadeIn 0.5s ease;
        }

        .cma_survey-step.active {
            display: block;
        }

        .cma_survey-results {
            display: none;
            background-color: white;
            text-align: center;
            animation: cma_survey-fadeIn 0.5s ease;
        }

        .cma_survey-results.active {
            display: block;
        }

        @keyframes cma_survey-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cma_survey-section-title {
            margin-bottom: 30px;
            font-size: 26px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .cma_survey-question {
            background-color: white;
            margin-bottom: 40px;
        }

        .cma_survey-question-text {
            margin-bottom: 15px;
            font-size: 16px;
        }

        .cma_survey-question-title {
            font-weight: 500;
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
        }

        .cma_survey-question-desc {
            display: block;
            font-style: italic;
            font-weight: normal;
            color: #000;
        }

        .cma_survey-rating-scale {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        .cma_survey-rating-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            flex: 1;
            margin: 5px 0;
        }

        .cma_survey-rating-circle {
            width: 100%;
            height: 40px;
            
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #F2F2F2;
            border: 1px solid #B0B0B0;
            margin-bottom: 5px;
            transition: all 0.2s ease;
            font-weight: bold;
            color: #B54096;
        }

        .cma_survey-rating-option input {
            display: none;
        }

        .cma_survey-rating-option input:checked + .cma_survey-rating-circle {
            background-color: #f2f2f2;
            border-color: #f2f2f2;
            color: #B5409680;
        }

        .cma_survey-rating-label {
            font-size: 12px;
            display: none;
            color: #7f8c8d;
            text-align: center;
        }

        .cma_survey-navigation {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        body .cma_survey-btn {
            padding: 10px 30px;
            border: none;
            border-radius: 0px;
            cursor: pointer;
            font-size: 16px;
            color: #000!important;
            transition: background-color 0.2s ease;
            font-weight: 600;
            color: #000!important;
            background: #F2F2F2 !important;
            border: 2px solid #f2f2f2 !important;
        }

        .cma_survey-btn-prev {
            background-color: transparent!important;
            color: #000;
        }

        .cma_survey-btn-prev:hover {
            background-color: #d1d5da;
        }

        .cma_survey-btn-next {
            background-color: #3498db!important;
            color: white;
        }

        .cma_survey-btn-next:hover {
            background-color: #2980b9!important;
        }

        .cma_survey-btn-submit {
            background-color: #27ae60!important;
            color: white;
        }

        .cma_survey-btn-submit:hover {
            background-color: #2980b9!important;
        }

        .cma_survey-btn-submit:disabled {
            background-color: #bdc3c7!important;
            cursor: not-allowed;
        }

        .cma_survey-step-indicator {
            display: none;
            text-align: center;
            margin-top: 10px;
            font-size: 14px;
            color: #7f8c8d;
        }

        .cma_survey-section-description {
            margin-bottom: 20px;
            color: #7f8c8d;
            font-style: italic;
        }

        .cma_survey-results-score {
            font-size: 24px;
            font-weight: bold;
            margin: 20px 0;
            color: #2c3e50;
        }

        .cma_survey-results-message {
            background-color: transparent;
            border-bottom: 20px solid #211894;
            padding: 35px;
            margin: 20px 0;
            text-align: center;
        }

        .cma_survey-results-breakdown {
            margin: 20px 0;
            text-align: left;
            display: none; /* Hidden as requested */
        }

        .cma_survey-results-breakdown h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .cma_survey-results-breakdown ul {
            list-style-type: none;
        }

        .cma_survey-results-breakdown li {
            padding: 8px 0;
            border-bottom: 1px solid #e1e4e8;
        }

        .cma_survey-results-breakdown li:last-child {
            border-bottom: none;
        }

        .cma_survey-results-actions {
            margin-top: 30px;
        }

        .cma_survey-btn-restart {
            background-color: #3498db;
            color: white;
        }

        .cma_survey-btn-restart:hover {
            background-color: #2980b9;
        }

        .cma_survey-error {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 10px;
            display: none;
        }

        .cma_survey-error.active {
            display: block;
        }

        .cma_survey-question.error {
            border-left: 4px solid #e74c3c;
        }

        .cma_survey-step-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .cma_survey-step-indicator-item {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #e1e4e8;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cma_survey-step-indicator-item.active {
            background-color: #3498db;
            transform: scale(1.2);
        }

        /* Email Pop-up Styles */
        .cma_survey-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .cma_survey-popup-overlay.active {
            display: flex;
        }

        .cma_survey-popup {
            background-color: white;
            padding: 30px;
            max-width: 650px;
            width: 90%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 8px solid #222;
            border-radius: 10px;


        }

        .cma_survey-popup h3 {
            margin-top: 0;
            color: #211894;
        }

        .cma_survey-popup p {
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .cma_survey-popup-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cma_survey-popup-input {
            padding: 12px;
            border: 1px solid #ddd;
            font-size: 16px;
        }

        .cma_survey-popup-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .cma_survey-popup-btn {
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            font-weight: 600;
        }

        .cma_survey-popup-submit {
            background-color: #211894;
            color: white;
        }

        .cma_survey-popup-close {
            background-color: #f2f2f2;
            color: #333;
        }

        @media (max-width: 768px) {
             ul.cma_survey_contact {
        display: inline-block;
}
            .cma_survey-rating-scale {
                flex-wrap: wrap;
            }
            
            .cma_survey-rating-option {
                width: 20%;
                margin-bottom: 10px;
            }
            
            .cma_survey-popup {
                padding: 20px;
            }
            
            .cma_survey-popup-buttons {
                flex-direction: column;
            }
        }


.cma-success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

.cma-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* WordPress specific adjustments */
.cma_survey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}