        .filters {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 1.25rem;
            box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .filter-label {
            font-weight: 600;
            color: #333;
        }

        .filter-select {
            padding: 0.75rem 1.25rem;
            border: 2px solid #e0e0e0;
            border-radius: 0.75rem;
            font-size: 1rem;
            min-width: 200px;
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--forest-green);
            box-shadow: 0 0 0 3px rgba(185, 201, 138, 0.2);
        }

        .search-input-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            min-width: 200px;
            padding: 0.75rem 1.25rem;
            border: 2px solid #e0e0e0;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
            background: white;
        }
        .search-input-wrapper:focus-within {
            border-color: var(--forest-green);
            box-shadow: 0 0 0 3px rgba(185, 201, 138, 0.2);
        }
        .search-input-wrapper i {
            color: #999;
            font-size: 0.9rem;
        }
        .search-input-wrapper input {
            border: none;
            outline: none;
            font-size: 1rem;
            flex: 1;
            background: transparent;
            font-family: inherit;
        }

        .communities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
            gap: 1.5rem;
        }

        .community-card {
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .card-header {
            background: var(--forest-green);
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
        }

        .card-name {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        .card-city {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .card-body {
            padding: 1.25rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .card-themes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
        }

        .card-stats {
            display: flex;
            gap: 0.75rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid #f0f0f0;
        }

        .card-stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: rgba(185, 201, 138, 0.15);
            border-radius: 0.5rem;
            border: 1px solid rgba(185, 201, 138, 0.25);
            cursor: pointer;
            transition: all 0.2s ease;
            flex: 1;
            justify-content: center;
        }

        .card-stat:hover {
            background: rgba(185, 201, 138, 0.3);
        }

        .card-stat-label {
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
        }

        .card-stat-value {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--forest-green);
        }

        .sort-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .sort-select {
            padding: 0.75rem 1.25rem;
            border: 2px solid #e0e0e0;
            border-radius: 0.75rem;
            font-size: 1rem;
            min-width: 160px;
            transition: all 0.3s ease;
        }

        .sort-select:focus {
            outline: none;
            border-color: var(--forest-green);
            box-shadow: 0 0 0 3px rgba(185, 201, 138, 0.2);
        }

        .theme-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(91, 192, 195, 0.15) 0%, rgba(185, 201, 138, 0.25) 100%);
            color: var(--forest-green-dark);
            padding: 0.35rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.85rem;
            margin: 0.15rem;
            font-weight: 500;
            border: 1px solid rgba(185, 201, 138, 0.3);
            transition: all 0.2s ease;
        }

        .theme-tag:hover {
            background: linear-gradient(135deg, rgba(91, 192, 195, 0.25) 0%, rgba(35, 162, 165, 0.25) 100%);
            transform: translateY(-1px);
        }

        .count-badge {
            display: inline-block;
            background: var(--forest-green);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            min-width: 28px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(35, 162, 165, 0.3);
        }

        .count-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(35, 162, 165, 0.4);
        }

        .view-details-btn {
            color: var(--forest-green);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            transition: all 0.2s ease;
        }

        .view-details-btn:hover {
            color: var(--forest-green-dark);
            gap: 0.5rem;
        }

        .name-link {
            color: var(--forest-green);
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .name-link:hover {
            color: var(--forest-green-dark);
            text-decoration: underline;
        }

        .name-link strong {
            font-weight: 600;
        }

        .empty-state {
            padding: 3rem;
            text-align: center;
            color: #666;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow-y: auto;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 1.5rem;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .modal-header {
            padding: 2rem;
            background: var(--forest-green);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 1.5rem 1.5rem 0 0;
        }

        .modal-header h2 {
            margin: 0;
            color: white;
            font-weight: 700;
        }

        .modal-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            padding: 0;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-section {
            margin-bottom: 1.5rem;
        }

        .modal-section h3 {
            margin: 0 0 0.75rem 0;
            background: var(--forest-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .modal-section p {
            margin: 0.5rem 0;
            color: #666;
        }

        .modal-list {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0;
        }

        .modal-list li {
            padding: 0.5rem;
            background: #f8f9fa;
            margin: 0.25rem 0;
            border-radius: 4px;
            border-left: 3px solid var(--olive-green);
        }

        /* CTA Card Styles */
        .community-cta-card {
            background: rgba(185, 201, 138, 0.08);
            border: 2px solid rgba(185, 201, 138, 0.2);
            border-radius: 1.5rem;
            margin-top: 3rem;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(185, 201, 138, 0.25);
            transition: all 0.3s ease;
        }

        .community-cta-card:hover {
            box-shadow: 0 12px 48px rgba(35, 162, 165, 0.25);
            transform: translateY(-4px);
        }

        .cta-card-header {
            text-align: center;
            padding: 3rem 2rem 2rem 2rem;
            background: var(--forest-green);
            color: white;
            position: relative;
        }

        .cta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .cta-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .cta-card-header h2 {
            margin: 0 0 1rem 0;
            font-size: 2rem;
            font-weight: 700;
            color: white;
        }

        .cta-subtitle {
            margin: 0;
            font-size: 1.1rem;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-card-body {
            padding: 2.5rem 2rem;
            background: white;
        }

        .cta-card-body h3 {
            margin: 0 0 1.5rem 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--forest-green);
            text-align: center;
        }

        .community-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }

        .community-benefit {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(185, 201, 138, 0.15);
            border-radius: 12px;
            border: 1px solid rgba(185, 201, 138, 0.3);
            transition: all 0.3s ease;
        }

        .community-benefit:hover {
            background: rgba(185, 201, 138, 0.25);
            transform: translateX(4px);
            border-color: rgba(35, 162, 165, 0.4);
        }

        .community-benefit i {
            font-size: 1.75rem;
            color: var(--forest-green);
            min-width: 32px;
            text-align: center;
        }

        .community-benefit span {
            font-size: 0.95rem;
            font-weight: 500;
            color: #333;
            line-height: 1.4;
        }

        .cta-card-footer {
            padding: 2.5rem 2rem;
            background: rgba(185, 201, 138, 0.08);
            text-align: center;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--forest-green);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(35, 162, 165, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: var(--forest-green-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(35, 162, 165, 0.5);
        }

        .cta-btn i {
            font-size: 1.2rem;
        }

        .cta-email {
            margin-top: 1.25rem;
            color: #666;
            font-size: 0.95rem;
        }

        .cta-note {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: #666;
            font-size: 0.9rem;
        }

        .cta-note a {
            color: var(--forest-green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .cta-note a:hover {
            color: var(--forest-green-dark);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .communities-grid {
                grid-template-columns: 1fr;
            }

            .filters {
                flex-direction: column;
                align-items: stretch;
            }

            .search-input-wrapper,
            .filter-select,
            .sort-select {
                min-width: 0;
                width: 100%;
            }

            .cta-card-header {
                padding: 2rem 1.5rem 1.5rem 1.5rem;
            }

            .cta-icon {
                width: 60px;
                height: 60px;
            }

            .cta-icon i {
                font-size: 2rem;
            }

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

            .cta-subtitle {
                font-size: 1rem;
            }

            .community-benefits-grid {
                grid-template-columns: 1fr;
            }

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

            .modal {
                padding: 0.5rem;
            }
            .modal-content {
                border-radius: 12px 12px 0 0;
                max-height: 95vh;
            }
        }
