#wqc-calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: none !important;
    border: none !important;
}

.wqc-progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}

.wqc-progress-fill {
    height: 100%;
    background: #0073aa;
    width: 0%;
    transition: width 0.3s ease;
}

.wqc-step {
    display: none;
}

.wqc-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.wqc-field-group {
    margin-bottom: 20px;
}

.wqc-field-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.wqc-field-group input[type="text"],
.wqc-field-group input[type="email"],
.wqc-field-group input[type="url"],
.wqc-field-group input[type="number"],
.wqc-field-group textarea,
.wqc-field-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wqc-field-group input[type="text"]:focus,
.wqc-field-group input[type="email"]:focus,
.wqc-field-group input[type="url"]:focus,
.wqc-field-group input[type="number"]:focus,
.wqc-field-group textarea:focus,
.wqc-field-group select:focus {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #0073aa;
    outline: none;
}

.wqc-radio-group label,
.wqc-checkbox-group label {
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.wqc-prev {
    background: #ccc;
    color: #333;
}

.wqc-next,
.wqc-submit {
    background: #0073aa;
    color: #fff;
}

.wqc-prev:hover {
    background: #bbb;
}

.wqc-next:hover,
.wqc-submit:hover {
    background: #005177;
}

.wqc-summary-content {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.wqc-total-price {
    #wqc-calculator-wrapper {
        max-width: 800px;
        margin: 0 auto;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-shadow: none !important;
        border: none !important;
    }

    .wqc-progress-bar {
        height: 10px;
        background: #e0e0e0;
        border-radius: 5px;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .wqc-progress-fill {
        height: 100%;
        background: #0073aa;
        width: 0%;
        transition: width 0.3s ease;
    }

    .wqc-step {
        display: none;
    }

    .wqc-step.active {
        display: block;
        animation: fadeIn 0.5s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .wqc-field-group {
        margin-bottom: 20px;
    }

    .wqc-field-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .wqc-field-group input[type="text"],
    .wqc-field-group input[type="email"],
    .wqc-field-group input[type="url"],
    .wqc-field-group input[type="number"],
    .wqc-field-group textarea,
    .wqc-field-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .wqc-field-group input[type="text"]:focus,
    .wqc-field-group input[type="email"]:focus,
    .wqc-field-group input[type="url"]:focus,
    .wqc-field-group input[type="number"]:focus,
    .wqc-field-group textarea:focus,
    .wqc-field-group select:focus {
        background-color: #ffffff !important;
        color: #000000 !important;
        border-color: #0073aa;
        outline: none;
    }

    .wqc-radio-group label,
    .wqc-checkbox-group label {
        cursor: pointer;
        font-size: 16px;
        transition: background 0.2s;
    }

    .wqc-prev {
        background: #ccc;
        color: #333;
    }

    .wqc-next,
    .wqc-submit {
        background: #0073aa;
        color: #fff;
    }

    .wqc-prev:hover {
        background: #bbb;
    }

    .wqc-next:hover,
    .wqc-submit:hover {
        background: #005177;
    }

    .wqc-summary-content {
        background: #fff;
        padding: 15px;
        border: 1px solid #eee;
        margin-bottom: 20px;
    }

    .wqc-total-price {
        font-size: 1.5em;
        font-weight: bold;
        color: #0073aa;
        text-align: right;
    }

    .required {
        color: red;
    }

    /* GDPR Checkbox Alignment */
    .wqc-gdpr {
        text-align: left;
        max-width: 100%;
    }

    .wqc-gdpr label {
        display: flex !important;
        align-items: flex-start;
        gap: 10px;
        cursor: pointer;
    }

    .wqc-gdpr input[type="checkbox"] {
        margin-top: 4px;
        /* Align with top line of text */
        flex-shrink: 0;
    }