﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .process-content,
        .testimonial-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .advisor-quote {
            position: static;
            margin-top: 20px;
            right: auto;
            bottom: auto;
        }

        .process-left h2 {
            font-size: 1.8rem;
        }

        .trust-section h2 {
            font-size: 1.8rem;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
        }

        /* Header Styles */
        .header {
            background-color: rgb(26 23 44 / var(--tw-bg-opacity, 1)) !important;
            color: white;
            padding: 10px 0;
        }

        .header-link {
            color: white;
            text-decoration: none;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            font-size: 20px;
            font-weight: 600;
        }

        .logo::after {
            content: "®";
            font-size: 12px;
            vertical-align: super;
            color: #ff6b35;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-item {
            color: white;
            text-decoration: none;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-item::after {
            content: "▼";
            font-size: 10px;
            opacity: 0.7;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-container {
            position: relative;
        }

        .search-input {
            padding: 10px 40px 10px 15px;
            border: none;
            border-radius: 25px;
            width: 280px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.9);
            outline: none;
        }

        .search-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 16px;
            color: #666;
        }

        .get-advice-btn {
            background: #8b7bd8;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .get-advice-btn:hover {
            background: #7a6bc7;
        }

        .nav-dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 38px;
            left: 0;
            background-color: #fff;
            color: #000;
            width: 1000px;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 20px;
            z-index: 999;
        }

        .nav-dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-content {
            display: flex;
            gap: 30px;
        }

        .dropdown-column {
            flex: 1;
        }

        .dropdown-column h3 {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .dropdown-column ul {
            list-style: none;
            padding-left: 0;
        }

        .dropdown-column li {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .dropdown-viewall {
            font-weight: bold;
            color: #7a6bc7;
            text-decoration: none;
        }

        .dropdown-cta {
            flex: 0 0 220px;
            padding-left: 20px;
            border-left: 1px solid #ccc;
        }

        .dropdown-cta p {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .dropdown-cta-link {
            color: #7a6bc7;
            font-size: 13px;
            text-decoration: underline;
            display: block;
            margin-bottom: 8px;
        }

        .advisor-name {
            font-weight: bold;
            font-size: 14px;
        }

        .advisor-name span {
            font-weight: normal;
            font-size: 12px;
        }

        .advisor-img {
            width: 100px;
            margin-top: 10px;
            border-radius: 8px;
        }

        .small-dropdown {
            width: 200px;
            padding: 10px 0;
        }

        .company-dropdown-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .company-dropdown-list li {
            padding: 8px 20px;
        }

        .company-dropdown-list li a {
            text-decoration: none;
            color: #000;
            font-size: 14px;
            display: block;
            transition: background 0.2s ease;
        }

        .company-dropdown-list li a:hover {
            background: #f0f0f0;
        }

        /* Hero Section */
        .hero {
            background-color: hsl(248 32% 23% / var(--tw-bg-opacity, 1)) !important;
            color: white;
            padding: 80px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-left {
            flex: 1;
            max-width: 500px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .hero-btn {
            background: #8b7bd8;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .hero-btn:hover {
            background: #7a6bc7;
        }

        .hero-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .advisor-cards {
            display: flex;
            gap: 20px;
            transform: rotate(-5deg);
        }

        .advisor-card {
            width: 200px;
            height: 140px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: rotate(5deg);
        }

        .advisor-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .advisor-card-1 {
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
        }

        .advisor-card-2 {
            border: 3px solid #ff6b35;
        }

        /* Stats Section */
        .stats {
            /* background: #bb3760; */
            padding: 80px 0;
            --tw-bg-opacity: 1 !important;
            background-color: hsl(248 32% 93% / var(--tw-bg-opacity, 1)) !important;
        }

        .stats-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .stats-text {
            font-size: 1.2rem;
            color: #5a5a5a;
            line-height: 1.6;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8b7bd8;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: #666;
        }

        /* Top banner */
        .top-banner {
            background: rgb(107 97 173 / var(--tw-bg-opacity, 1)) !important;
            color: white;
            padding: 10px 0;
            text-align: center;
            font-size: 18px;
        }

        .top-banner a {
            color: white;
            text-decoration: none;
        }

        .top-banner::after {
            content: "→";
            margin-left: 10px;
        }

        /* Process Section */
        .process {
            background: white;
            padding: 80px 0;
        }

        .process-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .process-left h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
            line-height: 1.3;
        }

        .process-left h2 sup {
            color: #8b7bd8;
            font-size: 1.2rem;
        }

        .process-steps {
            list-style: none;
            margin-bottom: 40px;
        }

        .process-step {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .step-number {
            background: #8b7bd8;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .step-text {
            color: #5a5a5a;
            font-size: 1rem;
            line-height: 1.5;
        }

        .process-btn {
            background: #8b7bd8;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .process-btn:hover {
            background: #7a6bc7;
        }

        .advisor-showcase {
            position: relative;
        }

        .advisor-main-image {
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .advisor-main-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .advisor-quote {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            max-width: 280px;
            font-size: 14px;
        }

        .quote-text {
            color: #333;
            font-style: italic;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .quote-author {
            font-size: 12px;
            color: #666;
            text-align: center;
        }

        /* Testimonial Section */
        .testimonial {
            background: #f8f9fc;
            padding: 80px 0;
        }

        .testimonial-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: -10px;
            left: 30px;
            font-size: 40px;
            color: #e9ecef;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #5a5a5a;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            /* width: 50px; */
            height: 50px;
            border-radius: 50%;
            background: #e9ecef;
        }

        .author-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 14px;
            color: #666;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
        }

        .nav-arrow {
            background: none;
            border: none;
            font-size: 18px;
            color: #ccc;
            cursor: pointer;
            padding: 5px;
        }

        .nav-arrow:hover {
            color: #8b7bd8;
        }

        .nav-dots {
            display: flex;
            gap: 8px;
        }

        .nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .nav-dot.active {
            background: #8b7bd8;
        }

        .trust-section {
            text-align: center;
        }

        .trust-section h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
        }

        .trustpilot {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            display: inline-flex;
        }

        .trustpilot-rating {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .stars {
            color: #00b67a;
            font-size: 20px;
        }

        .trustpilot-logo {
            font-weight: 700;
            color: #00b67a;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .stats-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .nav {
                display: none;
            }

            .search-input {
                width: 200px;
            }
        }

        /* review section css */
        .reviews-section-content {
            background-color: hsl(248 32% 23% / var(--tw-bg-opacity, 1)) !important;
            color: white;
            padding: 80px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .reviews-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-heading {
            text-align: center;
            font-size: 30px;
            margin-bottom: 24px;
        }

        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tab {
            color: #ccc;
            text-decoration: none;
            font-size: 16px;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }

        .tab.active {
            color: #fff;
            font-weight: bold;
            border-color: #e15050;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .review-card {
            background-color: #fff;
            color: #333;
            border-radius: 8px;
            padding: 20px;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .software-title {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .review-text {
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .review-rating {
            font-size: 14px;
            color: #f39c12;
            margin-bottom: 10px;
        }

        .reviewer-info {
            font-size: 12px;
            margin-bottom: 10px;
        }

        .reviewer-name {
            font-weight: bold;
        }

        .learn-more {
            /* color: #007bff; */
            /* text-decoration: none; */
            font-size: 13px;
            /* margin-top: auto; */
        }

        /* 📧 Email Signup Section */
        .email-signup-container {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            margin-top: 40px;
        }

        .email-signup-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            max-width: 800px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
        }

        .email-signup-heading {
            font-size: 30px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .email-signup-description {
            font-size: 18px;
            margin-bottom: 20px;
            color: #555;
        }

        .email-label {
            display: block;
            font-size: 18px;
            margin-bottom: 6px;
        }

        .email-input-field {
            width: 100%;
            padding: 10px;
            border: 1px solid #bbb;
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .email-terms-text {
            font-size: 12px;
            color: #777;
            margin-bottom: 15px;
        }

        .email-terms-text a {
            color: #6a5acd;
            text-decoration: none;
        }

        .email-submit-btn {
            background-color: #6a5acd;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .email-submit-btn:hover {
            background-color: #5947b1;
        }

        /* 📊 Insights Section */
        .insights-section {
            max-width: 1000px;
            margin: 0 auto;
        }

        .insights-header {
            text-align: left;
            margin-bottom: 40px;
        }

        .insights-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .insights-subtitle {
            font-size: 16px;
            color: #555;
        }

        .insights-cards-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        /* 🎯 Insight Cards */
        .insight-card {
            border-radius: 12px;
            padding: 20px;
            color: #111;
            position: relative;
        }

        .insight-card-purple {
            background-color: #f0ebfa;
        }

        .insight-card-orange {
            background-color: #fdf1e7;
        }

        .insight-card-blue {
            background-color: #e7e6f9;
        }

        .insight-percentage {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #111;
        }

        .insight-description {
            font-size: 18px;
            margin-bottom: 15px;
            color: #222;
        }

        .insight-author {
            font-size: 16px;
            color: #333;
        }

        .insight-author span {
            color: #666;
            font-size: 12px;
        }

        /* 🎖️ Featured Logos */
        .featured-logos-section {
            text-align: center;
            margin-top: 40px;
            margin-bottom: 30px;
        }

        .featured-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .featured-logos-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .featured-logo {
            font-size: 20px;
            color: #111;
            font-weight: bold;
        }

        /* 📁 Software Categories */
        .software-category-section {
            text-align: center;
            padding: 30px 20px;
        }

        .category-heading {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .category-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .category-column {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .category-button {
            background-color: #f3f3f3;
            border: none;
            border-radius: 8px;
            padding: 12px 16px;
            text-align: left;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s ease-in-out;
        }

        .category-button:hover {
            background-color: #e6e6e6;
        }

        .category-button.active {
            background-color: #e0e0e0;
            font-weight: 600;
        }

        .plus-symbol {
            font-size: 18px;
            font-weight: bold;
        }

        /* 🚀 CTA Section */
        .provider-cta-section {
            text-align: center;
            padding: 60px 20px 30px;
            margin-bottom: 40px;
        }

        .provider-cta-heading {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .provider-cta-button {
            background-color: #6a5acd;
            color: white;
            padding: 12px 24px;
            font-size: 16px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .provider-cta-button:hover {
            background-color: #5947b1;
        }

        /* 🧾 Footer Section */
        .footer-main-container {
            background-color: #1a162e;
            color: #f5f5f5;
            padding: 40px 20px;
        }

        .footer-content-box {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-left-content {
            max-width: 800px;
        }

        .footer-brand-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
        }

        .footer-logo-dot {
            font-size: 16px;
            margin-left: 4px;
            vertical-align: middle;
        }

        .footer-link-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 10px 0;
        }

        .footer-link {
            color: #f5f5f5;
            font-size: 13px;
            text-decoration: underline;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: #bbbbff;
        }

        .footer-social-icons {
            display: flex;
            align-items: start;
            gap: 12px;
        }

        .footer-icon-img {
            width: 22px;
            height: 22px;
            filter: brightness(0) invert(1);
            transition: opacity 0.3s;
        }

        .footer-icon-img:hover {
            opacity: 0.8;
        }

        .footer-copyright {
            font-size: 13px;
            margin: 15px 0 5px;
        }

        .mega-category-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            grid-template-columns: repeat(7, 1fr);
            flex-direction: column;
            flex-wrap: wrap;
            max-height: 315px;
        }

        .construction-page-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .construction-page-header {
            background-color: #2c3e50;
            color: white;
            padding: 12px 0;
        }

        .construction-header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .construction-breadcrumb {
            font-size: 14px;
            color: #bdc3c7;
        }

        .construction-breadcrumb-link {
            color: #bdc3c7;
            text-decoration: none;
        }

        .construction-trustpilot {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .construction-trustpilot-stars {
            color: #00b67a;
            font-size: 16px;
        }

        .construction-main-container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 40px 20px; */
            display: grid;
            /* grid-template-columns: 1fr 3fr 1fr; */
            gap: 40px;
        }

        .construction-sidebar {
            background: white;
            border-radius: 8px;
            padding: 30px;
            height: fit-content;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .construction-sidebar-title {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .construction-sidebar-nav {
            list-style: none;
        }

        .construction-sidebar-nav-item {
            margin-bottom: 15px;
        }

        .construction-sidebar-nav-link {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .construction-sidebar-nav-link:hover,
        .construction-sidebar-nav-link-active {
            color: #8e44ad;
            font-weight: 500;
        }

        .construction-main-content {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .construction-update-date {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .construction-main-title {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.2;
        }

        .construction-author-info {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .construction-author {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .construction-author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(45deg, #8e44ad, #3498db);
        }

        .construction-author-text {
            color: #7f8c8d;
        }

        .construction-author-name {
            color: #8e44ad;
            font-weight: 500;
        }

        .construction-author-title {
            font-size: 12px;
        }

        .construction-intro-text {
            color: #555;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .construction-section-title {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .construction-table-wrapper {
            overflow-x: auto;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .construction-software-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
        }

        .construction-table-header {
            background-color: #ecf0f1;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            color: #2c3e50;
            border-bottom: 2px solid #bdc3c7;
        }

        .construction-table-cell {
            padding: 25px 20px;
            border-bottom: 1px solid #ecf0f1;
            vertical-align: middle;
        }

        .construction-software-row:hover {
            background-color: #f8f9fa;
        }

        .construction-software-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .construction-software-logo {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .construction-stack-logo {
            background: linear-gradient(135deg, #00d4aa, #00b894);
        }

        .construction-joist-logo {
            background: linear-gradient(135deg, #a4e663, #7dd87d);
        }

        .construction-software-details h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .construction-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #7f8c8d;
        }

        .construction-rating-stars {
            color: #f39c12;
        }

        .construction-award {
            background: linear-gradient(135deg, #8e44ad, #9b59b6);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
        }

        .construction-award-affordable {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
        }

        .construction-learn-btn {
            background: white;
            border: 2px solid #8e44ad;
            color: #8e44ad;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
        }

        .construction-learn-btn:hover {
            background: #8e44ad;
            color: white;
        }

        .construction-advice-panel {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            border-left: 4px solid #8e44ad;
        }

        .construction-advice-title {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .construction-advice-text {
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .construction-table-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .construction-table-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .construction-table-wrapper::-webkit-scrollbar-thumb {
            background: #8e44ad;
            border-radius: 4px;
        }

        .construction-table-wrapper::-webkit-scrollbar-thumb:hover {
            background: #732d91;
        }

        .construction-software-details-section {
            margin-top: 40px;
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .construction-software-details-section::-webkit-scrollbar {
            width: 8px;
        }

        .construction-software-details-section::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .construction-software-details-section::-webkit-scrollbar-thumb {
            background: #8e44ad;
            border-radius: 4px;
        }

        .construction-software-details-section::-webkit-scrollbar-thumb:hover {
            background: #732d91;
        }

        .construction-software-detail-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #e9ecef;
        }

        .construction-software-detail-header {
            margin-bottom: 25px;
        }

        .construction-affordable-title {
            color: #27ae60;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .construction-overall-title {
            color: #8e44ad;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .construction-software-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .construction-software-card-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .construction-software-card-details h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 20px;
        }

        .construction-card-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .construction-compare-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #7f8c8d;
            cursor: pointer;
            border: 1px solid #8e44ad;
            padding: 8px 12px;
            border-radius: 20px;
            background: white;
            transition: all 0.3s;
        }

        .construction-compare-checkbox:hover {
            background: #f8f9fa;
        }

        .construction-compare-checkbox input[type="checkbox"] {
            margin: 0;
            accent-color: #8e44ad;
        }

        .construction-software-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 25px;
        }

        .construction-software-screenshot {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .construction-screenshot-img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .construction-software-pros-cons {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .construction-pros-section,
        .construction-cons-section,
        .construction-pricing-section {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .construction-pros-title,
        .construction-cons-title,
        .construction-pricing-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .construction-pros-title {
            color: #27ae60;
        }

        .construction-cons-title {
            color: #e74c3c;
        }

        .construction-pricing-title {
            color: #2c3e50;
        }

        .construction-pros-list,
        .construction-cons-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .construction-pros-item,
        .construction-cons-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .construction-pros-icon {
            color: #27ae60;
            font-weight: bold;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #d5f4e6;
            border-radius: 50%;
            font-size: 12px;
        }

        .construction-cons-icon {
            color: #e74c3c;
            font-weight: bold;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fadbd8;
            border-radius: 50%;
            font-size: 12px;
        }

        .construction-pricing-text {
            color: #2c3e50;
            font-weight: 500;
            margin: 0;
            font-size: 14px;
        }

        .construction-software-description {
            margin-bottom: 25px;
        }

        .construction-description-item {
            margin-bottom: 20px;
        }

        .construction-description-title {
            color: #2c3e50;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .construction-description-text {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .construction-expandable-sections {
            border-top: 1px solid #e9ecef;
            padding-top: 20px;
        }

        .construction-expandable-item {
            border-bottom: 1px solid #e9ecef;
        }

        .construction-expandable-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 500;
            color: #8e44ad;
            cursor: pointer;
            transition: color 0.3s;
        }

        .construction-expandable-header:hover {
            color: #732d91;
        }

        .construction-expandable-icon {
            transition: transform 0.3s;
        }

        .construction-expandable-content {
            display: none;
            padding-bottom: 15px;
            color: #555;
            font-size: 14px;
            line-height: 1.6;
        }

        .construction-expandable-content ul {
            margin: 0;
            padding-left: 20px;
        }

        .construction-expandable-content li {
            margin-bottom: 5px;
        }

        .construction-learn-more-link {
            color: #8e44ad;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .construction-main-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .construction-main-title {
                font-size: 32px;
            }

            .construction-author-info {
                flex-direction: column;
                gap: 15px;
            }

            .construction-table-wrapper {
                margin: 10px -20px;
                padding: 0 20px;
            }

            .construction-software-table {
                font-size: 14px;
                min-width: 500px;
            }

            .construction-table-header,
            .construction-table-cell {
                padding: 15px 10px;
            }

            .construction-software-details-section {
                max-height: 500px;
                margin: 10px -20px;
                padding: 0 20px 0 10px;
            }

            .construction-software-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .construction-software-card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .construction-card-actions {
                width: 100%;
                justify-content: space-between;
            }
        }

        .construction-procore-logo {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }

        .construction-houzz-logo {
            background: linear-gradient(135deg, #7ac142, #4caf50);
        }

        .construction-award-functionality {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        .construction-award-quotes {
            background: linear-gradient(135deg, #e67e22, #d35400);
        }

        .construction-more-software {
            text-align: center;
            margin: 30px 0 40px 0;
        }

        .construction-more-software-link {
            color: #8e44ad;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .construction-more-software-link:hover {
            color: #732d91;
            text-decoration: underline;
        }

        .construction-selection-methodology {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid #e9ecef;
        }

        .construction-methodology-title {
            color: #2c3e50;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: left;
        }

        .construction-methodology-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            gap: 20px;
        }

        .construction-stat-item {
            flex: 1;
            text-align: left;
        }

        .construction-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .construction-stat-label {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .construction-stat-main {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
        }

        .construction-stat-sub {
            font-size: 14px;
            color: #7f8c8d;
        }

        .construction-methodology-description {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .construction-methodology-link {
            color: #8e44ad;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }

        .construction-methodology-link:hover {
            color: #732d91;
            text-decoration: underline;
        }

        .construction-best-overall-title {
            margin-top: 40px;
            margin-bottom: 20px;
        }

        /* Additional mobile styles */
        @media (max-width: 768px) {
            .construction-methodology-stats {
                flex-direction: column;
                gap: 25px;
            }

            .construction-stat-number {
                font-size: 28px;
            }

            .construction-selection-methodology {
                padding: 25px;
                margin: 25px -20px;
            }
        }

        .advisor-about-section {
            padding: 40px 20px;
        }

        .advisor-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .advisor-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 40px;
        }

        .advisor-image-wrapper {
            flex: 1 1 40%;
            position: relative;
        }

        .advisor-team-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        }

        .advisor-info-text {
            flex: 1 1 55%;
        }

        .advisor-title {
            font-size: 28px;
            margin-bottom: 20px;
            color: #222;
        }

        .advisor-description {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
            margin-bottom: 12px;
        }

        .advisor-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 40px;
            text-align: center;
        }

        .advisor-stat-item {
            flex: 1;
        }

        .advisor-stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #4d3ca6;
            margin-bottom: 8px;
        }

        .advisor-stat-text {
            font-size: 14px;
            color: #555;
        }

        .advisor-recommendation {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            padding: 60px 20px;
            background-color: #fff;
            border-top-left-radius: 24px;
            border-top-right-radius: 24px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
        }

        .advisor-profile-card {
            background-color: #f2f0fa;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            width: 300px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }

        .advisor-profile-title {
            font-size: 18px;
            margin-bottom: 16px;
        }

        .advisor-profile-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 16px;
        }

        .advisor-profile-desc {
            font-size: 14px;
            color: #333;
            margin-bottom: 16px;
        }

        .advisor-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .advisor-carousel-dots .dot {
            width: 10px;
            height: 10px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
        }

        .advisor-carousel-dots .dot.active {
            background-color: #4d3ca6;
        }

        .advisor-benefits {
            max-width: 400px;
        }

        .advisor-benefits h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: #222;
        }

        .advisor-benefits ul {
            list-style-type: disc;
            padding-left: 20px;
            color: #444;
        }

        .advisor-benefits li {
            margin-bottom: 8px;
        }

        /* Advisor Connect Section */
        .advisor-connect-section {
            background-color: #fff;
            padding: 60px 20px;
        }

        .advisor-connect-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
        }

        .advisor-connect-text {
            flex: 1 1 50%;
        }

        .connect-heading {
            font-size: 24px;
            margin-bottom: 20px;
            color: #111;
        }

        .connect-steps {
            list-style: decimal;
            padding-left: 20px;
            color: #444;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .connect-steps li {
            margin-bottom: 16px;
        }

        .connect-button {
            padding: 12px 24px;
            background-color: #6c4ccf;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
        }

        .advisor-connect-image {
            flex: 1 1 40%;
        }

        .advisor-connect-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 12px;
        }

        /* Team Section */
        .advisor-team-section {
            padding: 60px 20px;
            background-color: #fafafa;
            text-align: center;
        }

        .team-heading {
            font-size: 24px;
            margin-bottom: 40px;
            color: #111;
        }

        .team-cards-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            max-width: 320px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: left;
        }

        .team-card-img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .team-card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .team-card-desc {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }

        /* Testimonials Section */
        .advisor-testimonials-section {
            padding: 60px 20px;
            text-align: center;
            background-color: #fff;
        }

        .testimonials-heading {
            font-size: 22px;
            margin-bottom: 30px;
            color: #111;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trustpilot-score {
            margin-bottom: 24px;
        }

        .trustpilot-score img {
            height: 40px;
            margin-bottom: 8px;
        }

        .review-snippets {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .review-box {
            background-color: #f5f5f5;
            padding: 16px 20px;
            border-radius: 10px;
            max-width: 300px;
            text-align: left;
            font-size: 14px;
            color: #333;
        }

        .lead-gen-section {
            padding: 60px 20px;
            background-color: #f9f8fd;
            font-family: 'Segoe UI', sans-serif;
        }

        .lead-gen-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .lead-form-box {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
        }

        .lead-form-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            text-align: center;
            color: #222;
        }

        .lead-form-subtext {
            text-align: center;
            font-size: 13px;
            color: #777;
            margin-bottom: 20px;
        }

        .lead-gen-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .lead-form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .lead-form-row input,
        .lead-form-row select {
            flex: 1;
            padding: 10px 14px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        .lead-form-options {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .lead-form-options label {
            font-weight: 500;
            color: #333;
        }

        .lead-form-privacy {
            font-size: 12px;
            color: #777;
            margin-top: -8px;
        }

        .lead-submit-button {
            margin-top: 12px;
            padding: 12px;
            background-color: #503d93;
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        /* Buyer Connection Steps */
        .lead-connect-steps {
            text-align: center;
        }

        .lead-steps-title {
            font-size: 20px;
            margin-bottom: 30px;
            color: #222;
        }

        .lead-steps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .lead-step {
            max-width: 200px;
            text-align: center;
        }

        .lead-step img {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .lead-step h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 6px;
        }

        .lead-step p {
            font-size: 13px;
            color: #555;
        }

        .lead-support-text {
            font-size: 14px;
            color: #333;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .lead-crm-flow img {
            width: 100px;
            margin: 0 auto;
            display: block;
        }

        /* Testimonial Section */
        .testimonial-slider-section {
            padding: 60px 20px;
            background-color: #fff;
            text-align: center;
        }

        .testimonial-card {
            max-width: 700px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 12px;
            padding: 30px 40px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-quote {
            font-size: 18px;
            color: #333;
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-user-info {
            text-align: left;
            font-size: 14px;
            color: #444;
        }

        .testimonial-name {
            font-weight: bold;
            margin: 0;
        }

        .testimonial-role {
            margin: 0;
            color: #777;
            font-size: 13px;
            line-height: 1.4;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .testimonial-dots .dot {
            width: 10px;
            height: 10px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
        }

        .testimonial-dots .dot.active {
            background-color: #6a4de6;
        }

        /* Benefits Section */
        .listing-benefits-section {
            padding: 60px 20px;
            background-color: #3f3470;
            color: #fff;
            border-radius: 30px 30px 0 0;
            margin-top: 40px;
        }

        .listing-benefits-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1100px;
            margin: 0 auto;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .listing-benefits-left h3 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.5;
            margin: 0;
        }

        .listing-benefits-right .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefits-list li {
            font-size: 15px;
            margin-bottom: 10px;
            line-height: 1.6;
        }


        html {
            scroll-behavior: smooth;
        }

        .category-finder-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8f9fa;
            min-height: 100vh;
            padding: 2rem 1rem;
        }

        .category-finder-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .category-finder-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .search-container-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .search-input-container {
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .category-search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border: 2px solid #e1e5e9;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .category-search-input:focus {
            border-color: #007bff;
        }

        .search-icon-button {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #6c757d;
        }

        .help-link-container {
            text-align: center;
            margin-bottom: 2rem;
        }

        .help-link-text {
            color: #6c757d;
            font-size: 14px;
        }

        .help-link-anchor {
            color: #007bff;
            text-decoration: none;
            margin-left: 5px;
        }

        .help-link-anchor:hover {
            text-decoration: underline;
        }

        .navigation-tabs-container {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid #e1e5e9;
        }

        .nav-tab-button {
            padding: 10px 20px;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #6c757d;
            border-bottom: 2px solid transparent;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .nav-tab-button.active-tab {
            color: #007bff;
            border-bottom-color: #007bff;
            font-weight: 600;
        }

        .nav-tab-button:hover {
            color: #007bff;
        }

        .main-content-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 2rem;
        }

        .sidebar-categories-panel {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .sidebar-panel-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #333;
        }

        .sidebar-category-list {
            list-style: none;
        }

        .sidebar-category-item {
            margin-bottom: 8px;
        }

        .sidebar-category-link {
            display: block;
            padding: 8px 0;
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .sidebar-category-link:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        .sidebar-category-link.active-sidebar-link {
            color: #0056b3;
            font-weight: 600;
            background-color: #f8f9fa;
            margin: 0 -1rem;
            padding: 8px 1rem;
            border-radius: 4px;
        }

        .main-categories-content {
            display: grid;
            gap: 2rem;
        }

        .category-section-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .category-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e1e5e9;
        }

        .category-section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
        }

        .see-all-link {
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
        }

        .see-all-link:hover {
            text-decoration: underline;
        }

        .category-subcategories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .subcategory-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .subcategory-link {
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
            padding: 4px 0;
            transition: color 0.3s ease;
        }

        .subcategory-link:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        .search-no-results {
            text-align: center;
            padding: 3rem;
            color: #6c757d;
        }

        .search-no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .search-no-results p {
            font-size: 1rem;
            line-height: 1.5;
        }

        .search-highlight {
            background-color: #fff3cd;
            padding: 1px 3px;
            border-radius: 2px;
            font-weight: 600;
        }

        .category-section-card.search-hidden {
            display: none;
        }

        .subcategory-link.search-hidden {
            display: none;
        }

        .search-results-info {
            background: #e7f3ff;
            border: 1px solid #b3d9ff;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            color: #0066cc;
        }

        .clear-search-button {
            background: #6c757d;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            margin-left: 10px;
            transition: background-color 0.3s ease;
        }

        .clear-search-button:hover {
            background: #5a6268;
        }

        @media (max-width: 768px) {
            .main-content-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .category-finder-title {
                font-size: 2rem;
            }

            .navigation-tabs-container {
                flex-wrap: wrap;
                gap: 10px;
            }

            .category-subcategories-grid {
                grid-template-columns: 1fr;
            }
        }

        .stack-review-container {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8f9fa;
            min-height: 100vh;
        }

        .review-header-section {
            background: white;
            padding: 2rem 0;
            border-bottom: 1px solid #e1e5e9;
        }

        .header-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .main-title-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .author-info-container {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .author-item-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .author-avatar-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #007bff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        .author-details-text {
            font-size: 14px;
            color: #666;
        }

        .author-name-link {
            color: #333;
            text-decoration: none;
            font-weight: 600;
        }

        .author-name-link:hover {
            text-decoration: underline;
        }

        .main-content-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }

        .primary-content-area {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .content-navigation-tabs {
            border-bottom: 1px solid #e1e5e9;
            background: #f8f9fa;
        }

        .tab-list-container {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .tab-list-container::-webkit-scrollbar {
            display: none;
        }

        .navigation-tab-button {
            padding: 1rem 1.5rem;
            border: none;
            background: none;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .navigation-tab-button:hover {
            color: #007bff;
            background: rgba(0, 123, 255, 0.05);
        }

        .navigation-tab-button.active-content-tab {
            color: #007bff;
            border-bottom-color: #007bff;
            background: white;
        }

        .tab-content-panel {
            padding: 2rem;
            display: none;
        }

        .tab-content-panel.active-panel {
            display: block;
        }

        .content-section-heading {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .summary-text-content {
            line-height: 1.6;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .summary-text-content h4 {
            font-weight: 600;
            color: #333;
            margin: 1.5rem 0 0.5rem 0;
        }

        .summary-text-content p {
            margin-bottom: 1rem;
        }

        .pricing-info-section {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }

        .pricing-label-text {
            font-size: 14px;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .pricing-amount-display {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        }

        .features-list-container {
            margin: 1.5rem 0;
        }

        .feature-item-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 14px;
            color: #555;
        }

        .feature-checkmark-icon {
            color: #28a745;
            font-weight: bold;
        }

        .screenshot-carousel-section {
            margin: 2rem 0;
        }

        .main-screenshot-display {
            position: relative;
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .primary-screenshot-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .carousel-control-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .carousel-control-button:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .carousel-prev-button {
            left: 10px;
        }

        .carousel-next-button {
            right: 10px;
        }

        .thumbnail-gallery-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .screenshot-thumbnail-item {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .screenshot-thumbnail-item.active-thumbnail {
            border-color: #007bff;
        }

        .thumbnail-image-small {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar-info-panel {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .product-summary-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .product-logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .product-logo-image {
            width: 48px;
            height: 48px;
            background: #007bff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }

        .product-name-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
        }

        .rating-stars-container {
            display: flex;
            gap: 2px;
            margin-bottom: 0.5rem;
        }

        .rating-star-icon {
            color: #ffc107;
            font-size: 16px;
        }

        .rating-details-text {
            font-size: 14px;
            color: #666;
            margin-bottom: 1rem;
        }

        .sidebar-section-title {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .sidebar-feature-list {
            list-style: none;
        }

        .sidebar-feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 14px;
            color: #555;
        }

        .feature-bullet-point {
            width: 6px;
            height: 6px;
            background: #007bff;
            border-radius: 50%;
        }

        .cta-button-primary {
            background: #6f42c1;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 1rem;
            transition: background-color 0.3s ease;
        }

        .cta-button-primary:hover {
            background: #5a359a;
        }

        .overview-content-text {
            line-height: 1.6;
            color: #555;
        }

        @media (max-width: 768px) {
            .main-content-layout {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem;
            }

            .main-title-heading {
                font-size: 2rem;
            }

            .author-info-container {
                flex-direction: column;
                gap: 1rem;
            }

            .tab-content-panel {
                padding: 1rem;
            }
        }

        /* 
            <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        } */

        .software-advice-trigger-button {
            background: #4c63d2;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 99, 210, 0.3);
        }

        .software-advice-trigger-button:hover {
            background: #3b52c7;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 99, 210, 0.4);
        }

        .software-advice-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: softwareAdviceFadeIn 0.3s ease;
        }

        .software-advice-modal-backdrop.software-advice-modal-active {
            display: flex;
        }

        .software-advice-modal-container {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 900px;
            height: 600px;
            display: flex;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: softwareAdviceSlideUp 0.4s ease;
        }

        .software-advice-modal-left-panel {
            background: linear-gradient(135deg, #4c63d2 0%, #3b52c7 100%);
            flex: 1;
            padding: 40px;
            color: white;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .software-advice-modal-right-panel {
            flex: 1;
            padding: 40px;
            background: #f8f9fa;
            position: relative;
        }

        .software-advice-modal-close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .software-advice-modal-close-button:hover {
            background: #e9ecef;
            color: #333;
        }

        .software-advice-brand-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .software-advice-brand-logo::after {
            content: '🧡';
            margin-left: 8px;
            font-size: 20px;
        }

        .software-advice-main-heading {
            font-size: 28px;
            line-height: 1.3;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .software-advice-features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .software-advice-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .software-advice-feature-item::before {
            content: '✓';
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            color: #4ade80;
        }

        .software-advice-advisor-section {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .software-advice-advisor-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .software-advice-advisor-details h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .software-advice-advisor-details p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .software-advice-step-counter {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .software-advice-step-heading {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .software-advice-form-field {
            margin-bottom: 25px;
        }

        .software-advice-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .software-advice-radio-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .software-advice-radio-choice {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .software-advice-radio-choice:hover {
            border-color: #4c63d2;
            background: #f8f9ff;
        }

        .software-advice-radio-choice input[type="radio"] {
            margin-right: 12px;
            accent-color: #4c63d2;
        }

        .software-advice-radio-choice.software-advice-radio-selected {
            border-color: #4c63d2;
            background: #f8f9ff;
        }

        .software-advice-input-field {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .software-advice-input-field:focus {
            outline: none;
            border-color: #4c63d2;
            box-shadow: 0 0 0 3px rgba(76, 99, 210, 0.1);
        }

        .software-advice-input-field.software-advice-input-error {
            border-color: #dc3545;
        }

        .software-advice-error-text {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
        }

        .software-advice-next-button,
        .software-advice-back-button,
        .software-advice-submit-button {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 10px;
        }

        .software-advice-next-button,
        .software-advice-submit-button {
            background: #4c63d2;
            color: white;
        }

        .software-advice-next-button:hover,
        .software-advice-submit-button:hover {
            background: #3b52c7;
            transform: translateY(-1px);
        }

        .software-advice-back-button {
            background: #6c757d;
            color: white;
        }

        .software-advice-back-button:hover {
            background: #5a6268;
        }

        .software-advice-info-panel {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }

        .software-advice-info-panel h4 {
            color: #333;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .software-advice-benefits-list {
            list-style: none;
        }

        .software-advice-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 14px;
            color: #666;
        }

        .software-advice-benefit-item::before {
            content: '✓';
            color: #28a745;
            margin-right: 10px;
            font-weight: bold;
            margin-top: 2px;
        }

        .software-advice-benefit-item.software-advice-no-spam::before {
            content: '✗';
            color: #dc3545;
        }

        .software-advice-legal-terms {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
            margin-top: 20px;
        }

        .software-advice-legal-terms a {
            color: #4c63d2;
            text-decoration: none;
        }

        .software-advice-legal-terms a:hover {
            text-decoration: underline;
        }

        .software-advice-form-step {
            display: none;
        }

        .software-advice-form-step.software-advice-step-active {
            display: block;
        }

        .software-advice-success-container {
            text-align: center;
            padding: 40px 20px;
        }

        .software-advice-success-icon {
            font-size: 64px;
            color: #28a745;
            margin-bottom: 20px;
        }

        .software-advice-success-container h3 {
            color: #28a745;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .software-advice-success-container p {
            color: #666;
            font-size: 16px;
            line-height: 1.5;
        }

        .software-advice-button-group {
            margin-top: 30px;
        }

        .software-advice-industry-info {
            margin-top: 30px;
        }

        .software-advice-industry-info h4 {
            color: #333;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .software-advice-industry-info p {
            color: #666;
            font-size: 14px;
        }

        @keyframes softwareAdviceFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes softwareAdviceSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .software-advice-modal-container {
                flex-direction: column;
                height: auto;
                max-height: 90vh;
                overflow-y: auto;
            }

            .software-advice-modal-left-panel {
                padding: 30px 20px;
            }

            .software-advice-modal-right-panel {
                padding: 30px 20px;
            }

            .software-advice-main-heading {
                font-size: 24px;
            }
        }


        /* {{-- .review-container {
            max-width: 1400px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        } --}} */
        .review-container {
            max-width: 1400px;
            margin: 0 auto;
            /* background: rgb(3 42 191 / 98%); */
            border-radius: 20px;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.3); */
            /* overflow: hidden; */
            background-color: #2051d3;
        }

        .review-container .header {
            background: linear-gradient(135deg, #4a4e69 0%, #22223b 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }

        .review-container .header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .review-container .tab-container {
            background: #f8f9fa;
            padding: 0;
        }

        .review-container .tab-navigation {
            display: flex;
            background: rgba(74, 78, 105, 0.05);
            padding: 10px;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px;
        }

        .review-container .tab-btn {
            padding: 15px 25px;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            color: #666;
            border-radius: 8px;
            min-width: 140px;
        }

        .review-container .tab-btn:hover {
            background: rgba(74, 78, 105, 0.1);
            color: #4a4e69;
        }

        .review-container .tab-btn.active {
            color: white;
            background: #4a4e69;
            box-shadow: 0 4px 15px rgba(74, 78, 105, 0.3);
        }

        .review-container .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #4a4e69;
        }

        .review-container .tab-content {
            display: none;
            padding: 40px;
            animation: fadeIn 0.5s ease-in-out;
        }

        .review-container .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-container .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .review-container .review-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
        }

        .review-container .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #4a4e69;
        }

        .software-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .software-title.vagaro {
            color: #e91e63;
        }

        .software-title.simplepractice {
            color: #ff9800;
        }

        .software-title.fresha {
            color: #9c27b0;
        }

        .software-title.legalzoom {
            color: #2196f3;
        }

        .software-title.clio {
            color: #4caf50;
        }

        .software-title.workday {
            color: #f44336;
        }

        .software-title.bamboohr {
            color: #795548;
        }

        .software-title.procore {
            color: #607d8b;
        }

        .software-title.planswift {
            color: #3f51b5;
        }

        .software-title.maintainx {
            color: #009688;
        }

        .software-title.upkeep {
            color: #ff5722;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            padding-left: 15px;
        }

        /* .review-text::before {
            content: '"';
            font-size: 2.5rem;
            color: #e0e0e0;
            position: absolute;
            left: -5px;
            top: -5px;
        } */

        .review-rating {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #ffa726;
            font-weight: 600;
        }

        .reviewer-info {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .reviewer-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 5px;
        }

        .reviewer-role {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .reviewer-usage {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .learn-more {
            display: inline-block;
            color: #4a4e69;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 16px;
            border: 2px solid #4a4e69;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .learn-more:hover {
            background: #4a4e69;
            color: white;
            transform: scale(1.05);
        }

        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: #666;
        }

        .empty-state h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #4a4e69;
        }

        .empty-state p {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .tab-navigation {
                flex-direction: column;
                align-items: center;
            }

            .tab-btn {
                width: 100%;
                max-width: 250px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .tab-content {
                padding: 20px;
            }
        }

        .category-wrapper {
            margin-bottom: 10px;
        }

        .category-button {
            width: 100%;
            background: #f5f5f5;
            border: none;
            padding: 10px;
            font-weight: bold;
            text-align: left;
            cursor: pointer;
        }

        .plus-symbol {
            float: right;
        }

        .subcategory-list {
            padding-left: 15px;
            background: #fafafa;
            border-left: 3px solid #ddd;
        }

        .subcategory-item {
            padding: 5px 0;
        }

        /* Search Results Modal */
        .search-results-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .search-results-overlay.sro-active {
            opacity: 1;
            visibility: visible;
        }

        .search-results-modal {
            position: fixed;
            top: 163px;
            left: 67%;
            transform: translateX(-50%) translateY(-20px);
            width: 69%;
            max-width: 792px;
            /* max-height: 70vh; */
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            z-index: 10000;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .search-results-overlay.sro-active .search-results-modal {
            transform: translateX(-50%) translateY(0);
        }

        .srm-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid #e5e7eb;
            background: #f9fafb;
            position: relative;
        }

        .srm-products-label {
            position: absolute;
            top: 12px;
            right: 60px;
            background: #f3f4f6;
            color: #6b7280;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .srm-title {
            font-size: 18px;
            font-weight: 600;
            color: #1f2937;
            margin: 0 0 8px 0;
        }

        .srm-count {
            font-size: 14px;
            color: #6b7280;
            margin: 0;
        }

        .srm-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: none;
            background: #f3f4f6;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #6b7280;
            transition: all 0.2s ease;
        }

        .srm-close:hover {
            background: #e5e7eb;
            color: #374151;
        }

        .srm-content {
            max-height: calc(70vh - 80px);
            overflow-y: auto;
            padding: 0;
        }

        .srm-content::-webkit-scrollbar {
            width: 6px;
        }

        .srm-content::-webkit-scrollbar-track {
            background: #f1f5f9;
        }

        .srm-content::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .srm-category-section {
            border-bottom: 1px solid #f1f5f9;
        }

        .srm-category-section:last-child {
            border-bottom: none;
        }

        .srm-category-header {
            display: flex;
            align-items: center;
            padding: 16px 24px 12px;
            background: #fefefe;
            border-bottom: 1px solid #f1f5f9;
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .srm-category-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 16px;
            color: white;
            flex-shrink: 0;
        }

        .srm-category-name {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }

        .srm-subcategories-grid {
            padding: 16px 24px 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .srm-subcategory-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            background: #fafafa;
            border: 1px solid #f1f5f9;
            border-radius: 10px;
            text-decoration: none;
            color: #374151;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .srm-subcategory-item:hover {
            background: #f0f9ff;
            border-color: #bfdbfe;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .srm-subcategory-icon {
            width: 28px;
            height: 28px;
            background: #6366f1;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 14px;
            color: white;
            flex-shrink: 0;
        }

        .srm-subcategory-name {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            flex: 1;
        }

        .srm-subcategory-arrow {
            font-size: 12px;
            color: #9ca3af;
            margin-left: 8px;
        }

        .srm-no-results {
            padding: 60px 24px;
            text-align: center;
        }

        .srm-no-results-icon {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.4;
        }

        .srm-no-results-title {
            font-size: 18px;
            font-weight: 600;
            color: #374151;
            margin: 0 0 8px 0;
        }

        .srm-no-results-text {
            font-size: 14px;
            color: #6b7280;
            margin: 0 0 24px 0;
        }

        .srm-suggestions {
            background: #f9fafb;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }

        .srm-suggestions-title {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin: 0 0 12px 0;
        }

        .srm-suggestion-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .srm-suggestion-tag {
            background: #6366f1;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }

        .srm-suggestion-tag:hover {
            background: #4f46e5;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .search-results-modal {
                width: 100%;
                max-width: none;
                top: 70px;
                border-radius: 16px 16px 0 0;
                max-height: calc(100vh - 70px);
            }

            .srm-header {
                padding: 16px 20px 12px;
            }

            .srm-subcategories-grid {
                padding: 12px 20px 16px;
            }

            .srm-category-header {
                padding: 12px 20px 8px;
            }
        }

        .softwareReview__mainWrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .categoryFilter__navigationBar {
            display: flex;
            gap: 30px;
            border-bottom: 2px solid #e9ecef;
            margin-bottom: 30px;
            padding-bottom: 10px;
        }

        .categoryFilter__tabButton {
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 500;
            color: #6c757d;
            cursor: pointer;
            padding: 10px 5px;
            position: relative;
            transition: color 0.3s ease;
        }

        .categoryFilter__tabButton--selectedState {
            color: #007bff;
        }

        .categoryFilter__tabButton--selectedState::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #007bff;
        }

        .categoryFilter__tabButton:hover {
            color: #007bff;
        }

        .blogArticles__displayGrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .blogArticles__displayGrid--hiddenView {
            display: none;
        }

        .blogPost__cardContainer {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }

        .blogPost__cardContainer:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .blogPost__featuredImage {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .blogPost__featuredImage--orangeTheme {
            background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
        }

        .blogPost__featuredImage--purpleTheme {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .blogPost__featuredImage--blueTheme {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .blogPost__featuredImage--pinkTheme {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .blogPost__featuredImage::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }

        .blogPost__textContent {
            padding: 20px;
        }

        .blogPost__publicationDate {
            font-size: 12px;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .blogPost__headlineText {
            font-size: 16px;
            font-weight: 600;
            color: #2d3436;
            line-height: 1.4;
            margin-bottom: 0;
        }

        .siteNavigation__additionalMenu {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 14px;
            color: #6c757d;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .softwareReview__mainWrapper {
                padding: 15px;
            }

            .categoryFilter__navigationBar {
                flex-wrap: wrap;
                gap: 15px;
            }

            .blogArticles__displayGrid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .categoryFilter__tabButton {
                font-size: 14px;
            }
        }

        a.provider-cta-button {
            text-decoration: none;
        }

        .subcategory-item a {
            text-decoration: none;
        }

        .cms-page-content {
            margin: 20px;
            margin-bottom: 78px;
        }