.jwco-leadership-survey {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.jwco-survey-header {
    text-align: center;
    margin-bottom: 40px;
}

.jwco-survey-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.jwco-survey-header .subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.jwco-question-container {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.jwco-question h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 800 !important;
    line-height: 1.4;
    font-weight: normal;
}

.jwco-question-description {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.jwco-question-description strong {
    font-weight: 600;
}

.jwco-answers {
    margin-left: 20px;
}

.jwco-answer {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
}

.jwco-answer:hover {
    background: #f9f9f9;
    border-color: #0073aa;
}

.jwco-answer.faded {
    opacity: 0.3;
}

.jwco-answer.fading {
    opacity: 0;
    transform: translateY(10px);
}

.jwco-answer label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
}

.jwco-answer input[type="radio"] {
    margin-right: 15px;
    margin-top: 4px;
}

.jwco-answer .answer-content {
    flex-grow: 1;
}

.jwco-answer .answer-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.jwco-answer .answer-letter {
    font-weight: 600;
    color: #F5B400 !important;
    margin-right: 8px;
    min-width: 25px;
}

.jwco-answer .answer-text {
    font-weight: 500;
    line-height: 1.4;
}

.jwco-answer .answer-description {
    margin-left: 33px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin-top: 5px;
}

.jwco-try-this-suggestion {
    margin-top: 1rem;
    padding: 15px;
    background: #f0f7ff;
    border-left: 4px solid black !important;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.jwco-try-this-suggestion.visible {
    opacity: 1;
    transform: translateY(0);
}

.jwco-try-this-suggestion h4 {
    color: #F5B400 !important;
    margin: 0 0 10px 0;
    font-size: 16px;
}

.jwco-try-this-suggestion .suggestion-text {
    margin: 0;
    line-height: 1.5;
}

.jwco-survey-actions {
    text-align: center;
    margin-top: 40px;
}

.jwco-survey-actions .button {
    padding: 12px 24px;
    font-size: 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.jwco-survey-actions .button:hover {
    background: #005177;
}

.jwco-survey-results {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.jwco-result-header {
    text-align: center;
    margin-bottom: 30px;
}

.jwco-result-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.jwco-result-header .subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.jwco-result-section {
    margin-bottom: 30px;
}

.jwco-result-section h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.jwco-result-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.jwco-result-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.jwco-result-section li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #444;
}

.jwco-result-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.jwco-result-footer p {
    color: #666;
    font-style: italic;
}

.jwco-results-actions {
    text-align: center;
    margin-top: 30px;
}

.jwco-results-actions .button {
    padding: 12px 24px;
    font-size: 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.jwco-results-actions .button:hover {
    background: #005177;
}

/* Responsive styles */
@media (max-width: 768px) {
    .jwco-leadership-survey {
        padding: 15px;
    }
    
    .jwco-question-container {
        padding: 20px;
    }
    
    .jwco-question h3 {
        font-size: 18px;
    }
    
    .jwco-answer {
        padding: 12px;
    }
    
    .jwco-survey-actions .button,
    .jwco-results-actions .button {
        width: 100%;
    }
}

/* Progress Bar Styles */
.jwco-progress-bar {
    margin: 30px auto;
    max-width: 600px;
    background: black;
    border-radius: 10px;
    height: 10px;
    position: relative;
    overflow: hidden;
}

.jwco-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #F5B400;
    transition: width 0.3s ease;
}

.jwco-progress-text {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.jwco-progress-text span {
    color: #2271b1;
    font-weight: 600;
}

/* Question Container Styles */
.jwco-questions-container {
    position: relative;
    min-height: 300px;
}

.jwco-question-container {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jwco-question-container.active {
    display: block;
    opacity: 1;
}

/* Navigation Buttons */
.jwco-navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    width: 100%;
}

.jwco-navigation-buttons button {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.jwco-prev-button {
    background: black !important;
    color: #ffffff !important;
}

.jwco-prev-button:hover {
    background: black !important; 
    color: white !important;
}

.jwco-next-button {
    background: #F5B400 !important;
    color: #ffffff !important;
    margin-left: auto;
}

.jwco-next-button:hover {
    background: #F5B400!important;
    color: white !important;
}

.jwco-next-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ccc;
}

.jwco-next-button.active {
    opacity: 1;
    cursor: pointer;
    background-color: #F5B400 !important;
}

/* Animation Classes */
.slide-in-right {
    animation: slideInRight 0.3s forwards;
}

.slide-in-left {
    animation: slideInLeft 0.3s forwards;
}

.slide-out-right {
    animation: slideOutRight 0.3s forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.3s forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.jwco-lead-capture {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jwco-lead-capture h3 {
    margin-bottom: 1.5rem;
    color: black !important;
    font-size: 1.2em;
}

.jwco-email-capture h3{
    color: black !important;
}


.jwco-form-field button {
    background-color: black !important;
    color: white !important
}

.jwco-form-field button:hover {
    background-color: #F5B400 !important;
    color: white !important
}


.jwco-form-field {
    margin-bottom: 1.5rem;
}

.jwco-form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.jwco-form-field input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.jwco-form-field input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.jwco-lead-capture button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1em;
    font-weight: 500;
    margin-top: 1rem;
    background-color: #F5B400 !important;
    border: 1px solid white !important;
    color: white !important;
}

.jwco-lead-capture button[type="submit"]:hover {
    background-color: #F5B400 !important;
    color: white !important;
}

/* Animation for lead capture form */
.jwco-lead-capture {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.jwco-lead-capture.visible {
    opacity: 1;
    transform: translateY(0);
}

.jwco-answer-description {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid black !important;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.jwco-answer-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.jwco-answer-description h4 {
    color: #F5B400 !important;
    margin: 0 0 0.5rem 0;
    font-size: 1.1em;
}

.jwco-answer-description .description-text {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Result Page Layout */
.jwco-survey-result {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.jwco-result-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column Styles */
.jwco-result-left {
    position: sticky;
    top: 2rem;
}

.jwco-result-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.jwco-result-header h1 span {
    display: block;
}

.leadership-text {
    color: #F5B400;
}

.reflection-text {
    color: #000;
    font-weight: bold;
}

.profile-text {
    color: #F5B400;
}

.jwco-result-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

/* Right Column Styles */
.jwco-result-right {
    padding-top: 1rem;
}

.jwco-result-section {
    margin-bottom: 3rem;
}

.jwco-result-section h2 {
    color: #F5B400;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.jwco-result-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.jwco-result-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.jwco-result-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.jwco-result-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #F5B400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .jwco-result-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
    }

    .jwco-result-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .jwco-result-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .jwco-result-left {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .jwco-result-header h1 {
        font-size: 2.5rem;
    }

    .jwco-survey-result {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .jwco-result-header h1 {
        font-size: 2rem;
    }

    .jwco-result-section h2 {
        font-size: 1.5rem;
    }
}

.jwco-survey-2col-layout {
    display: flex;
    min-height: 100vh;
    background: #fff;
}
.jwco-survey-leftcol {
    width: 340px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
}
.jwco-survey-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #F5B400;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
    position: relative;
}
.jwco-survey-title {
    color: #111;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    padding-left: 18px;
    padding-top: 18px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}
.jwco-survey-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 18px;
    font-style: italic;
}
.jwco-survey-rightcol {
    flex: 1;
    padding: 60px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    min-width: 0;
}
.jwco-question-desc-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}
.jwco-question-plus {
    font-size: 10rem;
    font-weight: 700;
    margin-right: 16px;
    color: #F5B400;
    line-height: 1;
}
.jwco-question-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
}
.question-text {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}
.jwco-answers {
    margin-bottom: 18px;
}
.jwco-answer {
    margin-bottom: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    transition: border 0.2s;
}
.jwco-answer label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    width: 100%;
}
.jwco-answer input[type="radio"] {
    margin-right: 14px;
    accent-color: #F5B400;
}
.jwco-answer .answer-letter {
    font-weight: 600;
    color: #F5B400;
    margin-right: 8px;
    min-width: 25px;
}
.jwco-answer .answer-text {
    font-weight: 500;
    line-height: 1.4;
}
.jwco-answer-feedback {
    margin: 24px 0 12px 0;
    display: block;
}
.jwco-answer-meaning-box {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    border-left: 6px solid #F5B400;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.jwco-meaning-label, .jwco-try-label {
    font-weight: 700;
    margin-bottom: 2px;
    color: #F5B400;
    font-size: 1rem;
}
.jwco-meaning-text, .jwco-try-text {
    font-size: 1rem;
    color: #222;
    margin-bottom: 10px;
    margin-left: 0;
}
.jwco-try-label {
    margin-top: 6px;
}
.jwco-navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.jwco-navigation-buttons .button {
    min-width: 90px;
    font-size: 1rem;
    padding: 10px 0;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.jwco-navigation-buttons .jwco-prev-button {
    background: #111;
    color: #fff;
}
.jwco-navigation-buttons .jwco-next-button, .jwco-lead-capture button {
    background: #F5B400;
    color: #fff;
    border: none;
}
.jwco-navigation-buttons .jwco-next-button:disabled {
    background: #eee;
    color: #aaa;
    cursor: not-allowed;
}
@media (max-width: 900px) {
    .jwco-survey-2col-layout {
        flex-direction: column;
    }
    .jwco-survey-leftcol {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        padding: 30px 10px 10px 10px;
    }
    .jwco-survey-circle {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .jwco-survey-rightcol {
        padding: 30px 10px 20px 10px;
    }
}
@media (max-width: 600px) {
    .jwco-survey-2col-layout {
        flex-direction: column;
    }
    .jwco-survey-leftcol {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 5px 5px 5px;
    }
    .jwco-survey-circle {
        width: 90px;
        height: 90px;
        font-size: 1.1rem;
    }
    .jwco-survey-title {
        font-size: 1.1rem;
    }
    .jwco-survey-rightcol {
        padding: 10px 2vw;
    }
    .jwco-answer-meaning-box {
        padding: 12px 10px;
    }
}

.jwco-answer-meaning-box-v2 {
    display: flex;
    flex-direction: column;
    background: #f3f3f3;
    border-radius: 4px;
    position: relative;
    margin: 18px 0 0 0;
    padding: 18px 24px 18px 0;
    width: 100%;
    min-width: 0;
}
.jwco-answer-meaning-box-v2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    background: #F5B400;
    border-radius: 4px 0 0 4px;
}
.jwco-meaning-row, .jwco-try-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    padding: 10px 30px;
}
.jwco-meaning-label-v2, .jwco-try-label-v2 {
    font-weight: 700;
    color: #F5B400;
    min-width: 150px;
    max-width: 180px;
    flex-shrink: 0;
    font-size: 1.1em;
    line-height: 1.5;
    margin-right: 18px;
    text-align: left;
}
.jwco-meaning-text-v2, .jwco-try-text-v2 {
    color: #444;
    font-size: 1.08em;
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
    min-width: 0;
    text-align: left;
}
.jwco-meaning-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}
@media (max-width: 600px) {
    .jwco-answer-meaning-box-v2 {
        padding: 12px 6px 12px 0;
    }
    .jwco-meaning-label-v2, .jwco-try-label-v2 {
        min-width: 90px;
        max-width: 120px;
        font-size: 1em;
        margin-right: 8px;
    }
}

/* New result layout */
.jwco-survey-result-grid-v2 {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 2.5px );
    -webkit-backdrop-filter: blur( 2.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: visible !important;
    align-items: stretch !important;
}
.jwco-result-left-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: visible !important;
    min-height: 100%;
}
.jwco-result-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #F5B400;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
    position: relative;
}
.jwco-result-title {
    color: #111;
    font-size: 2.4rem !important;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    padding-left: 22px;
    padding-top: 22px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    word-break: break-word;
}
.jwco-result-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 18px;
    font-style: italic;
    margin-left: 8px;
}
.jwco-profile-sticky {
    position: sticky;
    top: 24px;
    z-index: 2;
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-self: flex-start;
}
.jwco-profile-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F5B400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-left: 8px;
}
.jwco-result-right-v2 {
    width: 100%;
}
.jwco-result-section h2 {
    color: #F5B400;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.jwco-result-footer-v2 {
    margin-top: 3rem;
    width: 100%;
}
.jwco-result-footer-row {
    display: flex;
    gap: 32px;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.jwco-social-share-v2, .jwco-email-capture-v2 {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 28px 24px 24px 24px;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 420px;
}
.jwco-social-share-v2 h3, .jwco-email-capture-v2 h3 {
    color: #F5B400;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (max-width: 900px) {
    .jwco-survey-result-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 4vw;
    }
    .jwco-result-left-v2 {
        align-items: center !important;
        text-align: center;
    }
    .jwco-result-circle {
        margin-left: auto;
        margin-right: auto;
    }
    .jwco-result-title-spaced {
        text-align: center;
        padding-left: 0;
        padding-top: 18px;
        font-size: 1.7rem !important;
    }
    .jwco-profile-sticky {
        display: none !important;
    }
}
@media (max-width: 600px) {
    .jwco-survey-result-grid-v2 {
        padding: 10px 2vw;
    }
    .jwco-result-footer-row {
        flex-direction: column;
        gap: 18px;
    }
    .jwco-social-share-v2, .jwco-email-capture-v2 {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        padding: 18px 8px 18px 8px;
    }
    .jwco-result-circle {
        width: 110px;
        height: 110px;
    }
    .jwco-result-title-spaced {
        font-size: 0.9rem;
        padding-top: 8px;
    }
}

.jwco-result-plus {
    position: relative;
    left: 0;
    top: 0;
    font-size: 10rem;
    font-weight: 700;
    color: #F5B400;
    line-height: 1;
    z-index: 3;
    padding-left: 0;
    padding-top: 2px;
    margin-bottom: -18px;
    pointer-events: none;
    text-align: left;
    margin-left: -50px !important;
}
@media (max-width: 900px) {
    .jwco-result-plus {
        font-size: 2.5rem;
        padding-left: 0;
        padding-top: 0;
        margin-bottom: -10px;
    }
}

.jwco-social-share-modern {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
}
.jwco-social-share-heading {
    color: #F5B400;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: left;
}
.jwco-social-buttons-modern {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.social-button-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: none;
    outline: none;
    min-width: 0;
    min-height: 44px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: none;
    cursor: pointer;
    gap: 0.6em;
    white-space: nowrap;
}
.social-button-modern.facebook {
    background: #1877f2;
}
.social-button-modern.twitter {
    background: #000;
}
.social-button-modern.linkedin {
    background: #0a66c2;
}
.social-button-modern:hover {
    opacity: 0.9;
    text-decoration: none;
}
.social-button-modern i {
    font-size: 1.2em;
    margin-right: 0.5em;
}
@media (max-width: 600px) {
    .jwco-social-buttons-modern {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    .jwco-social-share-heading {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

.jwco-result-title-spaced {
    display: block;
    text-align: left;
    padding-left: 48px;
    padding-top: 54px;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: 0.01em;
    color: #111;
    word-break: break-word;
}
@media (max-width: 900px) {
    .jwco-result-circle {
        width: 160px;
        height: 160px;
    }
    .jwco-result-title-spaced {
        padding-left: 16px;
        padding-top: 18px;
        font-size: 1.2rem;
    }
} 