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

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

        /* Navigation */
        nav {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            position: sticky;
            top: 1rem;
            margin: 0 auto;
            max-width: calc(1400px + 4rem);
            width: calc(100% - 4rem);
            background-color: rgba(30, 30, 30, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(51, 51, 51, 0.5);
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            padding: 1rem 2rem;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0.5rem 0;
        }

        .logo img {
            height: 40px;
            width: auto;
            max-width: 180px;
            transition: transform 0.3s;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            padding: 0;
            margin: 0;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            display: block;
            text-decoration: none;
            color: #aaa;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #e5e5e5;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .nav-links a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Search Form — collapsible icon-only on desktop */
        .search-form-desktop {
            display: flex;
            align-items: center;
            position: relative;
        }

        /* The icon-only toggle button */
        .search-toggle-btn {
            background: transparent;
            border: 1.5px solid #555;
            color: #aaa;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem 0.7rem;
            border-radius: 8px;
            transition: border-color 0.2s, color 0.2s, background 0.2s;
            position: relative;
            z-index: 2;
        }

        .search-toggle-btn:hover {
            border-color: #8b5fd9;
            color: #8b5fd9;
            background: rgba(139, 95, 217, 0.08);
        }

        .search-toggle-btn:active {
            transform: scale(0.93);
        }

        .search-toggle-btn.active {
            border-color: #8b5fd9;
            color: #8b5fd9;
            background: rgba(139, 95, 217, 0.12);
        }

        /* Hide the submit button inside the expanded box — Enter submits instead */
        .search-expand-wrapper.open .search-button {
            display: none;
        }

        /* Expanding input wrapper */
        .search-expand-wrapper {
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 0;
            opacity: 0;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.25s ease;
            position: absolute;
            right: calc(100% + 0.5rem); /* expands to the LEFT of the icon */
        }

        .search-expand-wrapper.open {
            width: 240px;
            opacity: 1;
        }

        .search-expand-inner {
            display: flex;
            align-items: stretch;
            background: #242424;
            border: 1px solid #8b5fd9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 0 3px rgba(139, 95, 217, 0.15);
            width: 100%;
        }

        .search-input {
            background: transparent;
            border: none;
            padding: 0.65rem 1rem;
            color: #e5e5e5;
            font-size: 0.9rem;
            width: 100%;
            min-width: 0;
        }

        .search-input:focus {
            outline: none;
        }

        .search-input::placeholder {
            color: #666;
        }

        .search-button {
            background: transparent;
            border: none;
            border-left: 1px solid #333;
            padding: 0 0.85rem;
            color: #8b5fd9;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s;
            flex-shrink: 0;
        }

        .search-button:hover {
            background: rgba(139, 95, 217, 0.15);
            color: #9d6eeb;
        }

        .search-button svg {
            display: block;
        }

        .search-form-mobile {
            display: none; /* Hidden on desktop */
        }

        .mobile-search {
            display: none; /* Hidden on desktop */
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background-color: #e5e5e5;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .theme-toggle {
            background: transparent;
            border: 2px solid #ddd;
            border-radius: 50px;
            width: 60px;
            height: 32px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

        .theme-toggle:hover {
            border-color: #7f43d6;
        }

        .theme-toggle-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 24px;
            height: 24px;
            background: #7f43d6;
            border-radius: 50%;
            transition: transform 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            filter: grayscale(100%) brightness(200%);
        }

        body.dark-mode .theme-toggle-slider {
            transform: translateX(28px);
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-secondary {
            background-color: transparent;
            color: #e5e5e5;
            border: 1px solid #444;
            transition: all 0.3s;
            position: relative;
        }

        .btn-secondary:hover {
            border-color: #8b5fd9;
            color: #e5e5e5;
            background: rgba(139, 95, 217, 0.1);
            transform: translateY(-2px);
        }

        .btn-secondary::after {
            content: '';
            position: absolute;
            bottom: 0.7rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 3rem);
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .btn-secondary:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .btn-primary {
            background-color: #7f43d6;
            color: white;
            border: 1px solid #7f43d6;
            position: relative;
        }

        .btn-primary:hover {
            background-color: #6a35b8;
            border-color: #6a35b8;
            transform: translateY(-2px);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            bottom: 0.7rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 3rem);
            height: 2px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .btn-primary:hover::after {
            transform: translateX(-50%) scaleX(1);
        }
        .hero-tertiary-link {
            display: inline-block;
            text-decoration: none;
            color: #aaa;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s;
            position: relative;
            text-align: center;
        }

        .hero-tertiary-link:hover {
            color: #e5e5e5;
            background: rgba(139, 95, 217, 0.1);
            transform: translateY(-2px);
        }

        .hero-tertiary-link::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .hero-tertiary-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }
        
        .content-link {
            color: #7f43d6;
            text-decoration: none !important;
            position: relative;
            display: inline-block;
            transition: color 0.3s, transform 0.2s;
        }

        .content-link:hover {
            color: #6a35b8;
            transform: translateY(-2px);
        }

        .content-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: #7f43d6;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .content-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Hero Section */
        .hero {
            padding: 6rem 5% 3rem;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #e5e5e5;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            color: #aaa;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .hero-cta .btn {
            padding: 1rem 2rem;
            font-size: 1.05rem;
        }

        .hero-note {
            font-size: 0.95rem;
            color: #666;
        }

        /* Features Grid */
        .features {
            background-color: #161616;
            padding: 5rem 0;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #e5e5e5;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feature-card {
            background: #242424;
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid #333;
            text-decoration: none;
            color: inherit;
            display: block;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: #8b5fd9;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(139, 95, 217, 0.2);
        }

        .feature-icon {
            color: #8b5fd9;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon svg {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: #e5e5e5;
        }

        .feature-card p {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* =====================================================
         *  VPN PAGE RESTRUCTURE — add these to your style.css
         *  ===================================================== */

        /* Merged "What to Look For" + Warnings section */
        .what-to-look-for {
            padding: 5rem 0;
            background-color: #1e1e1e;
        }

        .what-to-look-for-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .look-for-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem; /* space before the Red Flags subsection */
        }

        .look-for-card {
            background: #242424;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 1.75rem;
            text-align: center;
        }

        .look-for-icon {
            color: #8b5fd9;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .look-for-card h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .look-for-card p {
            color: #aaa;
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* Warnings as a subsection within the same section */
        .section-title-warnings {
            margin-top: 0; /* already has space from look-for-grid margin-bottom */
        }

        /* ── Mobile provider cards ─────────────────────────── */

        /* Show table on desktop, cards on mobile */
        .desktop-table { display: block; }
        .mobile-cards  { display: none;  }

        .provider-card {
            background: #242424;
            border: 1px solid #333;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .provider-card-clickable {
            cursor: pointer;
        }

        .provider-card-clickable:hover {
            border-color: #8b5fd9;
        }

        .provider-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            background: #2a2a2a;
            border-bottom: 2px solid #8b5fd9;
        }

        .provider-card-header h3 {
            color: white;
            font-size: 1.1rem;
            margin: 0;
        }

        .provider-card-body {
            padding: 0.5rem 0;
        }

        .provider-card-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 1.25rem;
            border-bottom: 1px solid #2e2e2e;
            gap: 1rem;
        }

        .provider-card-row:last-child {
            border-bottom: none;
        }

        .pcard-label {
            color: #888;
            font-size: 0.85rem;
            font-weight: 500;
            flex-shrink: 0;
        }

        .pcard-value {
            color: #e5e5e5;
            font-size: 0.85rem;
            text-align: right;
        }

        .provider-card-footer {
            padding: 0.85rem 1.25rem;
            border-top: 1px solid #333;
            display: flex;
            justify-content: flex-end;
        }

        .provider-card-footer .review-indicator {
            color: #8b5fd9;
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* ── Responsive breakpoints ────────────────────────── */

        @media (max-width: 768px) {
            .desktop-table { display: none;  }
            .mobile-cards  { display: block; }

            .what-to-look-for {
                padding: 3rem 0;
            }

            .look-for-grid {
                grid-template-columns: 1fr;
                margin-bottom: 2.5rem;
            }

            .comparison-section {
                padding: 3rem 0;
            }

            /* Capabilities stack on mobile */
            .capabilities-grid {
                grid-template-columns: 1fr;
            }
        }

        /* What VPN Can/Cannot Do */
        .capabilities {
            padding: 5rem 0;
            background: linear-gradient(135deg, #7f43d6 0%, #5e2fa3 100%);
        }

        .capabilities-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .capabilities .section-title {
            color: white;
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .capability-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .capability-list {
            list-style: none;
        }

        .capability-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .capability-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: white;
            font-weight: 700;
        }

        .capability-section.cannot .capability-list li:before {
            content: '✗';
            color: rgba(255, 255, 255, 0.6);
        }

        /* Trust Section */
        .trust {
            background-color: #161616;
            padding: 5rem 0;
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

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

        .trust-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #e5e5e5;
        }

        .trust-item p {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            text-align: center;
            background: linear-gradient(135deg, #7f43d6 0%, #5e2fa3 100%);
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-section .btn {
            background-color: white;
            color: #7f43d6;
            padding: 1rem 2.5rem;
            font-size: 1.05rem;
        }

        .cta-section .btn:hover {
            background-color: #f0f0f0;
        }

        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: #aaa;
            padding: 3rem 5% 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            position: relative;
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            margin-left: -0.5rem;
        }

        .footer-section a::after {
            content: '';
            position: absolute;
            bottom: 1px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 1rem);
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .footer-section a:hover {
            color: #8b5fd9;
            transform: translateY(-2px);
        }

        .footer-section a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .social-links {
            list-style: none;
        }

        .social-links li {
            margin-bottom: 0.75rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            padding: 0;
            margin-left: 0;
            border-radius: 0;
        }

        .social-links a::after {
            display: none;
        }

        .social-links a:hover {
            color: #8b5fd9;
            background: none;
        }

        .social-links a:hover svg {
            transform: translateY(-2px);
        }

        .social-links svg {
            transition: transform 0.3s;
        }

        /* Reusable nav-style link for use in content areas */
        .content-tertiary-link {
            display: inline-block;
            color: #aaa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            transition: color 0.3s, transform 0.2s;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
        }

        .content-tertiary-link::after {
            content: '';
            position: absolute;
            bottom: 1px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 1rem);
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .content-tertiary-link:hover {
            color: #8b5fd9;
            transform: translateY(-2px);
        }

        .content-tertiary-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.85rem;
        }

        /* ── Tablet / landscape phone (600px – 1024px) ─────────────────────
           Full nav links are visible; hamburger is hidden.
           Expandable icon search stays in .nav-right.
           ───────────────────────────────────────────────────────────────── */
        @media (max-width: 1024px) {
            nav {
                padding: 0;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                background-color: rgba(30, 30, 30, 0.9);
                border-radius: 12px;
                position: fixed;
                top: 0.5rem;
                left: 50%;
                transform: translateX(-50%);
                width: calc(100% - 1rem);
                margin: 0;
                overflow: visible;
            }

            .nav-container {
                padding: 0.75rem 1.25rem;
                flex-wrap: nowrap;
                position: relative;
            }

            /* Logo and nav-right sit at their natural edges */
            .logo {
                flex-shrink: 0;
            }

            .nav-right {
                flex-shrink: 0;
                margin-left: 0;
            }

            .logo img {
                height: 28px !important;
                max-width: 100px !important;
            }

            /* Links are absolutely centered in the container */
            .nav-links {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                gap: 0;
                margin: 0;
            }

            .nav-links a {
                font-size: 0.85rem;
                padding: 0.6rem 0.75rem;
            }

            /* Keep expandable search visible; hide mobile-only pieces */
            .search-form-desktop {
                display: flex !important;
            }

            .hamburger {
                display: none;
            }

            .mobile-search {
                display: none;
            }

            .search-form-mobile {
                display: none;
            }
        }

        /* Mobile search item — hidden on desktop */
        .mobile-search-item { display: none; }

        /* ── Mobile (< 768px) — hamburger dropdown below nav ── */
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .search-form-desktop { display: none !important; }
            .mobile-search-item { display: block !important; }

            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 0.5rem);
                left: 50%;
                transform: translateX(-50%);
                width: calc(100% - 2rem);
                background: #242424;
                border: 1px solid #333;
                border-radius: 12px;
                flex-direction: column;
                padding: 0.5rem;
                z-index: 999;
                box-shadow: 0 8px 24px rgba(0,0,0,0.5);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links li { width: 100%; }

            .nav-links a {
                display: block;
                width: 100%;
                padding: 0.85rem 1.25rem;
                font-size: 1rem;
                border-radius: 8px;
                color: #ccc;
                position: static;
            }

            .nav-links a::after { display: none; }

            .nav-links a:hover {
                background: rgba(139, 95, 217, 0.15);
                color: #e5e5e5;
            }

            .mobile-search-item form {
                display: flex;
                margin: 0.25rem 0;
                background: #1e1e1e;
                border: 1px solid #444;
                border-radius: 8px;
                overflow: hidden;
            }

            .mobile-search-item input {
                flex: 1;
                background: none;
                border: none;
                padding: 0.65rem 1rem;
                color: #e5e5e5;
                font-size: 0.9rem;
                outline: none;
            }

            .mobile-search-item button {
                background: none;
                border: none;
                border-left: 1px solid #444;
                padding: 0 0.85rem;
                color: #8b5fd9;
                cursor: pointer;
            }
        }

        /* ── General mobile layout (≤ 768px) ───────────────────────────── */
        @media (max-width: 768px) {
            .hero {
                padding: 8rem 4% 2rem;
            }

            .hero h1 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-cta {
                flex-direction: column;
                margin-bottom: 2rem;
                align-items: center;
            }

            .hero-cta .btn {
                padding: 1rem 2rem;
                min-width: 200px;
            }

            .features {
                padding: 3rem 4%;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .capabilities {
                padding: 3rem 4%;
            }

            .capabilities-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            .trust {
                padding: 3rem 4%;
            }

            .trust-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cta-section {
                padding: 3rem 4%;
            }

            .cta-section h2 {
                font-size: 1.75rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            footer {
                padding: 2rem 4% 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 1.35rem;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

/* Blog Styles */
.blog-listing {
            padding: 5rem 0;
            background-color: #161616;
        }

        .blog-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* Inline links*/
        .inline-icon-link {
            display: inline-flex;
            align-items: center;
            gap: 0rem;
            color: #aaa;
            text-decoration: underline;
            transition: color 0.3s, transform 0.2s;
        }

        .inline-icon-link:hover {
            color: #8b5fd9;
        }

        .inline-icon-link svg {
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .inline-icon-link:hover svg {
            transform: translateY(-2px);
        }

        /* Single Post Per Row - Image Left */
        .blog-post-card {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 2rem;
            background: #242424;
            border: 1px solid #333;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .blog-post-card:hover {
            border-color: #8b5fd9;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(139, 95, 217, 0.2);
        }

        .blog-post-image-container {
            position: relative;
            width: 350px;
            height: 100%;
            min-height: 250px;
            overflow: hidden;
            background: #1a1a1a;
        }

        .blog-post-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-post-card:hover .blog-post-image-container img {
            transform: scale(1.05);
        }

        .blog-post-info {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-post-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }

        .blog-post-meta time {
            color: #8b5fd9;
            font-weight: 500;
        }

        .blog-post-meta .post-author {
            color: #888;
        }

        .blog-post-card h3 {
            font-size: 1.5rem;
            color: #e5e5e5;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .blog-post-excerpt {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .blog-post-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .blog-post-tags .tag {

            color: #8b5fd9;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
        }

        .blog-post-read-more {
            display: inline-block;
            color: #8b5fd9;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            position: relative;
            transition: color 0.3s, transform 0.2s;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
        }

        .blog-post-read-more::after {
            content: '';
            position: absolute;
            bottom: 1px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 1rem);
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .blog-post-card:hover .blog-post-read-more {
            color: #8b5fd9;
            transform: translateY(-2px);
        }

        .blog-post-card:hover .blog-post-read-more::after {
            transform: translateX(-50%) scaleX(1);
        }

        .blog-post-preview {
            padding-bottom: 3rem;
            border-bottom: 1px solid #333;
        }

        .blog-post-preview:last-child {
            border-bottom: none;
        }

        /* Post Preview with Image */
        .post-preview-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 2rem;
            align-items: start;
        }

        .post-preview-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
        }

        .post-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .post-preview-image:hover img {
            transform: scale(1.05);
        }

        .content-type-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(139, 95, 217, 0.95);
            color: white;
            padding: 0.35rem 0.85rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 1;
        }

        .post-preview-content {
            flex: 1;
        }

        /* Featured Post Image in Cards */
        .featured-post-image-card {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 6px;
            margin-bottom: 1.5rem;
            background: #1a1a1a;
        }

        .featured-post-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .featured-post-image-card img {
            transform: scale(1.05);
        }

        /* Post Meta in Cards */
        .post-meta-card {
            display: flex;
            gap: 0.75rem;
            font-size: 0.85rem;
            color: #8b5fd9;
            margin-bottom: 0.75rem;
        }

        .post-meta-card time {
            color: #8b5fd9;
        }

        .post-meta-card .post-author {
            color: #888;
        }

        /* Post Tags in Cards */
        .post-tags-card {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .post-tags-card .tag {

            color: #8b5fd9;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
        }

        /* Featured Posts Grid */
        .featured-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .featured-post-card {
            background: #242424;
            border: 1px solid #333;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .featured-post-card:hover {
            border-color: #8b5fd9;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(139, 95, 217, 0.2);
        }

        .featured-post-image {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .featured-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .featured-post-card:hover .featured-post-image img {
            transform: scale(1.05);
        }

        .featured-post-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-post-content h3 {
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
            color: #e5e5e5;
            line-height: 1.3;
        }

        .featured-post-content p {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .page-info {
            color: #aaa;
            font-size: 0.95rem;
        }

        /* No posts message */
        .no-posts {
            text-align: center;
            padding: 3rem;
            color: #aaa;
        }

        /* Mobile adjustments for post previews */
        @media (max-width: 968px) {
            .blog-post-card {
                grid-template-columns: 1fr;
            }

            .blog-post-image-container {
                width: 100%;
                height: 250px;
                min-height: 250px;
            }

            .post-preview-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .post-preview-image {
                height: 180px;
            }

            .featured-posts-grid {
                grid-template-columns: 1fr;
            }

            .featured-post-image {
                height: 200px;
            }

            .featured-post-image-card {
                height: 180px;
            }
        }

        .post-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .post-meta time {
            color: #8b5fd9;
        }

        .post-author {
            color: #888;
        }

        /* Category Badge Styles */
        .category-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-badge.article {
            background: rgba(139, 95, 217, 0.15);
            color: #8b5fd9;
            border: 1px solid rgba(139, 95, 217, 0.3);
        }

        .category-badge.news {
            background: rgba(80, 200, 120, 0.15);
            color: #50c878;
            border: 1px solid rgba(80, 200, 120, 0.3);
        }

        .category-badge.guide {
            background: rgba(255, 183, 77, 0.15);
            color: #ffb74d;
            border: 1px solid rgba(255, 183, 77, 0.3);
        }

        .blog-post-preview h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .blog-post-preview h2 a {
            color: #e5e5e5;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }

        .blog-post-preview h2 a:hover {
            color: #8b5fd9;
        }

        .post-excerpt {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .post-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .tag {

            color: #8b5fd9;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
        }

        .read-more {
            display: inline-block;
            color: #8b5fd9;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s, transform 0.2s;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
        }

        .read-more::after {
            content: '';
            position: absolute;
            bottom: 1px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: calc(100% - 1rem);
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .read-more:hover {
            color: #8b5fd9;
            transform: translateY(-2px);
        }

        .read-more:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .no-posts {
            text-align: center;
            padding: 3rem;
            color: #aaa;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding-top: 2rem;
        }

        .page-info {
            color: #aaa;
        }

        /* Single Blog Post */
        .blog-post-single {
            padding: 4rem 5% 5rem;
            background-color: #1e1e1e;
        }

        .post-container {
            max-width: 1100px;
            margin: 0 auto;
            background: #242424;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 3rem;
        }

        .post-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #333;
        }

        .post-header h1 {
            font-size: 2.5rem;
            color: #e5e5e5;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .post-content {
            color: #aaa;
            line-height: 1.8;
            font-size: 1.05rem;
            max-width: 720px;
        }

        .post-content h1,
        .post-content h2,
        .post-content h3 {
            color: white;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .post-content h1 {
            font-size: 2rem;
        }

        .post-content h2 {
            font-size: 1.75rem;
        }

        .post-content h3 {
            font-size: 1.5rem;
        }

        .post-content p {
            margin-bottom: 1.5rem;
        }

        .post-content ul,
        .post-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .post-content li {
            margin-bottom: 0.75rem;
        }

        .post-content a {
            color: #8b5fd9;
            text-decoration: none;
        }

        .post-content a:hover {
            text-decoration: underline;
        }

        .post-content code {
            background: #242424;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.9em;
            color: #8b5fd9;
        }

        .post-content pre {
            background: #242424;
            padding: 1.5rem;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 1.5rem;
        }

        .post-content pre code {
            background: none;
            padding: 0;
            color: #e5e5e5;
        }

        .post-content strong {
            color: white;
            font-weight: 600;
        }

        .post-footer {
            background: #242424;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            text-align: left;
            max-width: none;
        }

        .post-footer .btn-secondary {
            background-color: #7f43d6;
            color: white;
            border: none;
        }

        .post-footer .btn-secondary:hover {
            background-color: #6a35b8;
            border: none;
        }

        .post-featured-image {
            margin-top: 2rem;
            border-radius: 8px;
            overflow: hidden;
            max-width: 600px;
        }

        .post-featured-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .post-content img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            margin: 1.5rem auto;
        }

        @media (max-width: 768px) {
            .blog-post-single {
                padding: 6rem 4% 3rem;
            }

            .post-container {
                padding: 1.5rem;
                border-radius: 10px;
            }

            .post-header h1 {
                font-size: 1.75rem;
            }

            .post-content h1 {
                font-size: 1.5rem;
            }

            .post-content h2 {
                font-size: 1.3rem;
            }

            .post-content h3 {
                font-size: 1.15rem;
            }

            .post-featured-image {
                border-radius: 6px;
                max-width: 100%;
            }
        }

        /* Tag Filter Section */
        .tag-filter {
            padding: 2rem 0;
            background-color: #161616;
            border-bottom: 1px solid #333;
        }

        .tag-filter-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .filter-label {
            color: #888;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .tag-list {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .filter-tag {

            color: #8b5fd9;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .filter-tag:hover {
            background: rgba(139, 95, 217, 0.2);
            border-color: #8b5fd9;
        }

        .filter-tag.active {
            background: #8b5fd9;
            color: white;
        }

        .filter-info {

            color: #aaa;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-info strong {
            color: #8b5fd9;
        }

        .clear-filter {
            color: #8b5fd9;
            text-decoration: none;
            font-size: 0.9rem;
            margin-left: auto;
        }

        .clear-filter:hover {
            text-decoration: underline;
        }

        /* Make post tags clickable */
        .post-tags a.tag {
            text-decoration: none;
            transition: all 0.3s;
        }

        .post-tags a.tag:hover {
            background: rgba(139, 95, 217, 0.2);
            transform: translateY(-2px);
        }

        /* Mobile adjustments for tag filter */
        @media (max-width: 1024px) {
            .tag-filter {
                padding: 1.5rem 4%;
            }

            .tag-filter-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .filter-info {
                flex-direction: column;
                align-items: flex-start;
            }

            .clear-filter {
                margin-left: 0;
            }
        }

        /* Blog List - one card per row */
        .blog-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Horizontal Card - image left, content right */
        .blog-horizontal-card {
            display: flex;
            flex-direction: row;
            background: #242424;
            border: 1px solid #333;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .blog-horizontal-card:hover {
            border-color: #8b5fd9;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(139, 95, 217, 0.2);
        }

        /* Image container - fixed width on left */
        .blog-h-card-image {
            width: 300px;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            flex-shrink: 0;
            background: #1e1e1e;
        }

        .blog-h-card-image img {
            max-width: 100%;
            max-height: 220px;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
        }

        /* Content area - right side */
        .blog-h-card-body {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 0;
        }

        .blog-h-card-body h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: #e5e5e5;
            line-height: 1.3;
        }

        .blog-h-card-body .post-meta {
            order: -1;
            margin-bottom: 0.75rem;
        }

        .blog-h-card-body .post-excerpt {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .blog-h-card-body .post-tags {
            margin-bottom: 1rem;
        }

        .blog-card-footer {
            margin-top: auto;
            padding-top: 1rem;
            display: flex;
            justify-content: flex-end;
        }

        .read-more-link {
            display: inline-block;
            text-decoration: none;
            color: #aaa;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0.85rem;
            border-radius: 8px;
            border: 1px solid #444;
            transition: all 0.3s;
            position: relative;
            text-align: center;
        }

        .read-more-link::after {
            content: '';
            position: absolute;
            bottom: 0.4rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: #8b5fd9;
            border-radius: 2px;
            transition: transform 0.3s;
        }

        .read-more-link:hover,
        .blog-horizontal-card:hover .read-more-link {
            color: #e5e5e5;
            background: rgba(139, 95, 217, 0.1);
            transform: translateY(-2px);
            border-color: #8b5fd9;
        }

        .read-more-link:hover::after,
        .blog-horizontal-card:hover .read-more-link::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Cards without images get full-width content */
        .blog-horizontal-card:not(:has(.blog-h-card-image)) .blog-h-card-body {
            padding: 2rem;
        }

        /* Mobile adjustments for blog cards */
        @media (max-width: 1024px) {
            .blog-list {
                max-width: 100%;
            }

            .blog-horizontal-card {
                flex-direction: column;
            }

            .blog-h-card-image {
                width: 100%;
                min-width: unset;
                padding: 1.25rem 1.25rem 0;
                background: transparent;
            }

            .blog-h-card-image img {
                max-height: 200px;
            }

            .blog-h-card-body {
                padding: 1.25rem;
            }

            .blog-h-card-body h3 {
                font-size: 1.25rem;
            }
        }

        /* Search Results Page */
        .search-prompt {
            text-align: center;
            padding: 3rem;
            background: #242424;
            border-radius: 12px;
        }

        .search-page-form {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-input-large {
            flex: 1;
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 6px;
            padding: 0.75rem 1.25rem;
            color: #e5e5e5;
            font-size: 1rem;
        }

        .search-input-large:focus {
            outline: none;
            border-color: #8b5fd9;
        }

        .search-input-large::placeholder {
            color: #666;
        }

        .search-results-info {

            color: #8b5fd9;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }

        .result-type {
            margin-bottom: 0.5rem;
        }

        .type-badge {

            color: #8b5fd9;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .search-suggestions {
            margin-top: 2rem;
            padding: 2rem;
            background: #242424;
            border-radius: 8px;
        }

        .search-suggestions h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .search-suggestions ul {
            list-style: none;
            margin-left: 0;
        }

        .search-suggestions li {
            color: #aaa;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .search-suggestions li:before {
            content: 'â€¢';
            position: absolute;
            left: 0;
            color: #8b5fd9;
        }

        .search-suggestions a {
            color: #8b5fd9;
            text-decoration: none;
        }

        .search-suggestions a:hover {
            text-decoration: underline;
        }

        /* Mobile Search */
        @media (max-width: 1024px) {
            .search-page-form {
                flex-direction: column;
            }

            .search-prompt {
                padding: 2rem 1rem;
            }
        }

        /* Category Template Styles */
        
        /* Category Introduction */
        .category-intro {
            padding: 5rem 0;
            background-color: #161616;
        }

        .category-intro-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .category-intro h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: white;
        }

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

        .intro-card {
            background: #242424;
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid #333;
            text-align: center;
        }

        .intro-icon {
            color: #8b5fd9;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .intro-icon svg {
            transition: transform 0.3s ease;
        }

        .intro-card:hover .intro-icon svg {
            transform: scale(1.1);
        }

        .intro-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: white;
        }

        .intro-card p {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Warning cards when displayed inline with intro cards */
        .warning-grid-inline {
            margin-top: 2rem;
        }

        .warning-card-inline {
            background: rgba(200, 80, 80, 0.1);
            border: 1px solid rgba(200, 80, 80, 0.3);
        }

        .warning-card-inline h3 {
            color: #ff6b6b;
        }

        .warning-card-inline p {
            color: #aaa;
        }

        /* Comparison Section */
        .comparison-section {
            padding: 5rem 0;
            background-color: #1e1e1e;
        }

        .comparison-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .comparison-table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 10px;
            border: 1px solid #2e2e2e;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: #242424;
        }

        .comparison-table thead {
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .comparison-table th {
            background: #1a1a1a;
            color: #888;
            padding: 0.85rem 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            border-bottom: 2px solid #8b5fd9;
            white-space: nowrap;
        }

        .comparison-table td {
            padding: 1rem;
            color: #aaa;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.92rem;
            vertical-align: middle;
        }

        .comparison-table tbody tr {
            transition: background 0.15s ease, box-shadow 0.15s ease;
        }

        .comparison-table tbody tr:hover {
            background: #2c2c2c;
        }

        .comparison-table tbody tr.clickable-row:hover {
            background: rgba(139, 95, 217, 0.07);
            box-shadow: inset 3px 0 0 #8b5fd9;
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .provider-name strong {
            color: #e5e5e5;
            font-size: 0.97rem;
            font-weight: 600;
        }

        .review-indicator {
            color: #8b5fd9;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Badges */
        .badge {
            display: inline-block;
            padding: 0.2rem 0.65rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .badge-yes {
            background: rgba(80, 200, 120, 0.12);
            color: #50c878;
            border: 1px solid rgba(80, 200, 120, 0.25);
        }

        .badge-no {
            background: rgba(200, 80, 80, 0.12);
            color: #c85050;
            border: 1px solid rgba(200, 80, 80, 0.25);
        }

        /* Recommendation badges — same pattern as badge-yes/no */
        .badge-recommended {
            background: rgba(80, 200, 120, 0.12);
            color: #50c878;
            border: 1px solid rgba(80, 200, 120, 0.25);
        }

        .badge-conditional {
            background: rgba(255, 183, 77, 0.12);
            color: #ffb74d;
            border: 1px solid rgba(255, 183, 77, 0.25);
        }

        .badge-avoid {
            background: rgba(200, 80, 80, 0.12);
            color: #c85050;
            border: 1px solid rgba(200, 80, 80, 0.25);
        }

        .table-note {
            text-align: center;
            color: #555;
            font-size: 0.85rem;
            margin-top: 1rem;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 5rem 0;
            background-color: #161616;
        }

        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .review-card {
            background: #242424;
            border: 1px solid #333;
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .review-card:last-child {
            margin-bottom: 0;
        }

        .review-header {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #333;
        }

        .review-title-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .review-card h3 {
            font-size: 1.75rem;
            color: white;
            margin: 0;
        }

        .rating-large {
            color: #ffd700;
            font-size: 1.5rem;
        }

        .review-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .review-body h4 {
            color: white;
            font-size: 1.25rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .review-body h4:first-child {
            margin-top: 0;
        }

        .review-body p {
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .review-body ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .review-body li {
            color: #aaa;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .review-footer {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }

        /* Warning Section */
        .warning-section {
            padding: 5rem 0;
            background-color: #1e1e1e;
        }

        .warning-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .warning-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .warning-card {
            background: rgba(200, 80, 80, 0.1);
            border: 1px solid rgba(200, 80, 80, 0.3);
            border-radius: 8px;
            padding: 1.5rem;
        }

        .warning-card h3 {
            color: #ff6b6b;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .warning-card p {
            color: #aaa;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Mobile Adjustments for Category Template */
        @media (max-width: 1024px) {
            .category-intro {
                padding: 3rem 0;
            }

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

            .comparison-section {
                padding: 3rem 0;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem 0.5rem;
            }

            .reviews-section {
                padding: 3rem 0;
            }

            .review-card {
                padding: 1.5rem;
            }

            .review-card h3 {
                font-size: 1.5rem;
            }

            .review-title-area {
                flex-direction: column;
                align-items: flex-start;
            }

            .warning-section {
                padding: 3rem 0;
            }

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

        /* Content Section (for Understanding Privacy Tools page) */
        .content-section {
            padding: 5rem 0;
            background-color: #1e1e1e;
        }

        .content-section-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .content-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .content-section h3 {
            font-size: 1.5rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .content-section p {
            font-size: 1.05rem;
            color: #aaa;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .content-section ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-section ul li {
            color: #aaa;
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        /* Mobile adjustments for content section */
        @media (max-width: 1024px) {
            .content-section {
                padding: 3rem 0;
            }

            .content-section h2 {
                font-size: 1.5rem;
            }

            .content-section h3 {
                font-size: 1.25rem;
            }
        }

/* VPN Card Styles */
.vpn-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vpn-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vpn-card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    white-space: nowrap;
}

.vpn-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vpn-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.vpn-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    color: #e5e5e5;
    font-size: 0.9rem;
    text-align: right;
}

.vpn-overview {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.vpn-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.read-review-link {
    color: #8b5fd9;
    font-weight: 500;
    font-size: 0.95rem;
}

.vpn-card:hover .read-review-link {
    color: #9d6eeb;
}

/* Review Single Page Styles */
.review-hero {
    padding: 5rem 5% 4rem;
    text-align: center;
}

.review-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.review-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.review-meta-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-meta-hero .badge {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    letter-spacing: 0.5px;
}

.rating-large {
    color: #ffd700;
    font-size: 1.75rem;
}

.review-tags-hero {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-overview {
    color: #bbb;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.review-single {
    padding: 4rem 0;
    background-color: #161616;
}

.review-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.quick-facts-box {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.quick-facts-box h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #333;
}

.fact-label {
    color: #888;
    font-weight: 500;
    font-size: 0.95rem;
}

.fact-value {
    color: #e5e5e5;
    font-size: 0.95rem;
    text-align: right;
}

.fact-value a {
    color: #8b5fd9;
    text-decoration: none;
}

.fact-value a:hover {
    text-decoration: underline;
}

.review-section {
    margin-bottom: 3rem;
}

.review-section h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.review-section p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
}

.pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pros-box,
.cons-box {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
}

.pros-box {
    border-left: 3px solid #50c878;
}

.cons-box {
    border-left: 3px solid #c85050;
}

.pros-box h3 {
    color: #50c878;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cons-box h3 {
    color: #c85050;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.pros-box li,
.cons-box li {
    color: #aaa;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pros-box li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #50c878;
    font-weight: bold;
}

.cons-box li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c85050;
    font-weight: bold;
}

.review-content-main {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.05rem;
}

.review-content-main h2 {
    color: white;
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.review-content-main h2:first-child {
    margin-top: 0;
}

.review-content-main h3 {
    color: white;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.review-content-main h4 {
    color: white;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.review-content-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-content-main ul {
    margin: 1rem 0 1.5rem 2rem;
}

.review-content-main li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.review-content-main strong {
    color: white;
    font-weight: 600;
}

.review-content-main a {
    color: #8b5fd9;
    text-decoration: none;
}

.review-content-main a:hover {
    text-decoration: underline;
}

.review-content-main code {
    background: #242424;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #8b5fd9;
}

.review-content-main pre {
    background: #242424;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.review-content-main pre code {
    background: none;
    padding: 0;
    color: #e5e5e5;
}

.review-single-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.review-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.related-reviews-section {
    padding: 5rem 0;
    background-color: #1e1e1e;
}

.related-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.related-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-review-card {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.related-review-card:hover {
    border-color: #8b5fd9;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(139, 95, 217, 0.2);
}

.related-review-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.related-review-card .badge {
    margin-bottom: 1rem;
    align-self: flex-start;
}

.related-review-card .jurisdiction-info {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Side-by-Side Guide and FAQ Section */
.guide-faq-section {
    padding: 3rem 5% 4rem;
    background-color: #1e1e1e;
}

.guide-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.guide-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.guide-column,
.faq-column {
    min-width: 0;
}

.guide-column .section-title,
.faq-column .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: white;
}

.guide-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.guide-content h3:first-child {
    margin-top: 0;
}

.guide-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #aaa;
}

.guide-content ul {
    margin: 0.75rem 0 1.5rem 1.5rem;
}

.guide-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #aaa;
}

.guide-content strong {
    color: white;
    font-weight: 600;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-content .faq-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-content .faq-item h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.faq-content .faq-item p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
}

/* Mobile Adjustments for New Styles */
@media (max-width: 1024px) {
    .guide-faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guide-faq-section {
        padding: 3rem 0;
    }
}

@media (max-width: 1024px) {
    .vpn-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .vpn-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .detail-value {
        text-align: left;
    }

    .review-hero {
        padding: 3rem 4% 2rem;
    }

    .review-hero h1 {
        font-size: 1.85rem;
    }

    .rating-large {
        font-size: 1.5rem;
    }

    .review-meta-hero {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-overview {
        font-size: 1.05rem;
    }

    .review-single {
        padding: 3rem 0;
    }

    .quick-facts-box {
        padding: 1.5rem;
    }

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

    .fact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .fact-value {
        text-align: left;
    }

    .pros-cons-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-actions {
        flex-direction: column;
    }

    .review-actions .btn {
        width: 100%;
        text-align: center;
    }

    .related-reviews-section {
        padding: 3rem 0;
    }

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

/* Mobile Menu Overlay — only relevant on small phones (< 600px) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: none; /* touch-outside handled by JS on document */
}

/* Blur page content when menu is open */
body.menu-open > *:not(nav):not(.menu-overlay) {
    filter: blur(4px);
    transition: filter 0.3s ease;
}

body:not(.menu-open) > *:not(nav):not(.menu-overlay) {
    filter: blur(0);
    transition: filter 0.3s ease;
}

@media (max-width: 600px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
}


.hero-features h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: left;
}

.hero-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hero-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-feature-text strong {
    display: block;
    color: #e5e5e5;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-feature-text p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .hero-features {
        margin-top: 2rem;
    }

    .hero-features h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* FAQ Page Styles */
.faq-page-section {
    padding: 5rem 0;
    background-color: #161616;
}

.faq-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq-category {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.warning-category {
    background: rgba(200, 80, 80, 0.05);
    border-color: rgba(200, 80, 80, 0.3);
}

.faq-category-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.warning-category .faq-category-title {
    color: #ff6b6b;
    border-bottom-color: rgba(200, 80, 80, 0.3);
}

.faq-category .faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-category .faq-item:last-child {
    margin-bottom: 0;
}

.faq-category .faq-item h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-category .faq-item p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.faq-category .faq-item strong {
    color: white;
}

@media (max-width: 1024px) {
    .faq-page-section {
        padding: 3rem 0;
    }

    .faq-category {
        padding: 2rem 1.5rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-category .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* What to Look For Section */
.what-to-look-for {
    padding: 5rem 0;
    background-color: #161616;
}

.what-to-look-for-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.look-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.look-for-card {
    background: #242424;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.look-for-card:hover {
    border-color: #8b5fd9;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(139, 95, 217, 0.2);
}

.look-for-icon {
    color: #8b5fd9;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.look-for-icon svg {
    transition: transform 0.3s ease;
}

.look-for-card:hover .look-for-icon svg {
    transform: scale(1.1);
}

.look-for-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.look-for-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .what-to-look-for {
        padding: 3rem 0;
    }

    .look-for-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-card-link:hover {
    transform: translateY(-4px);
}

.contact-icon {
    color: #8b5fd9;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    transition: transform 0.3s ease;
}

.contact-card-link:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-link {
    color: #8b5fd9;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #8b5fd9;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    background: #8b5fd9;
    color: white;
}

.contact-link-text {
    color: #8b5fd9;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #8b5fd9;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card-link:hover .contact-link-text {
    background: #8b5fd9;
    color: white;
}

.privacy-notice {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-notice h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.privacy-notice p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-notice ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-notice li {
    color: #aaa;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.privacy-notice li:before {
    content: "✓";
    color: #8b5fd9;
    font-weight: bold;
    margin-left: -1.5rem;
    margin-right: 0.5rem;
}

.about-contact-section {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-contact-section h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-contact-section p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-contact-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-contact-section li {
    color: #aaa;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.about-contact-section strong {
    color: white;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .privacy-notice {
        padding: 2rem 1.5rem;
    }

    .privacy-notice h2 {
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }

    .about-contact-section {
        padding: 2rem 1.5rem;
    }

    .about-contact-section h2 {
        font-size: 1.5rem;
    }
}

/* 404 Error Page Styles */
.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.error-404-icon {
    color: #8b5fd9;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-404-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.error-404-help {
    background: #242424;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.error-404-help p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 0;
}

.error-404-help a {
    color: #8b5fd9;
    text-decoration: none;
    font-weight: 500;
}

.error-404-help a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .error-404-content {
        padding: 2rem 0;
    }

    .error-404-icon svg {
        width: 80px;
        height: 80px;
    }

    .error-404-help {
        padding: 1.5rem;
    }

    .error-404-help p {
        font-size: 1rem;
    }
}
        /* Tools Page - Jump to Category Navigation */
        .tools-nav-section {
            background-color: #161616;
            padding: 3rem 0;
            border-bottom: 1px solid #333;
        }

        .tools-nav-title {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #e5e5e5;
        }

        .tools-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .tools-nav-container .tag {
            background: #242424;
            color: #e5e5e5;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #333;
        }

        .tools-nav-container .tag:hover {
            background: rgba(139, 95, 217, 0.15);
            color: #8b5fd9;
            border-color: #8b5fd9;
            transform: translateY(-2px);
        }

        /* Mobile responsiveness */
        @media (max-width: 1024px) {
            .tools-nav-section {
                padding: 2rem 0;
            }

            .tools-nav-title {
                font-size: 1.25rem;
                margin-bottom: 1.5rem;
            }

            .tools-nav-container {
                gap: 0.75rem;
            }

            .tools-nav-container .tag {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }

/* Inline SVG Icon Styling */
.inline-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
    color: #e5e5e5;
}

/* ============================================================
 *   Search Page
 *   ============================================================ */

/* Query form on the search page */
.search-page-form {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-large {
    flex: 1;
    background: #242424;
    border: 1px solid #333;
    border-right: none;
    border-radius: 6px 0 0 6px;
    padding: 0.85rem 1.25rem;
    color: #e5e5e5;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-input-large:focus {
    outline: none;
    border-color: #8b5fd9;
}

.search-input-large::placeholder {
    color: #666;
}

.search-page-form .btn {
    border-radius: 0 6px 6px 0;
    padding: 0.85rem 1.5rem;
    white-space: nowrap;
}

/* Results header */
.search-results-header {
    margin-bottom: 1.5rem;
}

.search-results-count {
    color: #888;
    font-size: 0.95rem;
}

.search-results-count strong {
    color: #e5e5e5;
}

/* Individual result card */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-card {
    display: block;
    background: #242424;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.search-result-card:hover {
    border-color: #8b5fd9;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(139, 95, 217, 0.18);
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.search-result-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Type colour variants */
.search-type-service  { background: rgba(139, 95, 217, 0.15); color: #a87de8; }
.search-type-page     { background: rgba(80, 160, 220, 0.15); color: #6ab4e8; }
.search-type-blog-post { background: rgba(80, 200, 120, 0.12); color: #5dc88a; }
.search-type-guide    { background: rgba(255, 180, 50, 0.12);  color: #e8b84b; }

.search-result-date {
    color: #666;
    font-size: 0.85rem;
}

.search-result-card h3 {
    font-size: 1.15rem;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.search-result-card p {
    color: #999;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.search-result-card .read-more-link {
    font-size: 0.88rem;
}

/* Highlight matched terms */
mark {
    background: rgba(139, 95, 217, 0.3);
    color: #c9a8f5;
    border-radius: 2px;
    padding: 0 2px;
}

/* No-results state */
.search-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #aaa;
}

.search-no-results svg {
    display: block;
    margin: 0 auto 1.5rem;
}

.search-no-results h2 {
    font-size: 1.5rem;
    color: #e5e5e5;
    margin-bottom: 0.75rem;
}

.search-no-results p {
    color: #888;
    margin-bottom: 2rem;
}

.search-browse-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Empty state (no query yet) */
.search-empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.search-hint {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.search-popular h3 {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.search-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.search-popular-tags .tag {
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.search-popular-tags .tag:hover {
    background: rgba(139, 95, 217, 0.25);
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 1024px) {
    .search-page-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-input-large {
        border-right: 1px solid #333;
        border-radius: 6px;
    }

    .search-input-large:focus {
        border-color: #8b5fd9;
    }

    .search-page-form .btn {
        border-radius: 6px;
        width: 100%;
        text-align: center;
    }

    .search-result-card {
        padding: 1.25rem;
    }

    .search-result-card h3 {
        font-size: 1.05rem;
    }

    .search-browse-links {
        flex-direction: column;
        align-items: center;
    }

    .search-browse-links .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 2rem 0;
}
