        body {
            font-family: 'Public Sans', sans-serif;
            background: linear-gradient(135deg, #f0f7fa 0%, #e6f0f3 100%);
            min-height: 100vh;
            padding-top: 70px;
        }
        .content-wrapper {
            padding: 2rem 0;
        }
        .content-header h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #1C2526;
        }
        .left-sidebar, .right-sidebar {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 1.5rem;
        }
        .filter-group h5 {
            font-size: 1.2rem;
            color: #1C2526;
            margin-bottom: 1rem;
        }
        .filter-btn {
            background: #fff;
            border: 1px solid #ced4da;
            color: #495057;
            margin-bottom: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: left;
        }
        .filter-btn:hover {
            background: #e6f0fa;
            border-color: #2A9D8F;
            color: #2A9D8F;
        }
        .filter-btn.active {
            background: linear-gradient(90deg, #2A9D8F, #36c1b2);
            color: #fff;
            border-color: #2A9D8F;
        }
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ced4da;
            padding: 0.75rem;
        }
        .form-control:focus {
            border-color: #2A9D8F;
            box-shadow: 0 0 0 0.2rem rgba(42, 157, 143, 0.25);
        }
        .age-range-container {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        .maid-stack {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .maid-card .card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 380px;
            display: flex;
            flex-direction: column;
        }
        .maid-card .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .maid-card .card-body {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1rem;
        }
        .maid-card .card-title {
            font-size: 1.1rem;
            color: #1C2526;
            margin-bottom: 0.5rem;
        }
        .maid-card .card-text {
            font-size: 0.9rem;
            color: #495057;
        }
        .maid-card .card-footer {
            background: #fff;
            border-top: none;
            padding: 0.75rem;
        }
        .maid-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin: 1rem auto 0;
        }
        .btn-primary {
            background: linear-gradient(90deg, #2A9D8F, #36c1b2);
            border: none;
            color: #fff;
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
        }
        .btn-secondary {
            background: #E63946;
            border-color: #E63946;
            color: #fff;
            border-radius: 8px;
        }
        .btn-apply {
            background: linear-gradient(90deg, #2A9D8F, #36c1b2);
            color: #fff;
            border: none;
            margin-top: 1rem;
        }
        .inactive-maid {
            opacity: 0.5;
            filter: grayscale(100%);
            pointer-events: none;
        }
        .no-results {
            display: none;
            text-align: center;
            color: #E63946;
            margin-top: 2rem;
        }
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .pagination button {
            margin: 0 5px;
            background: #fff;
            border: 1px solid #ced4da;
            border-radius: 8px;
            padding: 0.5rem 1rem;
        }
        .pagination button.active {
            background: linear-gradient(90deg, #2A9D8F, #36c1b2);
            color: #fff;
            border-color: #2A9D8F;
        }
        @media (max-width: 768px) {
            .left-sidebar, .right-sidebar {
                margin-bottom: 1.5rem;
            }
            .maid-stack {
                gap: 1rem;
            }
            .maid-card .card {
                height: auto;
                min-height: 380px;
            }
            .content-header h2 {
                font-size: 1.5rem;
            }
        }
