
        /* Apply Open Sans font globally */
        * {
            font-family: 'Poppins', sans-serif;
        }

        /* Updated background colors */
        body {
            background-color: #F7F9FF;
        }

        .cp-content {
            background-color: #F7F9FF;
        }

        /* Hide original sidebar */
        .cp-sidebar { display: none !important; }
        
        /* Full-width layout styles */
        .cp-layout { 
            display: block !important; 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0 2px; 
            background-color: #F7F9FF;
        }
        .cp-main { 
            width: 100% !important; 
            max-width: none !important; 
            background-color: #F7F9FF;
        }

        /* Standardized content text styling */
        .cp-content-text {
            font-size: 15px;
            font-weight: 400;
            line-height: 1.6;
            color: #595f6a;
        }

        /* UPDATED: New Company Card Design - Similar to provided HTML */
        .cp-company-item {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            background: #fff;
            border-radius: 16px;
            box-shadow: none;
            overflow: hidden;
            padding: 25px;
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto 20px auto;
            transition: all 0.3s ease;
        }

        .cp-company-item:hover {
            box-shadow: 0 10px 30px rgba(114, 86, 233, 0.1);
            transform: translateY(-2px);
        }

        /* Sponsored Ribbon */
        .cp-sponsored-ribbon {
            width: 150px;
            height: 150px;
            overflow: hidden;
            position: absolute;
            top: -10px;
            right: -10px;
            z-index: 10;
        }

        .cp-sponsored-ribbon::before,
        .cp-sponsored-ribbon::after {
            position: absolute;
            z-index: -1;
            content: '';
            display: block;
            border: 5px solid #7256E9;
        }

        .cp-sponsored-ribbon::before {
            top: 0;
            left: 0;
            border-top-color: transparent;
            border-right-color: transparent;
        }

        .cp-sponsored-ribbon::after {
            bottom: 0;
            right: 0;
            border-top-color: transparent;
            border-right-color: transparent;
        }

        .cp-sponsored-ribbon-text {
            position: absolute;
            display: block;
            width: 225px;
            padding: 15px 0;
            background-color: #7256E9;
            box-shadow: 0 5px 10px rgba(0,0,0,.1);
            color: #fff;
            font: 700 14px/1 'Open Sans', sans-serif;
            text-shadow: 0 1px 1px rgba(0,0,0,.2);
            text-transform: uppercase;
            text-align: center;
            left: -25px;
            top: 30px;
            transform: rotate(45deg);
        }

        /* Card Left Section */
        .cp-card-left {
            flex: 2 1 60%;
            min-width: 280px;
        }

        .cp-card-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .cp-card-logo {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            margin-right: 18px;
            flex-shrink: 0;
            object-fit: cover;
            border: 1px solid #dedbdb;
            padding: 5px;
            }

        .cp-card-company-info {
            display: flex;
            flex-direction: column;
        }

        .cp-card-company-name {
                font-size: 1.2rem;
                font-weight: 500;
                color: #003366;
                margin-bottom: 4px;
                text-decoration: none;
            }

        .cp-card-company-name:hover {
            color: #7256E9;
        }

        .cp-card-rating {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .cp-card-rating-value {
            font-size: 0.95rem;
            font-weight: 500;
            color: #333;
        }

        .cp-card-stars {
            color: #FFA500;
            display: flex;
        }

        .cp-card-stars i {
            font-size: 18px;
        }

        .cp-card-review-link {
            color: #7256E9;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .cp-card-review-link:hover {
            text-decoration: underline;
        }

        .cp-card-service-category {
            font-style: italic;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .cp-card-description {
            font-size: 0.95rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .cp-card-read-more {
            color: #7256E9;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            margin-left: 6px;
        }

        .cp-card-read-more:hover {
            text-decoration: underline;
        }

        /* Progress Section */
        .cp-card-progress-section {
            display: flex;
            gap: 20px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .cp-card-progress-item {
            flex: 1 1 45%;
        }

        .cp-card-progress-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #555;
            margin-top: 10px;
        }

        .cp-card-progress-bar {
            background: #e0e0e0;
            border-radius: 50px;
            height: 10px;
            margin-top: 4px;
            overflow: hidden;
        }

        .cp-card-progress-fill {
            height: 100%;
            background-color: #7256E9;
            border-radius: 50px;
            transition: width 0.5s ease;
        }

        /* Card Right Section */
        .cp-card-right {
            flex: 1 1 30%;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .cp-card-info-box {
            background: #f6f8fa;
            border-radius: 12px;
            padding: 16px 18px;
            margin-bottom: 18px;
        }

        .cp-card-info-item {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            margin-bottom: 10px;
            color: #333;
        }

        .cp-card-info-item:last-child {
            margin-bottom: 0;
        }

        .cp-card-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cp-card-btn {
            flex: 1;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .cp-card-btn-outline {
            background: transparent;
            border: 1.5px solid #7256E9;
            color: #7256E9;
        }

        .cp-card-btn-outline:hover {
            background: #f3f0ff;
        }

        .cp-card-btn-blue {
            background: #7256E9;
            color: #fff;
            border: none;
        }

        .cp-card-btn-blue:hover {
            background: #563cd1;
        }

        /* Portfolio Popup Styles */
        .portfolio-popup {
            position: fixed;
            top: 0;
            right: -70%;
            width: 70%;
            height: 100vh;
            background: white;
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        }

        .portfolio-popup.active { right: 0; overflow: auto;}

        .portfolio-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .portfolio-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .portfolio-popup-header {
            background: #7256E9;
            color: white;
            padding: 24px;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .portfolio-popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .portfolio-popup-close:hover { background: rgba(255, 255, 255, 0.3); }

        .portfolio-popup-header-content { display: flex; align-items: center; }

        .portfolio-popup-company-info { display: flex; align-items: center; }

        .portfolio-popup-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 16px;
            object-fit: cover;
        }

        .portfolio-popup-company-details { display: flex; flex-direction: column; }

        .portfolio-popup-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .portfolio-popup-content {
            display: flex;
            height: calc(100vh - 120px);
        }

        .portfolio-popup-left {
            width: 65%;
            padding: 10px;
            background: #F7F9FF;
            overflow: auto;
        }

        .portfolio-popup-right {
            width: 35%;
            background: white;
            border-left: 1px solid #e2e8f0;
            overflow: auto;
        }

        /* UPDATED: Pricing Section in Popup */
        .popup-pricing-section {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border: none;
            box-shadow: none;
        }

        .popup-pricing-section:hover {
            box-shadow: 0 4px 12px rgba(114, 86, 233, 0.1);
        }

        .popup-pricing-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #595f6a;
            margin: 0 0 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .popup-pricing-section h3 i {
            color: #7256E9;
        }

        .popup-pricing-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .popup-pricing-item {
            background: #f6f8fa;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .popup-pricing-label {
            font-weight: 600;
            color: #595f6a;
            font-size: 0.9rem;
        }

        .popup-pricing-value {
            font-weight: 500;
            color: #7256E9;
            font-size: 0.9rem;
        }

        .popup-pricing-discuss {
            background: #f6f8fa;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .popup-pricing-discuss i {
            color: #7256E9;
            font-size: 1.2rem;
        }

        /* UPDATED: Reviews Section in Popup */
        .popup-reviews-section {
            background: white;
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 24px;
            border: none;
            box-shadow: none;
        }

        .popup-reviews-section:hover {
            box-shadow: 0 4px 12px rgba(114, 86, 233, 0.1);
        }

        .popup-reviews-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #595f6a;
            margin: 0 0 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .popup-reviews-section h3 i {
            color: #7256E9;
        }

        .popup-reviews-summary {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            padding: 20px;
            background: #f6f8fa;
            border-radius: 12px;
        }

        .popup-reviews-rating {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .popup-reviews-score {
            font-size: 2rem;
            font-weight: 700;
            color: #7256E9;
        }

        .popup-reviews-stars {
            display: flex;
            color: #FFA500;
            font-size: 1.2rem;
        }

        .popup-reviews-count {
            font-size: 0.9rem;
            color: #595f6a;
            text-align: center;
        }

        .popup-reviews-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .popup-rating-bar {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .popup-rating-label {
            font-size: 0.85rem;
            color: #595f6a;
            min-width: 60px;
        }

        .popup-rating-progress {
            flex: 1;
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .popup-rating-fill {
            height: 100%;
            background: #7256E9;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .popup-rating-value {
            font-size: 0.85rem;
            color: #595f6a;
            min-width: 30px;
            text-align: right;
        }

        .popup-latest-review {
            background: #f6f8fa;
            border-radius: 12px;
            padding: 20px;
        }

        .popup-review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .popup-review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #7256E9;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .popup-review-info {
            flex: 1;
        }

        .popup-review-name {
            font-weight: 600;
            color: #595f6a;
            font-size: 0.9rem;
        }

        .popup-review-date {
            font-size: 0.8rem;
            color: #777;
        }

        .popup-review-text {
            color: #595f6a;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* Company Info Sections - REMOVED BORDER */
        .company-info-section {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border: none;
            box-shadow: none;
        }

        .company-info-section:hover {
            box-shadow: 0 4px 12px rgba(114, 86, 233, 0.1);
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #595f6a;
            margin: 0 0 20px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i { color: #7256E9; }

        .company-stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 16px;
            background: #F7F9FF;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            box-shadow: none;
        }

        .stat-item:hover {
            box-shadow: 0 2px 8px rgba(114, 86, 233, 0.1);
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7256E9;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 15px;
            color: #595f6a;
            font-weight: 500;
        }

        .company-overview {
            color: #595f6a;
            line-height: 1.7;
            font-size: 15px;
        }

        /* Awards Section */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 16px;
        }

        .award-item {
            text-align: center;
            padding: 16px;
            background: #F7F9FF;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            box-shadow: none;
        }

        .award-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(114, 86, 233, 0.1);
        }

        .award-image {
            width: 60px;
            height: 60px;
            margin: 0 auto 12px;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .award-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .award-name {
            font-size: 15px;
            font-weight: 600;
            color: #595f6a;
            line-height: 1.3;
        }

        /* Portfolio Section Styles - REMOVED BORDER */
        .portfolio-section {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border: none;
            box-shadow: none;
        }

        .portfolio-section:hover {
            box-shadow: 0 4px 12px rgba(114, 86, 233, 0.1);
        }

        .portfolio-slider-wrapper {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 10px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            justify-content: center;
            align-items: center;
        }

        .portfolio-slider-wrapper::-webkit-scrollbar { height: 8px; }
        .portfolio-slider-wrapper::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
        .portfolio-slider-wrapper::-webkit-scrollbar-thumb { background: #7256E9; border-radius: 4px; }

        .portfolio-card {
            min-width: 280px;
            background: #F7F9FF;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            border: 1px solid #e2e8f0;
            box-shadow: none;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(114, 86, 233, 0.15);
            background: white;
        }

        .portfolio-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #595f6a;
            margin-bottom: 8px;
        }

        .portfolio-card-description {
            font-size: 15px;
            color: #595f6a;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .portfolio-card-image {
            width: 100%;
            height: 150px;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .portfolio-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: #595f6a;
        }

        /* Portfolio Modal Styles */
        .portfolio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .portfolio-modal.active { display: flex; }

        .portfolio-modal-content {
            background: white;
            border-radius: 16px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .portfolio-modal-header {
            background: #7256E9;
            color: white;
            padding: 24px;
            border-radius: 16px 16px 0 0;
            position: relative;
        }

        .portfolio-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .portfolio-modal-close:hover { background: rgba(255, 255, 255, 0.3); }

        .portfolio-modal-body { padding: 24px; }

        .portfolio-modal-image {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            background: #F7F9FF;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-modal-image img {
            width: 100%;
            height: 100%;
        }

        .portfolio-modal-section { margin-bottom: 20px; }

        .portfolio-modal-section h6 {
            font-size: 1rem;
            font-weight: 600;
            color: #595f6a;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e2e8f0;
        }

        .portfolio-modal-kpi {
            background: #F7F9FF;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 10px;
        }

        .portfolio-modal-kpi-title {
            font-size: 15px;
            font-weight: 600;
            color: #595f6a;
            margin-bottom: 5px;
        }

        .portfolio-modal-progress {
            height: 20px;
            background: #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .portfolio-modal-progress-bar {
            height: 100%;
            background: #7256E9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 15px;
            font-weight: 600;
            transition: width 0.5s ease;
        }

        .portfolio-specialty-tag {
            display: inline-block;
            background: #7256E9;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 15px;
            margin-right: 8px;
            margin-bottom: 8px;
        }

        /* Contact Form in Right Panel */
        .contact-form-container {
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 24px;
        }

        .contact-form-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #595f6a;
            margin: 0 0 8px 0;
        }

        .contact-form-subtitle {
            color: #595f6a;
            font-size: 15px;
            margin-bottom: 24px;
        }

        .contact-form { flex: 1; display: flex; flex-direction: column; }

        .contact-form-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .contact-form-btn {
            width: 100%;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }

        .contact-form-btn--profile {
            background: #7256E9;
            color: white;
        }

        .contact-form-btn--profile:hover {
            background: #5d46c7;
        }

        .contact-form-btn--website {
            background: #7256E9;
            color: white;
        }

        .contact-form-btn--website:hover {
            background: #5d46c7;
        }

        .form-group { margin-bottom: 20px; }

        .form-label {
            display: block;
            font-weight: 600;
            color: #595f6a;
            margin-bottom: 6px;
            font-size: 15px;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: white;
            box-sizing: border-box;
            color: #595f6a;
        }

        .form-input:focus {
            outline: none;
            border-color: #7256E9;
            box-shadow: 0 0 0 3px rgba(114, 86, 233, 0.1);
        }

        .form-textarea { min-height: 100px; resize: vertical; }

        .submit-btn {
            background: #7256E9;
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .submit-btn:hover {
            background: #5d46c7;
        }

        /* UPDATED: Read more link styling similar to company page with shadow */
        .read-more-link {
            color: #7256E9;

        }

        .read-more-link:hover {
            background: #7256E9;
            color: white;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cp-company-item {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .cp-card-left,
            .cp-card-right {
                flex: 1 1 100%;
                min-width: auto;
            }

            .cp-card-progress-section {
                flex-direction: column;
            }

            .cp-card-buttons {
                flex-direction: column;
            }

            .cp-card-btn {
                width: 100%;
            }

            .portfolio-popup { width: 95%; right: -95%; }
            .portfolio-popup-content { flex-direction: column; height: auto; }
            .portfolio-popup-left { 
                width: 100%; 
                order: 1; 
                background-color: #F7F9FF;
            }
            .portfolio-popup-right {
                width: 100%;
                border-left: none;
                border-top: 1px solid #e2e8f0;
                order: 2;
            }
                        
            .portfolio-card { min-width: 250px; }
            .portfolio-modal-content { margin: 10px; max-height: 95vh; }
        }

        /* Adjust content width */
        .cp-content { 
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 0.5rem 0.5rem; 
            background-color: #F7F9FF;
        }

        /* Hero section background */
        .cp-hero {
            background-color: #F7F9FF;
        }

        /* Top companies section background */
        .cp-top-companies {
            background-color: #F7F9FF;
        }

        /* Filter section background */
        .cp-filter {
            background-color: #F7F9FF;
        }

        /* Modal styling updates */
        .cp-modal__content {
            background: white;
            border: 1px solid #e2e8f0;
        }

        .cp-contact-form__title {
            color: #595f6a;
            font-size: 24px;
            font-weight: 700;
        }

        .cp-contact-form__subtitle {
            color: #595f6a;
            font-size: 15px;
        }

        .cp-contact-form__label {
            color: #595f6a;
            font-size: 15px;
            font-weight: 600;
        }

        .cp-contact-form__input {
            font-size: 15px;
            color: #595f6a;
            border: 2px solid #e2e8f0;
        }

        .cp-contact-form__input:focus {
            border-color: #7256E9;
            box-shadow: 0 0 0 3px rgba(114, 86, 233, 0.1);
        }

        .custom-submit-btn {
            background: #7256E9;
            color: white;
            font-size: 15px;
            font-weight: 600;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .custom-submit-btn:hover {
            background: #5d46c7;
        }

        /* Call popup styling */
        .cp-call-popup__title {
            color: #595f6a;
            font-size: 24px;
            font-weight: 700;
        }

        .cp-call-popup__subtitle {
            color: #595f6a;
            font-size: 15px;
        }

        .cp-call-popup__phone-label {
            color: #595f6a;
            font-size: 15px;
            font-weight: 600;
        }

        .cp-call-popup__phone-number {
            color: #595f6a;
            font-size: 18px;
            font-weight: 600;
        }

        .cp-call-popup__button {
            background: #7256E9;
            color: white;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            padding: 14px 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .cp-call-popup__button:hover {
            background: #5d46c7;
        }

        /* UPDATED: Top companies slider button styling */
        .cp-btn--primary {
            background: #7256E9 !important;
            color: white !important;
            border: none !important;
        }

        .cp-btn--primary:hover {
            background: #5d46c7 !important;
        }

        .cp-company-card__btn {
            background: #7256E9 !important;
            color: white !important;
        }

        .cp-company-card__btn:hover {
            background: #5d46c7 !important;
        }

        .cp-award-ribbon {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 15;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #333;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
            max-width: 120px;
        }

        .cp-award-ribbon__image {
            width: 16px;
            height: 16px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .cp-award-ribbon__text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 11px;
        }

        .cp-award-ribbon:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        /* Ensure award ribbon doesn't conflict with sponsored ribbon */
        .cp-company-item:has(.cp-sponsored-ribbon) .cp-award-ribbon {
            top: 50px; /* Move award ribbon below sponsored ribbon */
        }

        /* FIXED: Review Card Styles - Like the older version */
        .cp-review-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1rem;
            margin-top: 1rem;
        }

        .cp-review-card__header {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .cp-review-card__user {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cp-review-card__avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #7256E9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .cp-review-card__user-info {
            display: flex;
            flex-direction: column;
        }

        .cp-review-card__user-name {
            font-weight: 600;
            color: #1e293b;
            font-size: 14px;
        }

        .cp-review-card__date {
            font-size: 12px;
            color: #64748b;
        }

        .cp-review-card__content {
            margin-top: 0.5rem;
        }

        .cp-review-card__text {
            color: #475569;
            line-height: 1.5;
            font-size: 14px;
            margin: 0;
        }

        .cp-review-card__link {
            color: #7256E9;
            text-decoration: none;
            font-weight: 500;
            margin-left: 0.25rem;
        }

        .cp-review-card__link:hover {
            text-decoration: underline;
        }

        .cp-review-card__empty {
            text-align: center;
            color: #64748b;
            font-style: italic;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 12px;
            margin-top: 1rem;
        }

        /* Modern Professional Pagination Styles */
        .pagination-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2rem 0;
            background-color: #F7F9FF;
        }

        .results-info { 
            display: flex; 
            justify-content: center; 
            align-items: center; 
        }

        .results-text {
            font-size: 15px;
            color: #595f6a;
            font-weight: 500;
            text-align: center;
        }

        .results-text strong { 
            color: #595f6a; 
            font-weight: 600; 
        }

        .pagination-nav { 
            display: flex; 
            justify-content: center; 
            width: 100%; 
        }

        .pagination-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: none;
        }

        .pagination-pages { 
            display: flex; 
            align-items: center; 
            gap: 0.25rem; 
            margin: 0 0.5rem; 
        }

        .pagination-page {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 2.5rem;
            height: 2.5rem;
            padding: 0 0.75rem;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            color: #595f6a;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 8px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .pagination-page:hover {
            background: rgba(114, 86, 233, 0.08);
            color: #7256E9;
            border-color: rgba(114, 86, 233, 0.2);
        }

        .pagination-page-active {
            background: #7256E9;
            color: #ffffff;
            font-weight: 600;
            border-color: #7256E9;
        }

        .pagination-page-active:hover {
            background: #5d46c7;
            border-color: #5d46c7;
        }

        .pagination-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            min-width: fit-content;
        }

        .pagination-btn-nav { 
            color: #595f6a; 
        }

        .pagination-btn-nav:hover {
            background: #F7F9FF;
            border-color: #cbd5e1;
            color: #595f6a;
        }

        .pagination-btn-disabled {
            color: #94a3b8;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .pagination-btn-disabled:hover {
            background: #ffffff;
            border-color: #e2e8f0;
        }

        .pagination-icon { 
            width: 1rem; 
            height: 1rem; 
            flex-shrink: 0; 
        }

        .pagination-btn-text { 
            white-space: nowrap; 
        }

        .pagination-ellipsis {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 2.5rem;
            height: 2.5rem;
            color: #94a3b8;
            font-weight: 500;
            font-size: 15px;
        }

        /* Mobile-specific pagination */
        .pagination-mobile { 
            display: none; 
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .pagination-container { 
                display: none; 
            }
            
            .pagination-mobile {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                padding: 1rem;
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 12px;
                width: 90%;
            }

            .pagination-mobile-info {
                font-size: 15px;
                color: #595f6a;
                font-weight: 500;
            }

            .pagination-mobile-controls {
                display: flex;
                gap: 1rem;
                align-items: center;
            }

            .pagination-mobile-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 2.75rem;
                height: 2.75rem;
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 8px;
                color: #595f6a;
                text-decoration: none;
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                cursor: pointer;
            }

            .pagination-mobile-btn:hover {
                background: rgba(114, 86, 233, 0.08);
                border-color: rgba(114, 86, 233, 0.2);
                color: #7256E9;
            }

            .pagination-mobile-btn-disabled {
                color: #94a3b8;
                cursor: not-allowed;
                opacity: 0.6;
            }

            .pagination-mobile-btn-disabled:hover {
                background: #ffffff;
                border-color: #e2e8f0;
                color: #94a3b8;
            }

            .pagination-mobile-icon { 
                width: 1.25rem; 
                height: 1.25rem; 
            }

            .results-info { 
                order: 2; 
            }
            
            .pagination-nav { 
                order: 1; 
            }
        }

        @media (max-width: 640px) {
            .pagination-wrapper { 
                margin: 1.5rem 0; 
                gap: 1rem; 
            }
            
            .results-text { 
                font-size: 15px; 
            }
            
            .pagination-mobile { 
                padding: 0.75rem; 
            }
            
            .pagination-mobile-info { 
                font-size: 15px; 
            }
        }

        @media (max-width: 480px) {
            .pagination-btn-text { 
                display: none; 
            }
            
            .pagination-btn { 
                padding: 0.625rem; 
                min-width: 2.5rem; 
                justify-content: center; 
            }
            
            .pagination-page { 
                min-width: 2.25rem; 
                height: 2.25rem; 
                padding: 0 0.5rem; 
                font-size: 15px; 
            }
            
            .pagination-ellipsis { 
                min-width: 2.25rem; 
                height: 2.25rem; 
                font-size: 15px; 
            }
        }
        @media (max-width: 767px) {
  .cp-card-company-info {
    margin-left: 20px;
}
}

    /* Lock indicator styles */
    .cp-lock-indicator {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 10;
    }

    .cp-lock-badge {
    background: linear-gradient(135deg, #e0f7bc, #e0f7bc);
    color: #479d1d;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #5adf2e;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    top: 20;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .cp-lock-badge i {
        font-size: 0.7rem;
    }

    /* Ensure company cards have relative positioning for absolute positioned elements */
    .cp-company-item {
        position: relative;
    }

    /* Additional Content Styles */
    .additional-content-section .content-wrapper {
        font-size: 1rem;
        line-height: 1.7;
        color: #374151;
    }

    .additional-content-section .content-wrapper h1,
    .additional-content-section .content-wrapper h2,
    .additional-content-section .content-wrapper h3,
    .additional-content-section .content-wrapper h4,
    .additional-content-section .content-wrapper h5,
    .additional-content-section .content-wrapper h6 {
        color: #1f2937;
        font-weight: 700;
        margin: 1.5rem 0 1rem 0;
    }

    .additional-content-section .content-wrapper h1 { font-size: 2rem; }
    .additional-content-section .content-wrapper h2 { font-size: 1.75rem; }
    .additional-content-section .content-wrapper h3 { font-size: 1.5rem; }
    .additional-content-section .content-wrapper h4 { font-size: 1.25rem; }
    .additional-content-section .content-wrapper h5 { font-size: 1.125rem; }
    .additional-content-section .content-wrapper h6 { font-size: 1rem; }

    .additional-content-section .content-wrapper p {
        margin-bottom: 1rem;
    }

    .additional-content-section .content-wrapper ul,
    .additional-content-section .content-wrapper ol {
        margin: 1rem 0;
        padding-left: 2rem;
    }

    .additional-content-section .content-wrapper li {
        margin-bottom: 0.5rem;
    }

   /* FAQ Container */
.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Open Sans', sans-serif;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

/* Clickable FAQ Question */
.faq-question-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #f9fafb;
    color: #111827;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-question-btn:hover {
    background-color: #f3f4f6;
}

/* Icon Rotation (Optional if you're using + / - or chevron) */
.faq-question-btn .icon {
    transition: transform 0.3s ease;
}

.faq-question-btn.active .icon {
    transform: rotate(180deg);
}

/* Answer Section */
.faq-answer {
    display: none;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer.show {
    display: block;
}

/* FAQ Content Elements */
.faq-answer-content h1,
.faq-answer-content h2,
.faq-answer-content h3,
.faq-answer-content h4,
.faq-answer-content h5,
.faq-answer-content h6 {
    color: #374151;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.faq-answer-content a:hover {
    color: #1d4ed8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-question-btn {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}
/* Scoped to this widget to avoid theme overrides */
        .kpi-widget { width: 100%; }
        .kpi-widget .kpi-grid{
            display: grid !important;
            grid-template-columns: 1fr !important;            /* mobile: 1 per row */
            gap: 14px !important;
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }
        @media (min-width: 576px){                           /* sm and up: 2 per row */
            .kpi-widget .kpi-grid{
                grid-template-columns: repeat(2, minmax(0,1fr)) !important;
            }
        }

        .kpi-widget .kpi-item{
            display: flex !important;
            flex-direction: column !important;
            gap: 6px !important;
            box-sizing: border-box !important;
        }
        .kpi-widget .kpi-label{
            font-weight: 600 !important;
            font-size: 14px !important;
            line-height: 1.3 !important;
            color: #111827 !important; /* neutral title */
        }
        .kpi-widget .kpi-bar{
            position: relative !important;
            height: 12px !important;
            border-radius: 999px !important;
            overflow: hidden !important;
            background: #E9E6FB !important; /* light tint of primary */
        }
        .kpi-widget .kpi-fill{
            position: absolute !important;
            inset: 0 auto 0 0 !important;
            height: 100% !important;
            border-radius: 999px !important;
            background: #9d85ff !important;
            width: var(--fill, 0%) !important;
        }
        /* Two stacked texts: black (baseline) + white clipped to fill */
        .kpi-widget .kpi-text,
        .kpi-widget .kpi-text--white{
            position: absolute !important;
            inset: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            pointer-events: none !important;
            white-space: nowrap !important;
        }
        .kpi-widget .kpi-text{
            color: #111111 !important;
            text-shadow: 0 1px 1px rgba(255,255,255,.45) !important;
        }
        .kpi-widget .kpi-text--white{
            color: #ffffff !important;
            text-shadow: 0 1px 2px rgba(0,0,0,.25) !important;
            clip-path: inset(0 calc(100% - var(--fill, 0%)) 0 0) !important; /* only inside fill */
        }
        .kpi-value-label{
                font-size: 15px;
                color: #272626;
        }
/* --- List styles for .additional-content-section .content-wrapper --- */
/* Easy-to-edit variables */
.additional-content-section .content-wrapper {
  --list-color: #374151;        /* text color for list items */
  --list-accent: #0ea5a4;       /* color for bullets / numbers */
  --list-font-size: 15px;       /* base font-size for list */
  --list-line-height: 1.7;      /* line-height for readability */
  --list-spacing: 0.6rem;       /* vertical space between list items */
  --list-indent: 1.75rem;       /* left padding for list block */
}

/* Base rules for both UL and OL */
.additional-content-section .content-wrapper ul,
.additional-content-section .content-wrapper ol {
  margin: 0 0 1.15rem 0;
  padding-left: var(--list-indent);
  color: var(--list-color);
  font-size: var(--list-font-size);
  line-height: var(--list-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Common list-item spacing */
.additional-content-section .content-wrapper li {
  margin: calc(var(--list-spacing) / 2) 0;
  position: relative; /* for pseudo-elements */
  /* improves hit area for links inside lists */
  word-break: break-word;
}

/* ---------- Unordered list: custom colored bullet using ::marker ---------- */
.additional-content-section .content-wrapper ul {
  list-style: disc;
  /* keep native bullet as fallback; override styling with ::marker */
}

.additional-content-section .content-wrapper ul li::marker {
  color: var(--list-accent);
  font-size: 1.05em;
  opacity: 0.95;
}

/* prettier small nested bullets */
.additional-content-section .content-wrapper ul ul,
.additional-content-section .content-wrapper ul ol {
  padding-left: 1.15rem;
}
.additional-content-section .content-wrapper ul ul li::marker {
  font-size: 0.95em;
  opacity: 0.9;
}

/* ---------- Ordered list: custom styled numeric badges ---------- */
/* Remove default markers so we can style numbers precisely */
.additional-content-section .content-wrapper ol {
  list-style: none;
  counter-reset: ac-list; /* reset counter for each ol */
  padding-left: calc(var(--list-indent) + 0.75rem);
}

/* increment counter and show as left-aligned number badge */
.additional-content-section .content-wrapper ol li {
  counter-increment: ac-list;
  padding-left: 0.6rem; /* space to separate number and text */
}

/* Numeric badge before each item */
.additional-content-section .content-wrapper ol li::before {
  content: counter(ac-list) ".";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0.05rem);
  width: calc(var(--list-indent) - 0.4rem);
  text-align: right;
  font-weight: 600;
  color: var(--list-accent);
  font-size: 0.95em;
  line-height: var(--list-line-height);
  /* optional: make the numbers look like small badges (uncomment bg & padding) */
  /* background: rgba(14,165,164,0.08);
     padding: 0.06rem 0.3rem;
     border-radius: 6px; */
}

/* Nested ordered lists keep correct counting and indentation */
.additional-content-section .content-wrapper ol ol,
.additional-content-section .content-wrapper ol ul {
  padding-left: 1.1rem;
}
.additional-content-section .content-wrapper ol ol li::before {
  width: calc(var(--list-indent) - 0.6rem);
  font-size: 0.92em;
}

/* ---------- Link / focus accessibility inside lists ---------- */
.additional-content-section .content-wrapper li a {
  color: inherit;
  text-decoration: underline;
}
.additional-content-section .content-wrapper li:focus-within {
  outline: 2px solid rgba(14,165,164,0.12);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ---------- Small screens: reduce left padding so content fits ---------- */
@media (max-width: 640px) {
  .additional-content-section .content-wrapper {
    --list-indent: 1.25rem;
    --list-font-size: 14px;
  }
  .additional-content-section .content-wrapper ol li::before {
    width: calc(var(--list-indent) - 0.35rem);
    font-size: 0.92em;
  }
}

/* ---------- Optional: compact variant (use .compact-list on wrapper) ---------- */
.additional-content-section .content-wrapper.compact-list ul,
.additional-content-section .content-wrapper.compact-list ol {
  --list-spacing: 0.35rem;
  --list-font-size: 14px;
}
