
    .themify_builder_content .module-menu.module #menu-nav-buttons li.current-menu-item a {
        color: #114a85;
    }

    #frm_form_5_container{
        display: none !important;
    }

    .card {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        width: 100%;
        max-width: 48rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        margin: 0 auto;
    }

    .card-header {
        background: linear-gradient(104deg, #76C5C9 0%, #114A85 100%);
        color: white;
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        margin-bottom: 1.25rem;
    }

    .card-title svg {
        width: 2rem;
        height: 2rem;
        margin-right: 0.75rem;
    }

    .step-indicator {
        position: relative;
        margin-top: 1.25rem;
    }

    .step-line {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
    }

    .step-dots {
        position: relative;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .step-dot {
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        border: 2px solid;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-dot.done {
        background: white;
        border-color: white;
    }

    .step-dot.active {
        background: rgba(255, 255, 255, 0.9);
        border-color: white;
    }

    .step-dot.pending {
        background: #264d84;
        border-color: white;
    }

    .step-text {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 0.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }
    .card-content p{
        margin: 0;
    }

    .card-footer {
        display: flex;
        justify-content: space-between;
        padding: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }

    .btn {
        display: flex;
        height: 3rem;
        padding: 0 1.5rem;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        border-radius: 8px;
        background: #78C8CB;
        color: white;
        border: none;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s;
        text-transform: initial;
        letter-spacing: 0;
    }

    .btn:hover:not(:disabled) {
        background: #6fbec1;
    }

    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-label {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #374151;
    }

    .form-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 1rem;
    }

    .form-input:focus {
        outline: none;
        border-color: #264d84;
        box-shadow: 0 0 0 3px rgba(38, 77, 132, 0.1);
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .radio-option {
        display: flex;
        align-items: center;
        padding: 0.75rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .radio-option:hover {
        border-color: #9ca3af;
    }

    .radio-option.selected {
        background: rgba(38, 77, 132, 0.1);
        border-color: #264d84;
        box-shadow: 0 0 0 1px #264d84;
    }

    .radio-option input[type="radio"] {
        margin-right: 0.75rem;
        accent-color: #264d84;
        padding: initial;
    }

    .intro-box {
        margin-bottom: 1.5rem;
        padding: 1rem;
        border: 1px solid rgba(38, 77, 132, 0.2);
        background: rgba(38, 77, 132, 0.05);
        border-radius: 8px;
    }

    .intro-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: #264d84;
        margin-bottom: 0.5rem;
    }

    .intro-text {
        font-size: 0.875rem;
        color: #374151;
        margin-bottom: 0.75rem;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
        margin-top: 0.75rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #374151;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .error-text {
        font-size: 0.75rem;
        color: #dc2626;
        margin-top: 0.25rem;
    }

    .privacy-text {
        font-size: 0.75rem;
        color: #6b7280;
        margin-top: 0.75rem;
    }

    .question-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #264d84;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
    }

    .question-title svg {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.5rem;
    }

    .question-block {
        margin-bottom: 1.5rem;
    }

    .question-label {
        font-size: 1rem;
        font-weight: 500;
        color: #1f2937;
        margin-bottom: 0.75rem;
        display: block;
    }

    .radar-container {
        display: flex;
        justify-content: center;
        padding: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: white;
        margin-bottom: 1rem;
    }

    .scores-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .score-card {
        padding: 0.75rem;
        border-radius: 8px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
    }

    .score-label {
        font-size: 0.75rem;
        color: #6b7280;
    }

    .score-value {
        font-size: 1.5rem;
        font-weight: bold;
        color: #264d84;
    }

    .summary-section {
        margin-top: 1.5rem;
        padding: 1.5rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #f9fafb;
    }

    .cta-section {
        background: #264d84;
        color: white;
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        margin-top: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        margin-bottom: 0.5rem;
    }

    .card-content .cta-text {
        margin-bottom: 1rem;
    }

    .contact-info {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
        margin-top: 1.5rem;
    }

    .phone-link {
        display: inline-flex;
        align-items: center;
        font-weight: bold;
        font-size: 1.125rem;
        margin-top: 0.5rem;
        color: white;
        text-decoration: none;
    }

    .phone-link:hover {
        text-decoration: underline;
    }

    .hidden {
        display: none;
    }

    @media (max-width: 640px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
        
        .feature-grid {
            grid-template-columns: 1fr;
        }
        
        .card-footer {
            flex-direction: column;
            gap: 0.75rem;
        }
    }
