        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, -apple-system, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
            color: #1a2a3a;
            line-height: 1.5;
        }
        
        /* Decorative background orbs */
        .bg-orb {
            position: fixed;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(79, 106, 145, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        
        .bg-orb-2 {
            position: fixed;
            bottom: -20%;
            left: -10%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, rgba(100, 130, 180, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }
        
        /* Header Styles */
        .site-header {
            padding: 48px 0 32px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .breadcrumb {
            margin-bottom: 24px;
        }
        
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
        }
        
        .breadcrumb li {
            font-size: 0.875rem;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 8px;
            color: #7a8b9e;
        }
        
        .breadcrumb a {
            color: #4a6a8a;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .breadcrumb a:hover {
            color: #2c4a6e;
            text-decoration: underline;
        }
        
        .breadcrumb li[aria-current="page"] {
            color: #2c4a6e;
            font-weight: 500;
        }
        
        .header-content {
            text-align: center;
        }
        
        .page-title {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1e3a5f, #2c4a6e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }
        
        .page-subtitle {
            font-size: 1.125rem;
            color: #4a627a;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Category Grid */
        .categories-section {
            padding: 48px 0;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 28px;
            margin-bottom: 60px;
        }
        
        .category-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
        
        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }
        
        .category-name {
            margin-bottom: 12px;
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .category-name a {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a2a3a;
            text-decoration: none;
            letter-spacing: -0.01em;
        }
        
        .category-name a:hover {
            color: #3a6a9a;
        }
        
        .tool-count {
            font-size: 0.75rem;
            color: #7a8b9e;
            background: #f0f2f5;
            padding: 3px 8px;
            border-radius: 20px;
        }
        
        .category-description {
            color: #4a627a;
            font-size: 0.875rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .tool-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .tool-preview-item {
            font-size: 0.75rem;
            background: #f0f2f5;
            padding: 4px 12px;
            border-radius: 20px;
            transition: background 0.2s;
        }
        
        .tool-preview-item a {
            color: #4a627a;
            text-decoration: none;
        }
        
        .tool-preview-item a:hover {
            color: #2c4a6e;
        }
        
        .soon-item {
            opacity: 0.6;
            font-style: italic;
        }
        
        .category-link {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #3a6a9a;
            text-decoration: none;
            margin-top: 4px;
            transition: color 0.2s;
        }
        
        .category-link:hover {
            color: #1e4a7a;
            text-decoration: underline;
        }
        
        /* Special card color variations */
        .category-card.business-tools {
            border-top: 3px solid #2c6e2c;
        }
        
        /* Stats Section */
        .stats-section {
            background: #ffffff;
            border-radius: 32px;
            padding: 40px 32px;
            margin-top: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 32px;
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e3a5f;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: #7a8b9e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Coming Soon Section */
        .soon-section {
            padding: 48px 0;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 32px;
            margin-bottom: 48px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .soon-heading {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a2a3a;
        }
        
        .soon-subheading {
            color: #4a627a;
        }
        
        .soon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }
        
        .soon-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            border: 1px dashed #c0d0e0;
            transition: all 0.2s;
        }
        
        .soon-card:hover {
            border-color: #8a9ab0;
            background: #fafcfc;
        }
        
        .soon-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }
        
        .soon-name {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a2a3a;
        }
        
        .soon-description {
            font-size: 0.8125rem;
            color: #4a627a;
            margin-bottom: 12px;
        }
        
        .soon-badge {
            display: inline-block;
            font-size: 0.6875rem;
            background: #e8edf3;
            color: #4a6a8a;
            padding: 4px 10px;
            border-radius: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1e3a5f, #2c4a6e);
            border-radius: 32px;
            padding: 48px 32px;
            text-align: center;
            margin-bottom: 48px;
        }
        
        .cta-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }
        
        .cta-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 28px;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .btn-primary {
            background: #ffffff;
            color: #1e3a5f;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        /* Footer */
        .site-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .footer-logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a2a3a;
            letter-spacing: -0.5px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        
        .footer-links a {
            color: #4a627a;
            text-decoration: none;
            font-size: 0.875rem;
        }
        
        .footer-links a:hover {
            color: #1e3a5f;
            text-decoration: underline;
        }
        
        .footer-legal {
            font-size: 0.75rem;
            color: #7a8b9e;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 260px;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                gap: 12px;
            }
        }